2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/utils/port/config.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2018-09-07 02:41:21 +02:00
|
|
|
#include "td/utils/port/detail/NativeFd.h"
|
2018-08-13 19:15:09 +02:00
|
|
|
#include "td/utils/port/detail/PollableFd.h"
|
2019-07-06 13:29:15 +02:00
|
|
|
#include "td/utils/port/IoSlice.h"
|
2019-07-21 20:07:07 +02:00
|
|
|
#include "td/utils/port/Stat.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Slice.h"
|
2019-07-06 13:29:15 +02:00
|
|
|
#include "td/utils/Span.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
namespace td {
|
2018-08-13 19:15:09 +02:00
|
|
|
namespace detail {
|
|
|
|
class FileFdImpl;
|
2021-10-18 13:36:15 +02:00
|
|
|
} // namespace detail
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
class FileFd {
|
|
|
|
public:
|
2018-08-13 19:15:09 +02:00
|
|
|
FileFd();
|
2021-10-18 13:36:15 +02:00
|
|
|
FileFd(FileFd &&) noexcept;
|
|
|
|
FileFd &operator=(FileFd &&) noexcept;
|
2018-08-13 19:15:09 +02:00
|
|
|
~FileFd();
|
|
|
|
FileFd(const FileFd &) = delete;
|
|
|
|
FileFd &operator=(const FileFd &) = delete;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-07-06 13:29:15 +02:00
|
|
|
enum Flags : int32 { Write = 1, Read = 2, Truncate = 4, Create = 8, Append = 16, CreateNew = 32, Direct = 64 };
|
|
|
|
enum PrivateFlags : int32 { WinStat = 128 };
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
static Result<FileFd> open(CSlice filepath, int32 flags, int32 mode = 0600) TD_WARN_UNUSED_RESULT;
|
2018-09-07 02:41:21 +02:00
|
|
|
static FileFd from_native_fd(NativeFd fd) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Result<size_t> write(Slice slice) TD_WARN_UNUSED_RESULT;
|
2019-07-06 13:29:15 +02:00
|
|
|
Result<size_t> writev(Span<IoSlice> slices) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
Result<size_t> read(MutableSlice slice) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
Result<size_t> pwrite(Slice slice, int64 offset) TD_WARN_UNUSED_RESULT;
|
2018-09-13 02:12:40 +02:00
|
|
|
Result<size_t> pread(MutableSlice slice, int64 offset) const TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
enum class LockFlags { Write, Read, Unlock };
|
2021-10-18 14:37:21 +02:00
|
|
|
Status lock(LockFlags flags, const string &path, int32 max_tries) TD_WARN_UNUSED_RESULT;
|
2018-10-08 20:18:06 +02:00
|
|
|
static void remove_local_lock(const string &path);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-08-13 19:15:09 +02:00
|
|
|
PollableFdInfo &get_poll_info();
|
|
|
|
const PollableFdInfo &get_poll_info() const;
|
2020-01-02 23:01:39 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void close();
|
2020-01-02 23:01:39 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
bool empty() const;
|
|
|
|
|
2019-07-06 13:29:15 +02:00
|
|
|
Result<int64> get_size() const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-01-02 23:01:39 +01:00
|
|
|
Result<int64> get_real_size() const;
|
|
|
|
|
2019-07-06 13:29:15 +02:00
|
|
|
Result<Stat> stat() const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Status sync() TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
Status seek(int64 position) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
|
|
|
Status truncate_to_current_position(int64 current_position) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-08-13 19:15:09 +02:00
|
|
|
const NativeFd &get_native_fd() const;
|
|
|
|
NativeFd move_as_native_fd();
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
private:
|
2018-09-27 03:19:03 +02:00
|
|
|
unique_ptr<detail::FileFdImpl> impl_;
|
2018-08-13 19:15:09 +02:00
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
explicit FileFd(unique_ptr<detail::FileFdImpl> impl);
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|