This repository has been archived on 2020-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
tdlib-fork/tdutils/td/utils/port/MemoryMapping.h
levlam 635aca2924 Fix tdutils after update.
GitOrigin-RevId: afc6d10dd0e2b2a7193dd2c96f07d5ca1cb11a00
2019-07-21 21:07:07 +03:00

53 lines
1.3 KiB
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
//
// 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/common.h"
#include "td/utils/port/FileFd.h"
#include "td/utils/Slice.h"
#include "td/utils/Status.h"
namespace td {
class MemoryMapping {
public:
struct Options {
int64 offset{0};
int64 size{-1};
Options() {
}
Options &with_offset(int64 new_offset) {
offset = new_offset;
return *this;
}
Options &with_size(int64 new_size) {
size = new_size;
return *this;
}
};
static Result<MemoryMapping> create_anonymous(const Options &options = {});
static Result<MemoryMapping> create_from_file(const FileFd &file, const Options &options = {});
Slice as_slice() const;
MutableSlice as_mutable_slice(); // returns empty slice if memory is read-only
MemoryMapping(const MemoryMapping &other) = delete;
const MemoryMapping &operator=(const MemoryMapping &other) = delete;
MemoryMapping(MemoryMapping &&other);
MemoryMapping &operator=(MemoryMapping &&other);
~MemoryMapping();
private:
class Impl;
unique_ptr<Impl> impl_;
explicit MemoryMapping(unique_ptr<Impl> impl);
};
} // namespace td