FileDescriptor.hxx 4.21 KB
Newer Older
1
/*
2
 * Copyright (C) 2012-2015 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
 *
 * 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"

#include <assert.h>
#include <unistd.h>
#include <sys/types.h>

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

/**
 * An OO wrapper for a UNIX file descriptor.
 *
 * This class is unmanaged and trivial.
 */
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;
	}

	/**
	 * Returns the file descriptor.  This may only be called if
	 * IsDefined() returns true.
	 */
	constexpr int Get() const {
		return fd;
	}

73
	void Set(int _fd) noexcept {
74 75 76
		fd = _fd;
	}

77
	int Steal() noexcept {
78 79 80 81 82 83 84
		assert(IsDefined());

		int _fd = fd;
		fd = -1;
		return _fd;
	}

85
	void SetUndefined() noexcept {
86 87 88 89 90 91 92
		fd = -1;
	}

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

93 94
	bool Open(const char *pathname, int flags, mode_t mode=0666) noexcept;
	bool OpenReadOnly(const char *pathname) noexcept;
95

96
#ifndef _WIN32
97
	bool OpenNonBlocking(const char *pathname) noexcept;
98

99
	static bool CreatePipe(FileDescriptor &r, FileDescriptor &w) noexcept;
100 101 102 103

	/**
	 * Enable non-blocking mode on this file descriptor.
	 */
104
	void SetNonBlocking() noexcept;
105 106 107 108

	/**
	 * Enable blocking mode on this file descriptor.
	 */
109
	void SetBlocking() noexcept;
110 111 112 113

	/**
	 * Duplicate the file descriptor onto the given file descriptor.
	 */
114
	bool Duplicate(int new_fd) const noexcept {
115 116 117 118 119
		return ::dup2(Get(), new_fd) == 0;
	}
#endif

#ifdef USE_EVENTFD
120
	bool CreateEventFD(unsigned initval=0) noexcept;
121 122 123
#endif

#ifdef USE_SIGNALFD
124
	bool CreateSignalFD(const sigset_t *mask) noexcept;
125 126 127
#endif

#ifdef HAVE_INOTIFY_INIT
128
	bool CreateInotify() noexcept;
129 130 131 132 133 134 135
#endif

	/**
	 * Close the file descriptor.  It is legal to call it on an
	 * "undefined" object.  After this call, IsDefined() is guaranteed
	 * to return false, and this object may be reused.
	 */
136
	bool Close() noexcept {
137
		return ::close(Steal()) == 0;
138 139 140 141 142
	}

	/**
	 * Rewind the pointer to the beginning of the file.
	 */
143
	bool Rewind() noexcept;
144

145
	off_t Seek(off_t offset) noexcept {
146 147 148
		return lseek(Get(), offset, SEEK_SET);
	}

149
	off_t Skip(off_t offset) noexcept {
150 151 152
		return lseek(Get(), offset, SEEK_CUR);
	}

153
	gcc_pure
154
	off_t Tell() const noexcept {
155 156 157
		return lseek(Get(), 0, SEEK_CUR);
	}

158 159 160 161
	/**
	 * Returns the size of the file in bytes, or -1 on error.
	 */
	gcc_pure
162
	off_t GetSize() const noexcept;
163

164
	ssize_t Read(void *buffer, size_t length) noexcept {
165 166 167
		return ::read(fd, buffer, length);
	}

168
	ssize_t Write(const void *buffer, size_t length) noexcept {
169 170 171
		return ::write(fd, buffer, length);
	}

172
#ifndef _WIN32
173
	int Poll(short events, int timeout) const noexcept;
174

175 176
	int WaitReadable(int timeout) const noexcept;
	int WaitWritable(int timeout) const noexcept;
177 178 179 180
#endif
};

#endif