2023-11-01 22:11:11 +01:00
|
|
|
// This file Copyright © Mnemosyne LLC.
|
2022-08-08 13:05:39 -05:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 12:27:56 -06:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2017-11-14 23:21:28 +03:00
|
|
|
#pragma once
|
|
|
|
|
2009-11-24 02:16:31 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 15:04:45 +03:00
|
|
|
#error only libtransmission should #include this header.
|
2009-11-24 02:16:31 +00:00
|
|
|
#endif
|
|
|
|
|
2021-12-16 03:43:51 -06:00
|
|
|
#include <cstddef> // size_t
|
2022-08-11 19:59:58 -05:00
|
|
|
#include <cstdint> // int64_t
|
2022-04-07 20:50:26 -05:00
|
|
|
#include <ctime> // time_t
|
2023-07-16 04:38:38 +08:00
|
|
|
#include <deque>
|
2022-08-11 19:59:58 -05:00
|
|
|
#include <optional>
|
|
|
|
#include <vector>
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2023-07-12 07:36:16 -05:00
|
|
|
#include <small/vector.hpp>
|
|
|
|
|
2023-07-08 23:24:03 +08:00
|
|
|
struct tr_error;
|
2021-12-16 03:43:51 -06:00
|
|
|
struct tr_torrent;
|
2022-06-22 05:47:57 +08:00
|
|
|
struct tr_torrent_metainfo;
|
2021-12-16 03:43:51 -06:00
|
|
|
|
2021-09-16 11:22:33 -05:00
|
|
|
// defined by BEP #9
|
2023-07-17 21:56:57 +08:00
|
|
|
inline constexpr int MetadataPieceSize = 1024 * 16;
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2023-07-17 21:56:57 +08:00
|
|
|
using tr_metadata_piece = small::max_size_vector<std::byte, MetadataPieceSize>;
|
2023-07-12 07:36:16 -05:00
|
|
|
|
2023-07-16 04:38:38 +08:00
|
|
|
struct tr_incomplete_metadata
|
|
|
|
{
|
|
|
|
struct metadata_node
|
|
|
|
{
|
|
|
|
time_t requested_at = 0U;
|
|
|
|
int piece = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<char> metadata;
|
|
|
|
|
|
|
|
/** sorted from least to most recently requested */
|
|
|
|
std::deque<metadata_node> pieces_needed;
|
|
|
|
|
|
|
|
int piece_count = 0;
|
|
|
|
};
|
|
|
|
|
2023-07-12 07:36:16 -05:00
|
|
|
bool tr_torrentGetMetadataPiece(tr_torrent const* tor, int piece, tr_metadata_piece& setme);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2022-10-28 19:12:37 -05:00
|
|
|
void tr_torrentSetMetadataPiece(tr_torrent* tor, int piece, void const* data, size_t len);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2022-08-14 14:41:57 -05:00
|
|
|
std::optional<int> tr_torrentGetNextMetadataRequest(tr_torrent* tor, time_t now);
|
2009-11-24 02:16:31 +00:00
|
|
|
|
2017-04-19 15:04:45 +03:00
|
|
|
bool tr_torrentSetMetadataSizeHint(tr_torrent* tor, int64_t metadata_size);
|
2009-11-24 17:10:40 +00:00
|
|
|
|
2017-04-20 19:02:19 +03:00
|
|
|
double tr_torrentGetMetadataPercent(tr_torrent const* tor);
|
2022-06-22 05:47:57 +08:00
|
|
|
|
2023-02-13 12:33:33 -06:00
|
|
|
void tr_torrentMagnetDoIdleWork(tr_torrent* tor);
|
|
|
|
|
2023-11-04 11:39:41 -05:00
|
|
|
bool tr_torrentUseMetainfoFromFile(tr_torrent* tor, tr_torrent_metainfo const* metainfo, char const* filename, tr_error* error);
|