FileDescriptor.hxx 6.22 KB
Newer Older
1
/*
2
 * Copyright 2012-2019 Max Kellermann <max.kellermann@gmail.com>
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * - Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 * - Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the
 * distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
 * FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef FILE_DESCRIPTOR_HXX
#define FILE_DESCRIPTOR_HXX

33
#include "util/Compiler.h"
34

35 36
#include <utility>

37 38 39
#include <unistd.h>
#include <sys/types.h>

40
#ifdef __linux__
41
#include <csignal>
42 43
#endif

44 45 46 47
#ifdef _WIN32
#include <wchar.h>
#endif

48 49 50
/**
 * An OO wrapper for a UNIX file descriptor.
 *
51 52
 * This class is unmanaged and trivial; for a managed version, see
 * #UniqueFileDescriptor.
53 54 55 56 57 58 59
 */
class FileDescriptor {
protected:
	int fd;

public:
	FileDescriptor() = default;
60
	explicit constexpr FileDescriptor(int _fd) noexcept:fd(_fd) {}
61

62
	constexpr bool operator==(FileDescriptor other) const noexcept {
63 64 65
		return fd == other.fd;
	}

66 67 68 69
	constexpr bool operator!=(FileDescriptor other) const noexcept {
		return !(*this == other);
	}

70
	constexpr bool IsDefined() const noexcept {
71 72 73
		return fd >= 0;
	}

74 75 76 77 78 79
#ifndef _WIN32
	/**
	 * Ask the kernel whether this is a valid file descriptor.
	 */
	gcc_pure
	bool IsValid() const noexcept;
80

81 82 83 84 85 86
	/**
	 * Ask the kernel whether this is a regular file.
	 */
	gcc_pure
	bool IsRegularFile() const noexcept;

87 88 89 90 91 92 93 94 95 96 97
	/**
	 * Ask the kernel whether this is a pipe.
	 */
	gcc_pure
	bool IsPipe() const noexcept;

	/**
	 * Ask the kernel whether this is a socket descriptor.
	 */
	gcc_pure
	bool IsSocket() const noexcept;
98 99
#endif

100 101 102 103
	/**
	 * Returns the file descriptor.  This may only be called if
	 * IsDefined() returns true.
	 */
104
	constexpr int Get() const noexcept {
105 106 107
		return fd;
	}

108
	void Set(int _fd) noexcept {
109 110 111
		fd = _fd;
	}

112
	int Steal() noexcept {
113
		return std::exchange(fd, -1);
114 115
	}

116
	void SetUndefined() noexcept {
117 118 119
		fd = -1;
	}

120
	static constexpr FileDescriptor Undefined() noexcept {
121 122 123
		return FileDescriptor(-1);
	}

124
#ifdef __linux__
125 126 127 128
	bool Open(FileDescriptor dir, const char *pathname,
		  int flags, mode_t mode=0666) noexcept;
#endif

129
	bool Open(const char *pathname, int flags, mode_t mode=0666) noexcept;
130 131 132 133 134

#ifdef _WIN32
	bool Open(const wchar_t *pathname, int flags, mode_t mode=0666) noexcept;
#endif

135
	bool OpenReadOnly(const char *pathname) noexcept;
136

137
#ifndef _WIN32
138
	bool OpenNonBlocking(const char *pathname) noexcept;
139
#endif
140

141 142 143 144 145
#ifdef __linux__
	static bool CreatePipe(FileDescriptor &r, FileDescriptor &w,
			       int flags) noexcept;
#endif

146
	static bool CreatePipe(FileDescriptor &r, FileDescriptor &w) noexcept;
147

148 149 150
#ifdef _WIN32
	void EnableCloseOnExec() noexcept {}
	void DisableCloseOnExec() noexcept {}
151
	void SetBinaryMode() noexcept;
152
#else
153 154 155
	static bool CreatePipeNonBlock(FileDescriptor &r,
				       FileDescriptor &w) noexcept;

156 157
	void SetBinaryMode() noexcept {}

158 159 160
	/**
	 * Enable non-blocking mode on this file descriptor.
	 */
161
	void SetNonBlocking() noexcept;
162 163 164 165

	/**
	 * Enable blocking mode on this file descriptor.
	 */
166
	void SetBlocking() noexcept;
167

168 169 170 171 172 173 174 175 176 177 178 179
	/**
	 * Auto-close this file descriptor when a new program is
	 * executed.
	 */
	void EnableCloseOnExec() noexcept;

	/**
	 * Do not auto-close this file descriptor when a new program
	 * is executed.
	 */
	void DisableCloseOnExec() noexcept;

180 181 182
	/**
	 * Duplicate the file descriptor onto the given file descriptor.
	 */
183 184
	bool Duplicate(FileDescriptor new_fd) const noexcept {
		return ::dup2(Get(), new_fd.Get()) == 0;
185
	}
186 187 188 189 190 191 192

	/**
	 * Similar to Duplicate(), but if destination and source file
	 * descriptor are equal, clear the close-on-exec flag.  Use
	 * this method to inject file descriptors into a new child
	 * process, to be used by a newly executed program.
	 */
193
	bool CheckDuplicate(FileDescriptor new_fd) noexcept;
194 195
#endif

196
#ifdef __linux__
197 198 199
	bool CreateEventFD(unsigned initval=0) noexcept;
	bool CreateSignalFD(const sigset_t *mask) noexcept;
	bool CreateInotify() noexcept;
200 201 202
#endif

	/**
203
	 * Close the file descriptor.  It should not be called on an
204 205 206
	 * "undefined" object.  After this call, IsDefined() is guaranteed
	 * to return false, and this object may be reused.
	 */
207
	bool Close() noexcept {
208
		return ::close(Steal()) == 0;
209 210 211 212 213
	}

	/**
	 * Rewind the pointer to the beginning of the file.
	 */
214
	bool Rewind() noexcept;
215

216
	off_t Seek(off_t offset) noexcept {
217 218 219
		return lseek(Get(), offset, SEEK_SET);
	}

220
	off_t Skip(off_t offset) noexcept {
221 222 223
		return lseek(Get(), offset, SEEK_CUR);
	}

224
	gcc_pure
225
	off_t Tell() const noexcept {
226 227 228
		return lseek(Get(), 0, SEEK_CUR);
	}

229 230 231 232
	/**
	 * Returns the size of the file in bytes, or -1 on error.
	 */
	gcc_pure
233
	off_t GetSize() const noexcept;
234

235
	ssize_t Read(void *buffer, size_t length) noexcept {
236 237 238
		return ::read(fd, buffer, length);
	}

239 240 241 242 243 244
	/**
	 * Read until all of the given buffer has been filled.  Throws
	 * on error.
	 */
	void FullRead(void *buffer, size_t length);

245
	ssize_t Write(const void *buffer, size_t length) noexcept {
246 247 248
		return ::write(fd, buffer, length);
	}

249 250 251 252 253 254
	/**
	 * Write until all of the given buffer has been written.
	 * Throws on error.
	 */
	void FullWrite(const void *buffer, size_t length);

255
#ifndef _WIN32
256
	int Poll(short events, int timeout) const noexcept;
257

258 259
	int WaitReadable(int timeout) const noexcept;
	int WaitWritable(int timeout) const noexcept;
260 261 262

	gcc_pure
	bool IsReadyForWriting() const noexcept;
263 264 265 266
#endif
};

#endif