2014-07-30 19:10:28 +02:00
|
|
|
/*
|
2018-07-19 14:02:37 +02:00
|
|
|
* Copyright (C) 2014-2018 Max Kellermann <max.kellermann@gmail.com>
|
2014-07-30 19:10:28 +02:00
|
|
|
*
|
2018-07-19 14:02:37 +02:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
2014-07-30 19:10:28 +02:00
|
|
|
*
|
2018-07-19 14:02:37 +02:00
|
|
|
* - Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2014-07-30 19:10:28 +02:00
|
|
|
*
|
2018-07-19 14:02:37 +02:00
|
|
|
* - 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.
|
2014-07-30 19:10:28 +02:00
|
|
|
*/
|
|
|
|
|
2018-07-19 14:02:37 +02:00
|
|
|
#ifndef FILE_OUTPUT_STREAM_HXX
|
|
|
|
#define FILE_OUTPUT_STREAM_HXX
|
2014-07-30 19:10:28 +02:00
|
|
|
|
|
|
|
#include "check.h"
|
|
|
|
#include "OutputStream.hxx"
|
|
|
|
#include "fs/AllocatedPath.hxx"
|
2018-08-20 16:19:17 +02:00
|
|
|
#include "util/Compiler.h"
|
2014-07-30 19:10:28 +02:00
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifndef _WIN32
|
2015-03-03 22:18:38 +01:00
|
|
|
#include "system/FileDescriptor.hxx"
|
|
|
|
#endif
|
|
|
|
|
2014-07-30 19:10:28 +02:00
|
|
|
#include <assert.h>
|
2016-08-16 07:49:01 +02:00
|
|
|
#include <stdint.h>
|
2014-07-30 19:10:28 +02:00
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifdef _WIN32
|
2014-07-30 19:10:28 +02:00
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class Path;
|
|
|
|
|
2016-09-04 12:07:36 +02:00
|
|
|
class FileOutputStream final : public OutputStream {
|
2015-03-23 22:35:56 +01:00
|
|
|
const AllocatedPath path;
|
2014-07-30 19:10:28 +02:00
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifdef _WIN32
|
2016-08-15 22:34:53 +02:00
|
|
|
HANDLE handle = INVALID_HANDLE_VALUE;
|
2014-07-30 19:10:28 +02:00
|
|
|
#else
|
2016-08-15 22:34:53 +02:00
|
|
|
FileDescriptor fd = FileDescriptor::Undefined();
|
2014-07-30 19:10:28 +02:00
|
|
|
#endif
|
|
|
|
|
2018-08-21 18:59:03 +02:00
|
|
|
#ifdef __linux__
|
2016-09-04 12:07:36 +02:00
|
|
|
/**
|
|
|
|
* Was O_TMPFILE used? If yes, then linkat() must be used to
|
|
|
|
* create a link to this file.
|
|
|
|
*/
|
|
|
|
bool is_tmpfile = false;
|
2015-03-23 22:35:43 +01:00
|
|
|
#endif
|
|
|
|
|
2016-09-04 12:07:36 +02:00
|
|
|
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,
|
|
|
|
|
2016-09-04 13:08:52 +02:00
|
|
|
/**
|
|
|
|
* 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,
|
|
|
|
|
2016-09-04 12:07:36 +02:00
|
|
|
/**
|
|
|
|
* Append to a file that already exists. If it does
|
|
|
|
* not, an exception is thrown.
|
|
|
|
*/
|
|
|
|
APPEND_EXISTING,
|
2016-09-04 13:00:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Like #APPEND_EXISTING, but create the file if it
|
|
|
|
* does not exist.
|
|
|
|
*/
|
|
|
|
APPEND_OR_CREATE,
|
2016-09-04 12:07:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
Mode mode;
|
2015-03-23 22:35:43 +01:00
|
|
|
|
2016-09-04 12:07:36 +02:00
|
|
|
public:
|
2017-01-04 10:37:55 +01:00
|
|
|
explicit FileOutputStream(Path _path, Mode _mode=Mode::CREATE);
|
2015-03-23 22:35:43 +01:00
|
|
|
|
2018-08-21 18:56:14 +02:00
|
|
|
~FileOutputStream() noexcept {
|
2016-09-04 12:07:36 +02:00
|
|
|
if (IsDefined())
|
|
|
|
Cancel();
|
2015-03-23 22:35:43 +01:00
|
|
|
}
|
|
|
|
|
2018-09-03 14:36:01 +02:00
|
|
|
FileOutputStream(const FileOutputStream &) = delete;
|
|
|
|
FileOutputStream &operator=(const FileOutputStream &) = delete;
|
|
|
|
|
2016-09-04 12:07:36 +02:00
|
|
|
public:
|
2018-08-21 18:56:14 +02:00
|
|
|
Path GetPath() const noexcept {
|
2016-09-04 12:07:36 +02:00
|
|
|
return path;
|
2015-03-23 22:35:43 +01:00
|
|
|
}
|
|
|
|
|
2016-09-04 12:07:36 +02:00
|
|
|
gcc_pure
|
2017-05-08 14:44:49 +02:00
|
|
|
uint64_t Tell() const noexcept;
|
2016-09-04 12:07:36 +02:00
|
|
|
|
|
|
|
/* virtual methods from class OutputStream */
|
|
|
|
void Write(const void *data, size_t size) override;
|
|
|
|
|
|
|
|
void Commit();
|
2018-08-21 18:56:14 +02:00
|
|
|
void Cancel() noexcept;
|
2016-09-04 12:07:36 +02:00
|
|
|
|
|
|
|
private:
|
2016-09-04 13:08:52 +02:00
|
|
|
void OpenCreate(bool visible);
|
2016-09-04 13:00:51 +02:00
|
|
|
void OpenAppend(bool create);
|
2015-03-23 22:35:43 +01:00
|
|
|
|
2018-08-21 18:56:14 +02:00
|
|
|
bool Close() noexcept {
|
2015-03-23 22:35:43 +01:00
|
|
|
assert(IsDefined());
|
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifdef _WIN32
|
2015-03-23 22:35:43 +01:00
|
|
|
CloseHandle(handle);
|
|
|
|
handle = INVALID_HANDLE_VALUE;
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return fd.Close();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifdef _WIN32
|
2018-08-21 18:56:14 +02:00
|
|
|
bool SeekEOF() noexcept {
|
2015-03-24 20:38:29 +01:00
|
|
|
return SetFilePointer(handle, 0, nullptr,
|
|
|
|
FILE_END) != 0xffffffff;
|
2015-03-24 21:51:34 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-08-21 18:56:14 +02:00
|
|
|
bool IsDefined() const noexcept {
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifdef _WIN32
|
2015-03-23 22:35:43 +01:00
|
|
|
return handle != INVALID_HANDLE_VALUE;
|
|
|
|
#else
|
|
|
|
return fd.IsDefined();
|
|
|
|
#endif
|
|
|
|
}
|
2015-03-23 22:42:07 +01:00
|
|
|
};
|
|
|
|
|
2014-07-30 19:10:28 +02:00
|
|
|
#endif
|