2018-12-31 22:04:05 +03:00
|
|
|
//
|
2024-01-01 03:07:21 +03:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2018-12-31 22:04:05 +03: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
|
|
|
|
|
2018-08-13 19:30:52 +03:00
|
|
|
#include "td/telegram/files/FileLocation.h"
|
2019-01-20 00:54:29 +03:00
|
|
|
#include "td/telegram/files/FileType.h"
|
2018-08-13 19:30:52 +03:00
|
|
|
|
|
|
|
#include "td/utils/buffer.h"
|
2018-12-31 22:04:05 +03:00
|
|
|
#include "td/utils/common.h"
|
2020-10-08 18:30:36 +03:00
|
|
|
#include "td/utils/logging.h"
|
2018-12-31 22:04:05 +03:00
|
|
|
#include "td/utils/port/FileFd.h"
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2020-10-05 22:08:24 +03:00
|
|
|
extern int VERBOSITY_NAME(file_loader);
|
2020-10-05 18:07:23 +03:00
|
|
|
|
2018-08-13 19:30:52 +03:00
|
|
|
Result<std::pair<FileFd, string>> open_temp_file(FileType file_type) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2022-06-14 21:09:07 +03:00
|
|
|
Result<string> create_from_temp(FileType file_type, CSlice temp_path, CSlice name) TD_WARN_UNUSED_RESULT;
|
2018-08-13 19:30:52 +03:00
|
|
|
|
2022-06-14 21:09:07 +03:00
|
|
|
Result<string> search_file(FileType type, CSlice name, int64 expected_size) TD_WARN_UNUSED_RESULT;
|
2018-08-13 19:30:52 +03:00
|
|
|
|
2021-07-24 07:19:22 +03:00
|
|
|
Result<string> get_suggested_file_name(CSlice dir, Slice file_name) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2022-06-14 21:09:07 +03:00
|
|
|
Result<FullLocalFileLocation> save_file_bytes(FileType file_type, BufferSlice bytes, CSlice file_name);
|
2018-08-13 19:30:52 +03:00
|
|
|
|
2019-01-20 01:59:37 +03:00
|
|
|
Slice get_files_base_dir(FileType file_type);
|
2018-08-13 19:30:52 +03:00
|
|
|
|
|
|
|
string get_files_temp_dir(FileType file_type);
|
|
|
|
|
|
|
|
string get_files_dir(FileType file_type);
|
|
|
|
|
2022-10-10 12:58:48 +03:00
|
|
|
bool are_modification_times_equal(int64 old_mtime, int64 new_mtime);
|
|
|
|
|
|
|
|
struct FullLocalLocationInfo {
|
|
|
|
FullLocalFileLocation location_;
|
|
|
|
int64 size_ = 0;
|
2022-11-04 11:34:11 +03:00
|
|
|
|
|
|
|
FullLocalLocationInfo(const FullLocalFileLocation &location, int64 size) : location_(location), size_(size) {
|
|
|
|
}
|
2022-10-10 12:58:48 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
Result<FullLocalLocationInfo> check_full_local_location(FullLocalLocationInfo local_info, bool skip_file_size_checks);
|
|
|
|
|
|
|
|
Status check_partial_local_location(const PartialLocalFileLocation &location);
|
|
|
|
|
2018-12-31 22:04:05 +03:00
|
|
|
} // namespace td
|