FileOutputStream.hxx 2.9 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef MPD_FILE_OUTPUT_STREAM_HXX
#define MPD_FILE_OUTPUT_STREAM_HXX

#include "check.h"
#include "OutputStream.hxx"
#include "fs/AllocatedPath.hxx"
26
#include "Compiler.h"
27

28
#ifndef _WIN32
29 30 31
#include "system/FileDescriptor.hxx"
#endif

32
#include <assert.h>
33
#include <stdint.h>
34

35
#ifdef _WIN32
36 37 38 39 40
#include <windows.h>
#endif

class Path;

41
class FileOutputStream final : public OutputStream {
42
	const AllocatedPath path;
43

44
#ifdef _WIN32
45
	HANDLE handle = INVALID_HANDLE_VALUE;
46
#else
47
	FileDescriptor fd = FileDescriptor::Undefined();
48 49
#endif

50 51 52 53 54 55
#ifdef HAVE_LINKAT
	/**
	 * Was O_TMPFILE used?  If yes, then linkat() must be used to
	 * create a link to this file.
	 */
	bool is_tmpfile = false;
56 57
#endif

58 59 60 61 62 63 64 65 66
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,

67 68 69 70 71 72 73
		/**
		 * 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,

74 75 76 77 78
		/**
		 * Append to a file that already exists.  If it does
		 * not, an exception is thrown.
		 */
		APPEND_EXISTING,
79 80 81 82 83 84

		/**
		 * Like #APPEND_EXISTING, but create the file if it
		 * does not exist.
		 */
		APPEND_OR_CREATE,
85 86 87 88
	};

private:
	Mode mode;
89

90
public:
91
	explicit FileOutputStream(Path _path, Mode _mode=Mode::CREATE);
92

93 94 95
	~FileOutputStream() {
		if (IsDefined())
			Cancel();
96 97
	}

98 99 100
public:
	Path GetPath() const {
		return path;
101 102
	}

103
	gcc_pure
104
	uint64_t Tell() const noexcept;
105 106 107 108 109 110 111 112

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

	void Commit();
	void Cancel();

private:
113
	void OpenCreate(bool visible);
114
	void OpenAppend(bool create);
115 116 117 118

	bool Close() {
		assert(IsDefined());

119
#ifdef _WIN32
120 121 122 123 124 125 126 127
		CloseHandle(handle);
		handle = INVALID_HANDLE_VALUE;
		return true;
#else
		return fd.Close();
#endif
	}

128
#ifdef _WIN32
129
	bool SeekEOF() {
130 131
		return SetFilePointer(handle, 0, nullptr,
				      FILE_END) != 0xffffffff;
132 133 134
	}
#endif

135
	bool IsDefined() const {
136
#ifdef _WIN32
137 138 139 140 141
		return handle != INVALID_HANDLE_VALUE;
#else
		return fd.IsDefined();
#endif
	}
142 143
};

144
#endif