FileOutputStream.hxx 4.26 KB
Newer Older
1
/*
2
 * Copyright (C) 2014-2018 Max Kellermann <max.kellermann@gmail.com>
3
 *
4 5 6
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
7
 *
8 9
 * - Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
10
 *
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 * - 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.
28 29
 */

30 31
#ifndef FILE_OUTPUT_STREAM_HXX
#define FILE_OUTPUT_STREAM_HXX
32 33 34

#include "OutputStream.hxx"
#include "fs/AllocatedPath.hxx"
35
#include "util/Compiler.h"
36

37
#ifndef _WIN32
38
#include "io/FileDescriptor.hxx"
39 40
#endif

41
#include <cassert>
42
#include <cstdint>
43

44
#ifdef _WIN32
45 46 47 48
#include <fileapi.h>
#include <windef.h> // for HWND (needed by winbase.h)
#include <handleapi.h> // for INVALID_HANDLE_VALUE
#include <winbase.h> // for FILE_END
49 50
#endif

51 52 53 54
#if defined(__linux__) && !defined(ANDROID)
/* we don't use O_TMPFILE on Android because Android's braindead
   SELinux policy disallows hardlinks
   (https://android.googlesource.com/platform/external/sepolicy/+/85ce2c7),
55
   even hardlinks from /proc/self/fd/N, which however is required to
56
   use O_TMPFILE */
57 58 59
#define HAVE_O_TMPFILE
#endif

60 61
class Path;

62
class FileOutputStream final : public OutputStream {
63
	const AllocatedPath path;
64

65 66 67 68
#ifdef __linux__
	const FileDescriptor directory_fd;
#endif

69
#ifdef _WIN32
70
	HANDLE handle = INVALID_HANDLE_VALUE;
71
#else
72
	FileDescriptor fd = FileDescriptor::Undefined();
73 74
#endif

75
#ifdef HAVE_O_TMPFILE
76 77 78 79 80
	/**
	 * Was O_TMPFILE used?  If yes, then linkat() must be used to
	 * create a link to this file.
	 */
	bool is_tmpfile = false;
81 82
#endif

83 84 85 86 87 88 89 90 91
public:
	enum class Mode : uint8_t {
		/**
		 * Create a new file, or replace an existing file.
		 * File contents may not be visible until Commit() has
		 * been called.
		 */
		CREATE,

92 93 94 95 96 97 98
		/**
		 * Like #CREATE, but no attempt is made to hide file
		 * contents during the transaction (e.g. via O_TMPFILE
		 * or a hidden temporary file).
		 */
		CREATE_VISIBLE,

99 100 101 102 103
		/**
		 * Append to a file that already exists.  If it does
		 * not, an exception is thrown.
		 */
		APPEND_EXISTING,
104 105 106 107 108 109

		/**
		 * Like #APPEND_EXISTING, but create the file if it
		 * does not exist.
		 */
		APPEND_OR_CREATE,
110 111 112 113
	};

private:
	Mode mode;
114

115
public:
116
	explicit FileOutputStream(Path _path, Mode _mode=Mode::CREATE);
117

118 119 120 121 122
#ifdef __linux__
	FileOutputStream(FileDescriptor _directory_fd, Path _path,
			 Mode _mode=Mode::CREATE);
#endif

123
	~FileOutputStream() noexcept {
124 125
		if (IsDefined())
			Cancel();
126 127
	}

128 129 130
	FileOutputStream(const FileOutputStream &) = delete;
	FileOutputStream &operator=(const FileOutputStream &) = delete;

131
public:
132
	Path GetPath() const noexcept {
133
		return path;
134 135
	}

136
	gcc_pure
137
	uint64_t Tell() const noexcept;
138 139 140 141 142

	/* virtual methods from class OutputStream */
	void Write(const void *data, size_t size) override;

	void Commit();
143
	void Cancel() noexcept;
144 145

private:
146
	void OpenCreate(bool visible);
147
	void OpenAppend(bool create);
148
	void Open();
149

150
	bool Close() noexcept {
151 152
		assert(IsDefined());

153
#ifdef _WIN32
154 155 156 157 158 159 160 161
		CloseHandle(handle);
		handle = INVALID_HANDLE_VALUE;
		return true;
#else
		return fd.Close();
#endif
	}

162
#ifdef _WIN32
163
	bool SeekEOF() noexcept {
164 165
		return SetFilePointer(handle, 0, nullptr,
				      FILE_END) != 0xffffffff;
166 167 168
	}
#endif

169
	bool IsDefined() const noexcept {
170
#ifdef _WIN32
171 172 173 174 175
		return handle != INVALID_HANDLE_VALUE;
#else
		return fd.IsDefined();
#endif
	}
176 177
};

178
#endif