2018-12-31 20:04:05 +01:00
|
|
|
//
|
2021-01-01 13:57:46 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
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
|
|
|
|
|
2018-08-13 18:30:52 +02:00
|
|
|
#include "td/telegram/files/FileLocation.h"
|
2019-01-19 22:54:29 +01:00
|
|
|
#include "td/telegram/files/FileType.h"
|
2018-08-13 18:30:52 +02:00
|
|
|
|
|
|
|
#include "td/utils/buffer.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/common.h"
|
2020-10-08 17:30:36 +02:00
|
|
|
#include "td/utils/logging.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/port/FileFd.h"
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2020-10-05 21:08:24 +02:00
|
|
|
extern int VERBOSITY_NAME(file_loader);
|
2020-10-05 17:07:23 +02:00
|
|
|
|
2018-08-13 18:30:52 +02:00
|
|
|
Result<std::pair<FileFd, string>> open_temp_file(FileType file_type) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
Result<string> create_from_temp(CSlice temp_path, CSlice dir, CSlice name) TD_WARN_UNUSED_RESULT;
|
2018-08-13 18:30:52 +02:00
|
|
|
|
2018-02-26 11:05:14 +01:00
|
|
|
Result<string> search_file(CSlice dir, CSlice name, int64 expected_size) TD_WARN_UNUSED_RESULT;
|
2018-08-13 18:30:52 +02:00
|
|
|
|
2021-07-24 06:19:22 +02:00
|
|
|
Result<string> get_suggested_file_name(CSlice dir, Slice file_name) TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-08-13 18:30:52 +02:00
|
|
|
Result<FullLocalFileLocation> save_file_bytes(FileType type, BufferSlice bytes, CSlice file_name);
|
|
|
|
|
2019-01-19 23:59:37 +01:00
|
|
|
Slice get_files_base_dir(FileType file_type);
|
2018-08-13 18:30:52 +02:00
|
|
|
|
|
|
|
string get_files_temp_dir(FileType file_type);
|
|
|
|
|
|
|
|
string get_files_dir(FileType file_type);
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|