FileDescriptor.hxx 5.2 KB
Newer Older
1
/*
2
 * Copyright (C) 2012-2017 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 33 34 35
 *
 * 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

#include "check.h"
#include "Compiler.h"

36 37
#include <utility>

38 39 40 41 42 43 44 45
#include <assert.h>
#include <unistd.h>
#include <sys/types.h>

#ifdef USE_SIGNALFD
#include <signal.h>
#endif

46 47 48 49
#ifdef _WIN32
#include <wchar.h>
#endif

50 51 52
/**
 * An OO wrapper for a UNIX file descriptor.
 *
53 54
 * This class is unmanaged and trivial; for a managed version, see
 * #UniqueFileDescriptor.
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
 */
class FileDescriptor {
protected:
	int fd;

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

	constexpr bool operator==(FileDescriptor other) const {
		return fd == other.fd;
	}

	constexpr bool IsDefined() const {
		return fd >= 0;
	}

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

80 81 82 83 84 85 86 87
	/**
	 * Returns the file descriptor.  This may only be called if
	 * IsDefined() returns true.
	 */
	constexpr int Get() const {
		return fd;
	}

88
	void Set(int _fd) noexcept {
89 90 91
		fd = _fd;
	}

92
	int Steal() noexcept {
93
		return std::exchange(fd, -1);
94 95
	}

96
	void SetUndefined() noexcept {
97 98 99 100 101 102 103
		fd = -1;
	}

	static constexpr FileDescriptor Undefined() {
		return FileDescriptor(-1);
	}

104
	bool Open(const char *pathname, int flags, mode_t mode=0666) noexcept;
105 106 107 108 109

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

110
	bool OpenReadOnly(const char *pathname) noexcept;
111

112
#ifndef _WIN32
113
	bool OpenNonBlocking(const char *pathname) noexcept;
114
#endif
115

116
	static bool CreatePipe(FileDescriptor &r, FileDescriptor &w) noexcept;
117

118
#ifndef _WIN32
119 120 121
	static bool CreatePipeNonBlock(FileDescriptor &r,
				       FileDescriptor &w) noexcept;

122 123 124
	/**
	 * Enable non-blocking mode on this file descriptor.
	 */
125
	void SetNonBlocking() noexcept;
126 127 128 129

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

132 133 134 135 136 137 138 139 140 141 142 143
	/**
	 * 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;

144 145 146
	/**
	 * Duplicate the file descriptor onto the given file descriptor.
	 */
147
	bool Duplicate(int new_fd) const noexcept {
148 149
		return ::dup2(Get(), new_fd) == 0;
	}
150 151 152 153 154 155 156 157

	/**
	 * 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.
	 */
	bool CheckDuplicate(int new_fd) noexcept;
158 159 160
#endif

#ifdef USE_EVENTFD
161
	bool CreateEventFD(unsigned initval=0) noexcept;
162 163 164
#endif

#ifdef USE_SIGNALFD
165
	bool CreateSignalFD(const sigset_t *mask) noexcept;
166 167 168
#endif

#ifdef HAVE_INOTIFY_INIT
169
	bool CreateInotify() noexcept;
170 171 172
#endif

	/**
173
	 * Close the file descriptor.  It should not be called on an
174 175 176
	 * "undefined" object.  After this call, IsDefined() is guaranteed
	 * to return false, and this object may be reused.
	 */
177
	bool Close() noexcept {
178
		return ::close(Steal()) == 0;
179 180 181 182 183
	}

	/**
	 * Rewind the pointer to the beginning of the file.
	 */
184
	bool Rewind() noexcept;
185

186
	off_t Seek(off_t offset) noexcept {
187 188 189
		return lseek(Get(), offset, SEEK_SET);
	}

190
	off_t Skip(off_t offset) noexcept {
191 192 193
		return lseek(Get(), offset, SEEK_CUR);
	}

194
	gcc_pure
195
	off_t Tell() const noexcept {
196 197 198
		return lseek(Get(), 0, SEEK_CUR);
	}

199 200 201 202
	/**
	 * Returns the size of the file in bytes, or -1 on error.
	 */
	gcc_pure
203
	off_t GetSize() const noexcept;
204

205
	ssize_t Read(void *buffer, size_t length) noexcept {
206 207 208
		return ::read(fd, buffer, length);
	}

209
	ssize_t Write(const void *buffer, size_t length) noexcept {
210 211 212
		return ::write(fd, buffer, length);
	}

213
#ifndef _WIN32
214
	int Poll(short events, int timeout) const noexcept;
215

216 217
	int WaitReadable(int timeout) const noexcept;
	int WaitWritable(int timeout) const noexcept;
218 219 220

	gcc_pure
	bool IsReadyForWriting() const noexcept;
221 222 223 224
#endif
};

#endif