964 lines
30 KiB
C++
964 lines
30 KiB
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023
|
|
//
|
|
// 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/telegram/files/FileBitmask.h"
|
|
#include "td/telegram/files/FileType.h"
|
|
#include "td/telegram/net/DcId.h"
|
|
#include "td/telegram/PhotoSizeSource.h"
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
#include "td/utils/base64.h"
|
|
#include "td/utils/buffer.h"
|
|
#include "td/utils/common.h"
|
|
#include "td/utils/format.h"
|
|
#include "td/utils/logging.h"
|
|
#include "td/utils/Slice.h"
|
|
#include "td/utils/StringBuilder.h"
|
|
#include "td/utils/Variant.h"
|
|
|
|
#include <tuple>
|
|
#include <utility>
|
|
|
|
namespace td {
|
|
|
|
class FileReferenceView {
|
|
public:
|
|
static Slice invalid_file_reference() {
|
|
return Slice("#");
|
|
}
|
|
};
|
|
|
|
struct EmptyRemoteFileLocation {
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const {
|
|
}
|
|
template <class ParserT>
|
|
void parse(ParserT &parser) {
|
|
}
|
|
};
|
|
|
|
inline bool operator==(const EmptyRemoteFileLocation &lhs, const EmptyRemoteFileLocation &rhs) {
|
|
return true;
|
|
}
|
|
|
|
inline bool operator!=(const EmptyRemoteFileLocation &lhs, const EmptyRemoteFileLocation &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
struct PartialRemoteFileLocation {
|
|
int64 file_id_;
|
|
int32 part_count_;
|
|
int32 part_size_;
|
|
int32 ready_part_count_;
|
|
int32 is_big_;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
};
|
|
|
|
inline bool operator==(const PartialRemoteFileLocation &lhs, const PartialRemoteFileLocation &rhs) {
|
|
return lhs.file_id_ == rhs.file_id_ && lhs.part_count_ == rhs.part_count_ && lhs.part_size_ == rhs.part_size_ &&
|
|
lhs.ready_part_count_ == rhs.ready_part_count_ && lhs.is_big_ == rhs.is_big_;
|
|
}
|
|
|
|
inline bool operator!=(const PartialRemoteFileLocation &lhs, const PartialRemoteFileLocation &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &sb, const PartialRemoteFileLocation &location) {
|
|
return sb << '[' << (location.is_big_ ? "Big" : "Small") << " partial remote location with " << location.part_count_
|
|
<< " parts of size " << location.part_size_ << " with " << location.ready_part_count_ << " ready parts]";
|
|
}
|
|
|
|
struct PhotoRemoteFileLocation {
|
|
int64 id_;
|
|
int64 access_hash_;
|
|
PhotoSizeSource source_;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
|
|
struct AsKey {
|
|
const PhotoRemoteFileLocation &key;
|
|
bool is_unique;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
};
|
|
AsKey as_key(bool is_unique) const {
|
|
return AsKey{*this, is_unique};
|
|
}
|
|
|
|
bool operator<(const PhotoRemoteFileLocation &other) const {
|
|
if (id_ != other.id_) {
|
|
return id_ < other.id_;
|
|
}
|
|
return source_.get_unique("PhotoRemoteFileLocation::operator<") <
|
|
other.source_.get_unique("PhotoRemoteFileLocation::operator<");
|
|
}
|
|
bool operator==(const PhotoRemoteFileLocation &other) const {
|
|
return id_ == other.id_ && source_.get_unique("PhotoRemoteFileLocation::operator==") ==
|
|
other.source_.get_unique("PhotoRemoteFileLocation::operator==");
|
|
}
|
|
};
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &string_builder, const PhotoRemoteFileLocation &location) {
|
|
return string_builder << "[ID = " << location.id_ << ", access_hash = " << location.access_hash_ << ", "
|
|
<< location.source_ << "]";
|
|
}
|
|
|
|
struct WebRemoteFileLocation {
|
|
string url_;
|
|
int64 access_hash_;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
|
|
struct AsKey {
|
|
const WebRemoteFileLocation &key;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
};
|
|
AsKey as_key(bool /*is_unique*/) const {
|
|
return AsKey{*this};
|
|
}
|
|
|
|
bool operator<(const WebRemoteFileLocation &other) const {
|
|
return url_ < other.url_;
|
|
}
|
|
bool operator==(const WebRemoteFileLocation &other) const {
|
|
return url_ == other.url_;
|
|
}
|
|
};
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &string_builder, const WebRemoteFileLocation &location) {
|
|
return string_builder << "[URL = " << location.url_ << ", access_hash = " << location.access_hash_ << "]";
|
|
}
|
|
|
|
struct CommonRemoteFileLocation {
|
|
int64 id_;
|
|
int64 access_hash_;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
|
|
struct AsKey {
|
|
const CommonRemoteFileLocation &key;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
};
|
|
AsKey as_key(bool /*is_unique*/) const {
|
|
return AsKey{*this};
|
|
}
|
|
|
|
bool operator<(const CommonRemoteFileLocation &other) const {
|
|
return id_ < other.id_;
|
|
}
|
|
bool operator==(const CommonRemoteFileLocation &other) const {
|
|
return id_ == other.id_;
|
|
}
|
|
};
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &string_builder, const CommonRemoteFileLocation &location) {
|
|
return string_builder << "[ID = " << location.id_ << ", access_hash = " << location.access_hash_ << "]";
|
|
}
|
|
|
|
class FullRemoteFileLocation {
|
|
public:
|
|
FileType file_type_{FileType::None};
|
|
|
|
private:
|
|
static constexpr int32 WEB_LOCATION_FLAG = 1 << 24;
|
|
static constexpr int32 FILE_REFERENCE_FLAG = 1 << 25;
|
|
DcId dc_id_;
|
|
string file_reference_;
|
|
enum class LocationType : int32 { Web, Photo, Common, None };
|
|
Variant<WebRemoteFileLocation, PhotoRemoteFileLocation, CommonRemoteFileLocation> variant_;
|
|
|
|
LocationType location_type() const {
|
|
if (is_web()) {
|
|
return LocationType::Web;
|
|
}
|
|
switch (get_file_type_class(file_type_)) {
|
|
case FileTypeClass::Photo:
|
|
return LocationType::Photo;
|
|
case FileTypeClass::Document:
|
|
case FileTypeClass::Secure:
|
|
case FileTypeClass::Encrypted:
|
|
return LocationType::Common;
|
|
case FileTypeClass::Temp:
|
|
return LocationType::None;
|
|
default:
|
|
UNREACHABLE();
|
|
return LocationType::None;
|
|
}
|
|
}
|
|
|
|
WebRemoteFileLocation &web() {
|
|
return variant_.get<WebRemoteFileLocation>();
|
|
}
|
|
PhotoRemoteFileLocation &photo() {
|
|
return variant_.get<PhotoRemoteFileLocation>();
|
|
}
|
|
CommonRemoteFileLocation &common() {
|
|
return variant_.get<CommonRemoteFileLocation>();
|
|
}
|
|
const WebRemoteFileLocation &web() const {
|
|
return variant_.get<WebRemoteFileLocation>();
|
|
}
|
|
const PhotoRemoteFileLocation &photo() const {
|
|
return variant_.get<PhotoRemoteFileLocation>();
|
|
}
|
|
const CommonRemoteFileLocation &common() const {
|
|
return variant_.get<CommonRemoteFileLocation>();
|
|
}
|
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder,
|
|
const FullRemoteFileLocation &full_remote_file_location);
|
|
|
|
int32 key_type() const {
|
|
auto type = static_cast<int32>(file_type_);
|
|
if (is_web()) {
|
|
type |= WEB_LOCATION_FLAG;
|
|
}
|
|
return type;
|
|
}
|
|
|
|
void check_file_reference() {
|
|
if (file_reference_ == FileReferenceView::invalid_file_reference()) {
|
|
LOG(ERROR) << "Tried to register file with invalid file reference";
|
|
file_reference_.clear();
|
|
}
|
|
}
|
|
|
|
public:
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
|
|
struct AsKey {
|
|
const FullRemoteFileLocation &key;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
};
|
|
AsKey as_key() const {
|
|
return AsKey{*this};
|
|
}
|
|
|
|
struct AsUnique {
|
|
const FullRemoteFileLocation &key;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
};
|
|
AsUnique as_unique() const {
|
|
return AsUnique{*this};
|
|
}
|
|
|
|
DcId get_dc_id() const {
|
|
CHECK(!is_web());
|
|
return dc_id_;
|
|
}
|
|
|
|
int64 get_access_hash() const {
|
|
switch (location_type()) {
|
|
case LocationType::Photo:
|
|
return photo().access_hash_;
|
|
case LocationType::Common:
|
|
return common().access_hash_;
|
|
case LocationType::Web:
|
|
return web().access_hash_;
|
|
case LocationType::None:
|
|
default:
|
|
UNREACHABLE();
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
int64 get_id() const {
|
|
switch (location_type()) {
|
|
case LocationType::Photo:
|
|
return photo().id_;
|
|
case LocationType::Common:
|
|
return common().id_;
|
|
case LocationType::Web:
|
|
case LocationType::None:
|
|
default:
|
|
UNREACHABLE();
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
PhotoSizeSource get_source() const {
|
|
switch (location_type()) {
|
|
case LocationType::Photo:
|
|
return photo().source_;
|
|
case LocationType::Common:
|
|
case LocationType::Web:
|
|
return PhotoSizeSource::full_legacy(0, 0, 0);
|
|
case LocationType::None:
|
|
default:
|
|
UNREACHABLE();
|
|
return PhotoSizeSource::full_legacy(0, 0, 0);
|
|
}
|
|
}
|
|
|
|
void set_source(PhotoSizeSource source) {
|
|
CHECK(is_photo());
|
|
file_type_ = source.get_file_type("set_source");
|
|
photo().source_ = std::move(source);
|
|
}
|
|
|
|
bool delete_file_reference(Slice bad_file_reference) {
|
|
if (file_reference_ != FileReferenceView::invalid_file_reference() && file_reference_ == bad_file_reference) {
|
|
file_reference_ = FileReferenceView::invalid_file_reference().str();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool has_file_reference() const {
|
|
return file_reference_ != FileReferenceView::invalid_file_reference();
|
|
}
|
|
|
|
Slice get_file_reference() const {
|
|
return file_reference_;
|
|
}
|
|
|
|
string get_url() const {
|
|
if (is_web()) {
|
|
return web().url_;
|
|
}
|
|
|
|
return string();
|
|
}
|
|
|
|
bool is_web() const {
|
|
return variant_.get_offset() == 0;
|
|
}
|
|
bool is_photo() const {
|
|
return location_type() == LocationType::Photo;
|
|
}
|
|
bool is_common() const {
|
|
return location_type() == LocationType::Common;
|
|
}
|
|
bool is_encrypted_secret() const {
|
|
return file_type_ == FileType::Encrypted;
|
|
}
|
|
bool is_encrypted_secure() const {
|
|
return file_type_ == FileType::SecureEncrypted;
|
|
}
|
|
bool is_encrypted_any() const {
|
|
return is_encrypted_secret() || is_encrypted_secure();
|
|
}
|
|
bool is_secure() const {
|
|
return file_type_ == FileType::SecureDecrypted || file_type_ == FileType::SecureEncrypted;
|
|
}
|
|
bool is_document() const {
|
|
return is_common() && !is_secure() && !is_encrypted_secret();
|
|
}
|
|
|
|
#define as_input_web_file_location() as_input_web_file_location_impl(__FILE__, __LINE__)
|
|
tl_object_ptr<telegram_api::inputWebFileLocation> as_input_web_file_location_impl(const char *file, int line) const {
|
|
LOG_CHECK(is_web()) << file << ' ' << line;
|
|
return make_tl_object<telegram_api::inputWebFileLocation>(web().url_, web().access_hash_);
|
|
}
|
|
|
|
tl_object_ptr<telegram_api::InputFileLocation> as_input_file_location() const {
|
|
switch (location_type()) {
|
|
case LocationType::Photo: {
|
|
const auto &id = photo().id_;
|
|
const auto &access_hash = photo().access_hash_;
|
|
const auto &source = photo().source_;
|
|
switch (source.get_type("as_input_file_location")) {
|
|
case PhotoSizeSource::Type::Legacy:
|
|
UNREACHABLE();
|
|
break;
|
|
case PhotoSizeSource::Type::Thumbnail: {
|
|
auto &thumbnail = source.thumbnail();
|
|
switch (thumbnail.file_type) {
|
|
case FileType::Photo:
|
|
return make_tl_object<telegram_api::inputPhotoFileLocation>(
|
|
id, access_hash, BufferSlice(file_reference_),
|
|
std::string(1, static_cast<char>(static_cast<uint8>(thumbnail.thumbnail_type))));
|
|
case FileType::Thumbnail:
|
|
return make_tl_object<telegram_api::inputDocumentFileLocation>(
|
|
id, access_hash, BufferSlice(file_reference_),
|
|
std::string(1, static_cast<char>(static_cast<uint8>(thumbnail.thumbnail_type))));
|
|
default:
|
|
UNREACHABLE();
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
case PhotoSizeSource::Type::DialogPhotoSmall:
|
|
case PhotoSizeSource::Type::DialogPhotoBig: {
|
|
auto &dialog_photo = source.dialog_photo();
|
|
bool is_big = source.get_type("as_input_file_location 2") == PhotoSizeSource::Type::DialogPhotoBig;
|
|
return make_tl_object<telegram_api::inputPeerPhotoFileLocation>(
|
|
is_big * telegram_api::inputPeerPhotoFileLocation::BIG_MASK, false /*ignored*/,
|
|
dialog_photo.get_input_peer(), id);
|
|
}
|
|
case PhotoSizeSource::Type::StickerSetThumbnail:
|
|
UNREACHABLE();
|
|
break;
|
|
case PhotoSizeSource::Type::FullLegacy: {
|
|
const auto &full_legacy = source.full_legacy();
|
|
return make_tl_object<telegram_api::inputPhotoLegacyFileLocation>(
|
|
id, access_hash, BufferSlice(file_reference_), full_legacy.volume_id, full_legacy.local_id,
|
|
full_legacy.secret);
|
|
}
|
|
case PhotoSizeSource::Type::DialogPhotoSmallLegacy:
|
|
case PhotoSizeSource::Type::DialogPhotoBigLegacy: {
|
|
auto &dialog_photo = source.dialog_photo_legacy();
|
|
bool is_big = source.get_type("as_input_file_location 3") == PhotoSizeSource::Type::DialogPhotoBigLegacy;
|
|
return make_tl_object<telegram_api::inputPeerPhotoFileLocationLegacy>(
|
|
is_big * telegram_api::inputPeerPhotoFileLocationLegacy::BIG_MASK, false /*ignored*/,
|
|
dialog_photo.get_input_peer(), dialog_photo.volume_id, dialog_photo.local_id);
|
|
}
|
|
case PhotoSizeSource::Type::StickerSetThumbnailLegacy: {
|
|
auto &sticker_set_thumbnail = source.sticker_set_thumbnail_legacy();
|
|
return make_tl_object<telegram_api::inputStickerSetThumbLegacy>(
|
|
sticker_set_thumbnail.get_input_sticker_set(), sticker_set_thumbnail.volume_id,
|
|
sticker_set_thumbnail.local_id);
|
|
}
|
|
case PhotoSizeSource::Type::StickerSetThumbnailVersion: {
|
|
auto &sticker_set_thumbnail = source.sticker_set_thumbnail_version();
|
|
return make_tl_object<telegram_api::inputStickerSetThumb>(sticker_set_thumbnail.get_input_sticker_set(),
|
|
sticker_set_thumbnail.version);
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
UNREACHABLE();
|
|
return nullptr;
|
|
}
|
|
case LocationType::Common:
|
|
if (is_encrypted_secret()) {
|
|
return make_tl_object<telegram_api::inputEncryptedFileLocation>(common().id_, common().access_hash_);
|
|
} else if (is_secure()) {
|
|
return make_tl_object<telegram_api::inputSecureFileLocation>(common().id_, common().access_hash_);
|
|
} else {
|
|
return make_tl_object<telegram_api::inputDocumentFileLocation>(common().id_, common().access_hash_,
|
|
BufferSlice(file_reference_), string());
|
|
}
|
|
case LocationType::Web:
|
|
case LocationType::None:
|
|
default:
|
|
UNREACHABLE();
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
#define as_input_document() as_input_document_impl(__FILE__, __LINE__)
|
|
tl_object_ptr<telegram_api::inputDocument> as_input_document_impl(const char *file, int line) const {
|
|
LOG_CHECK(is_common()) << file << ' ' << line;
|
|
LOG_CHECK(is_document()) << file << ' ' << line;
|
|
return make_tl_object<telegram_api::inputDocument>(common().id_, common().access_hash_,
|
|
BufferSlice(file_reference_));
|
|
}
|
|
|
|
#define as_input_photo() as_input_photo_impl(__FILE__, __LINE__)
|
|
tl_object_ptr<telegram_api::inputPhoto> as_input_photo_impl(const char *file, int line) const {
|
|
LOG_CHECK(is_photo()) << file << ' ' << line;
|
|
return make_tl_object<telegram_api::inputPhoto>(photo().id_, photo().access_hash_, BufferSlice(file_reference_));
|
|
}
|
|
|
|
tl_object_ptr<telegram_api::inputEncryptedFile> as_input_encrypted_file() const {
|
|
CHECK(is_encrypted_secret());
|
|
return make_tl_object<telegram_api::inputEncryptedFile>(common().id_, common().access_hash_);
|
|
}
|
|
|
|
#define as_input_secure_file() as_input_secure_file_impl(__FILE__, __LINE__)
|
|
tl_object_ptr<telegram_api::inputSecureFile> as_input_secure_file_impl(const char *file, int line) const {
|
|
LOG_CHECK(is_secure()) << file << ' ' << line;
|
|
return make_tl_object<telegram_api::inputSecureFile>(common().id_, common().access_hash_);
|
|
}
|
|
|
|
// this constructor is just for immediate unserialize
|
|
FullRemoteFileLocation() = default;
|
|
|
|
// photo
|
|
FullRemoteFileLocation(const PhotoSizeSource &source, int64 id, int64 access_hash, DcId dc_id,
|
|
std::string file_reference)
|
|
: file_type_(source.get_file_type("FullRemoteFileLocation"))
|
|
, dc_id_(dc_id)
|
|
, file_reference_(std::move(file_reference))
|
|
, variant_(PhotoRemoteFileLocation{id, access_hash, source}) {
|
|
CHECK(is_photo());
|
|
check_file_reference();
|
|
}
|
|
|
|
// document
|
|
FullRemoteFileLocation(FileType file_type, int64 id, int64 access_hash, DcId dc_id, std::string file_reference)
|
|
: file_type_(file_type)
|
|
, dc_id_(dc_id)
|
|
, file_reference_(std::move(file_reference))
|
|
, variant_(CommonRemoteFileLocation{id, access_hash}) {
|
|
CHECK(is_common());
|
|
check_file_reference();
|
|
}
|
|
|
|
// web document
|
|
FullRemoteFileLocation(FileType file_type, string url, int64 access_hash)
|
|
: file_type_(file_type), dc_id_(), variant_(WebRemoteFileLocation{std::move(url), access_hash}) {
|
|
CHECK(is_web());
|
|
CHECK(!web().url_.empty());
|
|
}
|
|
|
|
bool operator<(const FullRemoteFileLocation &other) const {
|
|
if (key_type() != other.key_type()) {
|
|
return key_type() < other.key_type();
|
|
}
|
|
if (dc_id_ != other.dc_id_) {
|
|
return dc_id_ < other.dc_id_;
|
|
}
|
|
switch (location_type()) {
|
|
case LocationType::Photo:
|
|
return photo() < other.photo();
|
|
case LocationType::Common:
|
|
return common() < other.common();
|
|
case LocationType::Web:
|
|
return web() < other.web();
|
|
case LocationType::None:
|
|
default:
|
|
UNREACHABLE();
|
|
return false;
|
|
}
|
|
}
|
|
bool operator==(const FullRemoteFileLocation &other) const {
|
|
if (key_type() != other.key_type()) {
|
|
return false;
|
|
}
|
|
if (dc_id_ != other.dc_id_) {
|
|
return false;
|
|
}
|
|
switch (location_type()) {
|
|
case LocationType::Photo:
|
|
return photo() == other.photo();
|
|
case LocationType::Common:
|
|
return common() == other.common();
|
|
case LocationType::Web:
|
|
return web() == other.web();
|
|
case LocationType::None:
|
|
default:
|
|
UNREACHABLE();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
static const int32 KEY_MAGIC = 0x64374632;
|
|
};
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &string_builder,
|
|
const FullRemoteFileLocation &full_remote_file_location) {
|
|
string_builder << "[" << full_remote_file_location.file_type_;
|
|
if (!full_remote_file_location.is_web()) {
|
|
string_builder << ", " << full_remote_file_location.get_dc_id();
|
|
}
|
|
if (!full_remote_file_location.file_reference_.empty()) {
|
|
string_builder << ", " << tag("file_reference", base64_encode(full_remote_file_location.file_reference_));
|
|
}
|
|
|
|
string_builder << ", location = ";
|
|
if (full_remote_file_location.is_web()) {
|
|
string_builder << full_remote_file_location.web();
|
|
} else if (full_remote_file_location.is_photo()) {
|
|
string_builder << full_remote_file_location.photo();
|
|
} else if (full_remote_file_location.is_common()) {
|
|
string_builder << full_remote_file_location.common();
|
|
}
|
|
|
|
return string_builder << "]";
|
|
}
|
|
|
|
class RemoteFileLocation {
|
|
public:
|
|
enum class Type : int32 { Empty, Partial, Full };
|
|
|
|
Type type() const {
|
|
return static_cast<Type>(variant_.get_offset());
|
|
}
|
|
|
|
PartialRemoteFileLocation &partial() {
|
|
return variant_.get<1>();
|
|
}
|
|
FullRemoteFileLocation &full() {
|
|
return variant_.get<2>();
|
|
}
|
|
const PartialRemoteFileLocation &partial() const {
|
|
return variant_.get<1>();
|
|
}
|
|
const FullRemoteFileLocation &full() const {
|
|
return variant_.get<2>();
|
|
}
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
|
|
RemoteFileLocation() : variant_{EmptyRemoteFileLocation{}} {
|
|
}
|
|
explicit RemoteFileLocation(FullRemoteFileLocation full) : variant_(std::move(full)) {
|
|
}
|
|
explicit RemoteFileLocation(PartialRemoteFileLocation partial) : variant_(std::move(partial)) {
|
|
}
|
|
|
|
private:
|
|
Variant<EmptyRemoteFileLocation, PartialRemoteFileLocation, FullRemoteFileLocation> variant_;
|
|
|
|
friend bool operator==(const RemoteFileLocation &lhs, const RemoteFileLocation &rhs);
|
|
|
|
bool is_empty() const {
|
|
switch (type()) {
|
|
case Type::Empty:
|
|
return true;
|
|
case Type::Partial:
|
|
return partial().ready_part_count_ == 0;
|
|
case Type::Full:
|
|
return false;
|
|
default:
|
|
UNREACHABLE();
|
|
return false;
|
|
}
|
|
}
|
|
};
|
|
|
|
inline bool operator==(const RemoteFileLocation &lhs, const RemoteFileLocation &rhs) {
|
|
if (lhs.is_empty() && rhs.is_empty()) {
|
|
return true;
|
|
}
|
|
return lhs.variant_ == rhs.variant_;
|
|
}
|
|
|
|
inline bool operator!=(const RemoteFileLocation &lhs, const RemoteFileLocation &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &sb, const RemoteFileLocation &location) {
|
|
switch (location.type()) {
|
|
case RemoteFileLocation::Type::Empty:
|
|
return sb << "[empty remote location]";
|
|
case RemoteFileLocation::Type::Partial:
|
|
return sb << location.partial();
|
|
case RemoteFileLocation::Type::Full:
|
|
return sb << location.full();
|
|
default:
|
|
UNREACHABLE();
|
|
return sb;
|
|
}
|
|
}
|
|
|
|
struct EmptyLocalFileLocation {
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const {
|
|
}
|
|
template <class ParserT>
|
|
void parse(ParserT &parser) {
|
|
}
|
|
};
|
|
|
|
inline bool operator==(const EmptyLocalFileLocation &lhs, const EmptyLocalFileLocation &rhs) {
|
|
return true;
|
|
}
|
|
|
|
inline bool operator!=(const EmptyLocalFileLocation &lhs, const EmptyLocalFileLocation &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
struct PartialLocalFileLocation {
|
|
FileType file_type_;
|
|
int64 part_size_;
|
|
string path_;
|
|
string iv_;
|
|
string ready_bitmask_;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
};
|
|
|
|
inline bool operator==(const PartialLocalFileLocation &lhs, const PartialLocalFileLocation &rhs) {
|
|
return lhs.file_type_ == rhs.file_type_ && lhs.path_ == rhs.path_ && lhs.part_size_ == rhs.part_size_ &&
|
|
lhs.iv_ == rhs.iv_ && lhs.ready_bitmask_ == rhs.ready_bitmask_;
|
|
}
|
|
|
|
inline bool operator!=(const PartialLocalFileLocation &lhs, const PartialLocalFileLocation &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &sb, const PartialLocalFileLocation &location) {
|
|
return sb << "[partial local location of " << location.file_type_ << " with part size " << location.part_size_
|
|
<< " and ready parts " << Bitmask(Bitmask::Decode{}, location.ready_bitmask_) << "] at \"" << location.path_
|
|
<< '"';
|
|
}
|
|
|
|
struct FullLocalFileLocation {
|
|
FileType file_type_;
|
|
string path_;
|
|
uint64 mtime_nsec_;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
|
|
const FullLocalFileLocation &as_key() const {
|
|
return *this;
|
|
}
|
|
|
|
FullLocalFileLocation() : file_type_(FileType::None), path_(), mtime_nsec_() {
|
|
}
|
|
FullLocalFileLocation(FileType file_type, string path, uint64 mtime_nsec)
|
|
: file_type_(file_type), path_(std::move(path)), mtime_nsec_(mtime_nsec) {
|
|
}
|
|
|
|
static const int32 KEY_MAGIC = 0x84373817;
|
|
};
|
|
|
|
inline bool operator<(const FullLocalFileLocation &lhs, const FullLocalFileLocation &rhs) {
|
|
return std::tie(lhs.file_type_, lhs.mtime_nsec_, lhs.path_) < std::tie(rhs.file_type_, rhs.mtime_nsec_, rhs.path_);
|
|
}
|
|
|
|
inline bool operator==(const FullLocalFileLocation &lhs, const FullLocalFileLocation &rhs) {
|
|
return std::tie(lhs.file_type_, lhs.mtime_nsec_, lhs.path_) == std::tie(rhs.file_type_, rhs.mtime_nsec_, rhs.path_);
|
|
}
|
|
|
|
inline bool operator!=(const FullLocalFileLocation &lhs, const FullLocalFileLocation &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &sb, const FullLocalFileLocation &location) {
|
|
return sb << "[full local location of " << location.file_type_ << "] at \"" << location.path_ << '"';
|
|
}
|
|
|
|
struct PartialLocalFileLocationPtr {
|
|
unique_ptr<PartialLocalFileLocation> location_; // must never be equal to nullptr
|
|
|
|
PartialLocalFileLocationPtr() : location_(make_unique<PartialLocalFileLocation>()) {
|
|
}
|
|
explicit PartialLocalFileLocationPtr(PartialLocalFileLocation location)
|
|
: location_(make_unique<PartialLocalFileLocation>(std::move(location))) {
|
|
}
|
|
PartialLocalFileLocationPtr(const PartialLocalFileLocationPtr &other)
|
|
: location_(make_unique<PartialLocalFileLocation>(*other.location_)) {
|
|
}
|
|
PartialLocalFileLocationPtr &operator=(const PartialLocalFileLocationPtr &other) {
|
|
if (this != &other) {
|
|
*location_ = *other.location_;
|
|
}
|
|
return *this;
|
|
}
|
|
PartialLocalFileLocationPtr(PartialLocalFileLocationPtr &&other) noexcept
|
|
: location_(make_unique<PartialLocalFileLocation>(std::move(*other.location_))) {
|
|
}
|
|
PartialLocalFileLocationPtr &operator=(PartialLocalFileLocationPtr &&other) noexcept {
|
|
*location_ = std::move(*other.location_);
|
|
return *this;
|
|
}
|
|
~PartialLocalFileLocationPtr() = default;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
};
|
|
|
|
inline bool operator==(const PartialLocalFileLocationPtr &lhs, const PartialLocalFileLocationPtr &rhs) {
|
|
return *lhs.location_ == *rhs.location_;
|
|
}
|
|
|
|
class LocalFileLocation {
|
|
public:
|
|
enum class Type : int32 { Empty, Partial, Full };
|
|
|
|
Type type() const {
|
|
return static_cast<Type>(variant_.get_offset());
|
|
}
|
|
|
|
PartialLocalFileLocation &partial() {
|
|
return *variant_.get<1>().location_;
|
|
}
|
|
FullLocalFileLocation &full() {
|
|
return variant_.get<2>();
|
|
}
|
|
const PartialLocalFileLocation &partial() const {
|
|
return *variant_.get<1>().location_;
|
|
}
|
|
const FullLocalFileLocation &full() const {
|
|
return variant_.get<2>();
|
|
}
|
|
|
|
CSlice file_name() const {
|
|
switch (type()) {
|
|
case Type::Partial:
|
|
return partial().path_;
|
|
case Type::Full:
|
|
return full().path_;
|
|
case Type::Empty:
|
|
default:
|
|
return CSlice();
|
|
}
|
|
}
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
|
|
LocalFileLocation() : variant_{EmptyLocalFileLocation()} {
|
|
}
|
|
explicit LocalFileLocation(PartialLocalFileLocation partial)
|
|
: variant_(PartialLocalFileLocationPtr(std::move(partial))) {
|
|
}
|
|
explicit LocalFileLocation(FullLocalFileLocation full) : variant_(std::move(full)) {
|
|
}
|
|
LocalFileLocation(FileType file_type, string path, uint64 mtime_nsec)
|
|
: variant_(FullLocalFileLocation{file_type, std::move(path), mtime_nsec}) {
|
|
}
|
|
|
|
private:
|
|
Variant<EmptyLocalFileLocation, PartialLocalFileLocationPtr, FullLocalFileLocation> variant_;
|
|
|
|
friend bool operator==(const LocalFileLocation &lhs, const LocalFileLocation &rhs);
|
|
};
|
|
|
|
inline bool operator==(const LocalFileLocation &lhs, const LocalFileLocation &rhs) {
|
|
return lhs.variant_ == rhs.variant_;
|
|
}
|
|
|
|
inline bool operator!=(const LocalFileLocation &lhs, const LocalFileLocation &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &sb, const LocalFileLocation &location) {
|
|
switch (location.type()) {
|
|
case LocalFileLocation::Type::Empty:
|
|
return sb << "[empty local location]";
|
|
case LocalFileLocation::Type::Partial:
|
|
return sb << location.partial();
|
|
case LocalFileLocation::Type::Full:
|
|
return sb << location.full();
|
|
default:
|
|
UNREACHABLE();
|
|
return sb;
|
|
}
|
|
}
|
|
|
|
struct FullGenerateFileLocation {
|
|
FileType file_type_{FileType::None};
|
|
string original_path_;
|
|
string conversion_;
|
|
static const int32 KEY_MAGIC = 0x8b60a1c8;
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
|
|
const FullGenerateFileLocation &as_key() const {
|
|
return *this;
|
|
}
|
|
FullGenerateFileLocation() = default;
|
|
FullGenerateFileLocation(FileType file_type, string original_path, string conversion)
|
|
: file_type_(file_type), original_path_(std::move(original_path)), conversion_(std::move(conversion)) {
|
|
}
|
|
};
|
|
|
|
inline bool operator<(const FullGenerateFileLocation &lhs, const FullGenerateFileLocation &rhs) {
|
|
return std::tie(lhs.file_type_, lhs.original_path_, lhs.conversion_) <
|
|
std::tie(rhs.file_type_, rhs.original_path_, rhs.conversion_);
|
|
}
|
|
|
|
inline bool operator==(const FullGenerateFileLocation &lhs, const FullGenerateFileLocation &rhs) {
|
|
return std::tie(lhs.file_type_, lhs.original_path_, lhs.conversion_) ==
|
|
std::tie(rhs.file_type_, rhs.original_path_, rhs.conversion_);
|
|
}
|
|
|
|
inline bool operator!=(const FullGenerateFileLocation &lhs, const FullGenerateFileLocation &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
inline StringBuilder &operator<<(StringBuilder &string_builder,
|
|
const FullGenerateFileLocation &full_generated_file_location) {
|
|
return string_builder << '[' << tag("file_type", full_generated_file_location.file_type_)
|
|
<< tag("original_path", full_generated_file_location.original_path_)
|
|
<< tag("conversion", full_generated_file_location.conversion_) << ']';
|
|
}
|
|
|
|
class GenerateFileLocation {
|
|
public:
|
|
enum class Type : int32 { Empty, Full };
|
|
|
|
Type type() const {
|
|
return type_;
|
|
}
|
|
|
|
FullGenerateFileLocation &full() {
|
|
CHECK(type_ == Type::Full);
|
|
return full_;
|
|
}
|
|
const FullGenerateFileLocation &full() const {
|
|
CHECK(type_ == Type::Full);
|
|
return full_;
|
|
}
|
|
|
|
template <class StorerT>
|
|
void store(StorerT &storer) const;
|
|
template <class ParserT>
|
|
void parse(ParserT &parser);
|
|
|
|
GenerateFileLocation() : type_(Type::Empty) {
|
|
}
|
|
|
|
explicit GenerateFileLocation(const FullGenerateFileLocation &full) : type_(Type::Full), full_(full) {
|
|
}
|
|
|
|
GenerateFileLocation(FileType file_type, string original_path, string conversion)
|
|
: type_(Type::Full), full_{file_type, std::move(original_path), std::move(conversion)} {
|
|
}
|
|
|
|
private:
|
|
Type type_;
|
|
FullGenerateFileLocation full_;
|
|
};
|
|
|
|
inline bool operator==(const GenerateFileLocation &lhs, const GenerateFileLocation &rhs) {
|
|
if (lhs.type() != rhs.type()) {
|
|
return false;
|
|
}
|
|
switch (lhs.type()) {
|
|
case GenerateFileLocation::Type::Empty:
|
|
return true;
|
|
case GenerateFileLocation::Type::Full:
|
|
return lhs.full() == rhs.full();
|
|
}
|
|
UNREACHABLE();
|
|
return false;
|
|
}
|
|
|
|
inline bool operator!=(const GenerateFileLocation &lhs, const GenerateFileLocation &rhs) {
|
|
return !(lhs == rhs);
|
|
}
|
|
|
|
} // namespace td
|