2023-02-11 20:49:42 +00:00
|
|
|
// This file Copyright © 2009-2023 Mnemosyne LLC.
|
2022-08-08 18:05:39 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2007-12-25 05:37:32 +00:00
|
|
|
|
2017-11-14 20:21:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2017-04-19 12:04:45 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2021-12-16 09:43:51 +00:00
|
|
|
#include <cstddef> // size_t
|
2021-12-15 21:25:42 +00:00
|
|
|
#include <ctime>
|
2023-10-19 13:39:34 +00:00
|
|
|
#include <functional>
|
2023-10-05 02:38:14 +00:00
|
|
|
#include <memory>
|
2021-10-22 02:40:55 +00:00
|
|
|
#include <optional>
|
2021-09-29 19:52:19 +00:00
|
|
|
#include <string>
|
2021-10-20 02:30:50 +00:00
|
|
|
#include <string_view>
|
2022-08-17 16:08:36 +00:00
|
|
|
#include <utility>
|
2021-10-16 14:04:19 +00:00
|
|
|
#include <vector>
|
2021-09-29 19:52:19 +00:00
|
|
|
|
2023-07-15 20:38:38 +00:00
|
|
|
#include "libtransmission/transmission.h"
|
|
|
|
|
|
|
|
#include "libtransmission/announce-list.h"
|
|
|
|
#include "libtransmission/bandwidth.h"
|
|
|
|
#include "libtransmission/bitfield.h"
|
|
|
|
#include "libtransmission/block-info.h"
|
|
|
|
#include "libtransmission/completion.h"
|
|
|
|
#include "libtransmission/crypto-utils.h"
|
|
|
|
#include "libtransmission/file-piece-map.h"
|
|
|
|
#include "libtransmission/interned-string.h"
|
|
|
|
#include "libtransmission/log.h"
|
2023-10-19 13:39:34 +00:00
|
|
|
#include "libtransmission/observable.h"
|
2023-07-15 20:38:38 +00:00
|
|
|
#include "libtransmission/session.h"
|
|
|
|
#include "libtransmission/torrent-magnet.h"
|
|
|
|
#include "libtransmission/torrent-metainfo.h"
|
2023-10-04 01:18:55 +00:00
|
|
|
#include "libtransmission/tr-assert.h"
|
2023-07-15 20:38:38 +00:00
|
|
|
#include "libtransmission/tr-macros.h"
|
2023-10-19 13:39:34 +00:00
|
|
|
#include "libtransmission/verify.h"
|
2009-01-02 17:01:55 +00:00
|
|
|
|
2021-10-10 00:13:40 +00:00
|
|
|
class tr_swarm;
|
2021-12-15 21:25:42 +00:00
|
|
|
struct tr_error;
|
2021-11-09 03:30:03 +00:00
|
|
|
struct tr_magnet_info;
|
2021-11-12 16:42:51 +00:00
|
|
|
struct tr_metainfo_parsed;
|
2021-11-09 03:30:03 +00:00
|
|
|
struct tr_session;
|
2021-10-29 18:24:30 +00:00
|
|
|
struct tr_torrent;
|
2022-01-23 05:41:01 +00:00
|
|
|
struct tr_torrent_announcer;
|
2008-11-06 02:56:51 +00:00
|
|
|
|
2023-01-22 19:21:30 +00:00
|
|
|
// --- Package-visible
|
2008-10-20 16:00:14 +00:00
|
|
|
|
2022-11-04 21:20:27 +00:00
|
|
|
void tr_torrentFreeInSessionThread(tr_torrent* tor);
|
2012-12-14 20:04:37 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
void tr_ctorInitTorrentPriorities(tr_ctor const* ctor, tr_torrent* tor);
|
2009-04-02 20:43:42 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
void tr_ctorInitTorrentWanted(tr_ctor const* ctor, tr_torrent* tor);
|
2009-04-02 20:43:42 +00:00
|
|
|
|
2022-03-28 22:13:32 +00:00
|
|
|
bool tr_ctorSaveContents(tr_ctor const* ctor, std::string_view filename, tr_error** error);
|
2022-02-24 21:52:29 +00:00
|
|
|
|
2021-12-05 01:32:35 +00:00
|
|
|
tr_session* tr_ctorGetSession(tr_ctor const* ctor);
|
|
|
|
|
2023-01-28 23:58:20 +00:00
|
|
|
bool tr_ctorGetIncompleteDir(tr_ctor const* ctor, char const** setme_incomplete_dir);
|
2021-12-05 01:32:35 +00:00
|
|
|
|
2023-01-22 19:21:30 +00:00
|
|
|
// ---
|
2008-10-20 16:00:14 +00:00
|
|
|
|
2022-08-03 06:15:37 +00:00
|
|
|
void tr_torrentChangeMyPort(tr_torrent* tor);
|
2007-12-25 05:37:32 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
bool tr_torrentReqIsValid(tr_torrent const* tor, tr_piece_index_t index, uint32_t offset, uint32_t length);
|
2007-12-25 05:37:32 +00:00
|
|
|
|
2022-11-03 23:08:02 +00:00
|
|
|
[[nodiscard]] tr_block_span_t tr_torGetFileBlockSpan(tr_torrent const* tor, tr_file_index_t file);
|
2011-02-23 03:54:04 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_torrentCheckSeedLimit(tr_torrent* tor);
|
2009-03-01 13:56:22 +00:00
|
|
|
|
2009-08-13 14:47:56 +00:00
|
|
|
/** save a torrent's .resume file if it's changed since the last time it was saved */
|
2017-04-19 12:04:45 +00:00
|
|
|
void tr_torrentSave(tr_torrent* tor);
|
2009-03-01 13:56:22 +00:00
|
|
|
|
2010-01-19 19:37:00 +00:00
|
|
|
/** @brief Torrent object */
|
2022-04-28 13:44:24 +00:00
|
|
|
struct tr_torrent final : public tr_completion::torrent_view
|
2007-12-25 05:37:32 +00:00
|
|
|
{
|
2021-11-15 20:53:53 +00:00
|
|
|
public:
|
2023-10-23 22:11:28 +00:00
|
|
|
using labels_t = std::vector<tr_interned_string>;
|
2023-10-19 13:39:34 +00:00
|
|
|
using VerifyDoneCallback = std::function<void(tr_torrent*)>;
|
|
|
|
|
|
|
|
class VerifyMediator : public tr_verify_worker::Mediator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit VerifyMediator(tr_torrent* const tor)
|
|
|
|
: tor_{ tor }
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
~VerifyMediator() override = default;
|
|
|
|
|
|
|
|
[[nodiscard]] tr_torrent_metainfo const& metainfo() const override;
|
|
|
|
[[nodiscard]] std::optional<std::string> find_file(tr_file_index_t file_index) const override;
|
|
|
|
|
|
|
|
void on_verify_queued() override;
|
|
|
|
void on_verify_started() override;
|
|
|
|
void on_piece_checked(tr_piece_index_t piece, bool has_piece) override;
|
|
|
|
void on_verify_done(bool aborted) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
tr_torrent* const tor_;
|
|
|
|
std::optional<time_t> time_started_;
|
|
|
|
};
|
|
|
|
|
2022-01-15 19:33:57 +00:00
|
|
|
explicit tr_torrent(tr_torrent_metainfo&& tm)
|
|
|
|
: metainfo_{ std::move(tm) }
|
2023-04-23 01:25:55 +00:00
|
|
|
, completion{ this, &this->metainfo_.block_info() }
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-10-22 02:33:41 +00:00
|
|
|
void set_location(std::string_view location, bool move_from_old_path, int volatile* setme_state);
|
2021-11-12 16:42:51 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void rename_path(
|
2021-11-16 04:10:36 +00:00
|
|
|
std::string_view oldpath,
|
|
|
|
std::string_view newname,
|
|
|
|
tr_torrent_rename_done_func callback,
|
|
|
|
void* callback_user_data);
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
tr_sha1_digest_t piece_hash(tr_piece_index_t i) const
|
2021-11-12 16:42:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.piece_hash(i);
|
2021-11-12 16:42:51 +00:00
|
|
|
}
|
|
|
|
|
2021-11-15 20:53:53 +00:00
|
|
|
// these functions should become private when possible,
|
|
|
|
// but more refactoring is needed before that can happen
|
|
|
|
// because much of tr_torrent's impl is in the non-member C bindings
|
2022-01-15 19:33:57 +00:00
|
|
|
|
2023-02-13 18:33:33 +00:00
|
|
|
// Used to add metainfo to a magnet torrent.
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_metainfo(tr_torrent_metainfo tm);
|
2021-10-29 18:24:30 +00:00
|
|
|
|
2022-01-23 05:41:01 +00:00
|
|
|
[[nodiscard]] auto unique_lock() const
|
2021-11-20 21:20:45 +00:00
|
|
|
{
|
|
|
|
return session->unique_lock();
|
|
|
|
}
|
|
|
|
|
2021-12-16 08:49:04 +00:00
|
|
|
/// SPEED LIMIT
|
|
|
|
|
2023-01-07 22:55:00 +00:00
|
|
|
[[nodiscard]] constexpr auto& bandwidth() noexcept
|
|
|
|
{
|
|
|
|
return bandwidth_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto const& bandwidth() const noexcept
|
|
|
|
{
|
|
|
|
return bandwidth_;
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
constexpr void set_speed_limit_bps(tr_direction dir, tr_bytes_per_second_t bytes_per_second)
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
if (bandwidth().set_desired_speed_bytes_per_second(dir, bytes_per_second))
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
set_dirty();
|
2022-11-03 23:08:02 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-16 08:49:04 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
constexpr void use_speed_limit(tr_direction dir, bool do_use)
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
if (bandwidth().set_limited(dir, do_use))
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
set_dirty();
|
2022-11-03 23:08:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto speed_limit_bps(tr_direction dir) const
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return bandwidth().get_desired_speed_bytes_per_second(dir);
|
2022-11-03 23:08:02 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto uses_session_limits() const noexcept
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return bandwidth().are_parent_limits_honored(TR_UP);
|
2022-11-03 23:08:02 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto uses_speed_limit(tr_direction dir) const noexcept
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return bandwidth().is_limited(dir);
|
2022-11-03 23:08:02 +00:00
|
|
|
}
|
|
|
|
|
2022-01-07 19:13:37 +00:00
|
|
|
/// BLOCK INFO
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto const& block_info() const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.block_info();
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto block_count() const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.block_count();
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto byte_loc(uint64_t byte) const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.byte_loc(byte);
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto block_loc(tr_block_index_t block) const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.block_loc(block);
|
2022-02-18 23:17:19 +00:00
|
|
|
}
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto piece_loc(tr_piece_index_t piece, uint32_t offset = 0, uint32_t length = 0) const noexcept
|
2022-02-18 23:17:19 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.piece_loc(piece, offset, length);
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto block_size(tr_block_index_t block) const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.block_size(block);
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto block_span_for_piece(tr_piece_index_t piece) const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.block_span_for_piece(piece);
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto piece_count() const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.piece_count();
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto piece_size() const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.piece_size();
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto piece_size(tr_piece_index_t piece) const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.piece_size(piece);
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto total_size() const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.total_size();
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
|
|
|
|
2021-11-25 18:26:51 +00:00
|
|
|
/// COMPLETION
|
2021-11-15 20:53:53 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto left_until_done() const
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.left_until_done();
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
2021-11-15 20:53:53 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto size_when_done() const
|
2022-03-17 18:41:48 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.size_when_done();
|
2022-03-17 18:41:48 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto has_metainfo() const noexcept
|
2022-03-29 04:29:35 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.has_metainfo();
|
2022-03-29 04:29:35 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto has_all() const noexcept
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.has_all();
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
2021-11-15 20:53:53 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto has_none() const noexcept
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.has_none();
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
2007-12-25 05:37:32 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto has_piece(tr_piece_index_t piece) const
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.has_piece(piece);
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
2021-10-29 18:24:30 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 auto has_block(tr_block_index_t block) const
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.has_block(block);
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto count_missing_blocks_in_piece(tr_piece_index_t piece) const
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.count_missing_blocks_in_piece(piece);
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto count_missing_bytes_in_piece(tr_piece_index_t piece) const
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.count_missing_bytes_in_piece(piece);
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto has_total() const
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.has_total();
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto create_piece_bitfield() const
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.create_piece_bitfield();
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr bool is_done() const noexcept
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2021-12-15 07:04:26 +00:00
|
|
|
return completeness != TR_LEECH;
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
2021-10-29 18:24:30 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr bool is_seed() const noexcept
|
2021-12-16 08:49:04 +00:00
|
|
|
{
|
|
|
|
return completeness == TR_SEED;
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr bool is_partial_seed() const noexcept
|
2021-12-16 08:49:04 +00:00
|
|
|
{
|
|
|
|
return completeness == TR_PARTIAL_SEED;
|
|
|
|
}
|
|
|
|
|
2022-08-31 04:17:23 +00:00
|
|
|
[[nodiscard]] constexpr auto& blocks() const noexcept
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
|
|
|
return completion.blocks();
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void amount_done_bins(float* tab, int n_tabs) const
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return completion.amount_done(tab, n_tabs);
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_blocks(tr_bitfield blocks);
|
2021-11-25 18:26:51 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_has_piece(tr_piece_index_t piece, bool has)
|
2021-11-25 18:26:51 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
completion.set_has_piece(piece, has);
|
2021-11-25 18:26:51 +00:00
|
|
|
}
|
|
|
|
|
2021-11-29 01:12:54 +00:00
|
|
|
/// FILE <-> PIECE
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto pieces_in_file(tr_file_index_t file) const
|
2021-10-29 18:24:30 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return fpm_.piece_span(file);
|
2021-10-29 18:24:30 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto file_offset(tr_block_info::Location loc) const
|
2021-12-24 06:39:55 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return fpm_.file_offset(loc.byte);
|
2021-12-24 06:39:55 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto byte_span(tr_file_index_t file) const
|
2022-06-20 04:08:58 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return fpm_.byte_span(file);
|
2022-06-20 04:08:58 +00:00
|
|
|
}
|
|
|
|
|
2021-11-29 01:12:54 +00:00
|
|
|
/// WANTED
|
2021-10-29 18:24:30 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] bool piece_is_wanted(tr_piece_index_t piece) const final
|
2021-10-29 18:24:30 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return files_wanted_.piece_wanted(piece);
|
2021-11-29 01:12:54 +00:00
|
|
|
}
|
2021-10-29 18:24:30 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 bool file_is_wanted(tr_file_index_t file) const
|
2021-11-29 01:12:54 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return files_wanted_.file_wanted(file);
|
2021-11-29 01:12:54 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void init_files_wanted(tr_file_index_t const* files, size_t n_files, bool wanted)
|
2021-11-29 01:12:54 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
set_files_wanted(files, n_files, wanted, /*is_bootstrapping*/ true);
|
2021-10-29 18:24:30 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_files_wanted(tr_file_index_t const* files, size_t n_files, bool wanted)
|
2021-11-29 01:12:54 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
set_files_wanted(files, n_files, wanted, /*is_bootstrapping*/ false);
|
2021-11-29 01:12:54 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void recheck_completeness(); // TODO(ckerr): should be private
|
2021-11-29 01:12:54 +00:00
|
|
|
|
|
|
|
/// PRIORITIES
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] tr_priority_t piece_priority(tr_piece_index_t piece) const
|
2021-10-29 18:24:30 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return file_priorities_.piece_priority(piece);
|
2021-11-29 01:12:54 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_file_priorities(tr_file_index_t const* files, tr_file_index_t file_count, tr_priority_t priority)
|
2021-11-29 01:12:54 +00:00
|
|
|
{
|
2023-01-28 23:58:20 +00:00
|
|
|
file_priorities_.set(files, file_count, priority);
|
2023-04-23 01:25:55 +00:00
|
|
|
set_dirty();
|
2021-11-29 01:12:54 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_file_priority(tr_file_index_t file, tr_priority_t priority)
|
2021-11-29 01:12:54 +00:00
|
|
|
{
|
|
|
|
file_priorities_.set(file, priority);
|
2023-04-23 01:25:55 +00:00
|
|
|
set_dirty();
|
2021-10-29 18:24:30 +00:00
|
|
|
}
|
|
|
|
|
2021-12-23 17:16:05 +00:00
|
|
|
/// LOCATION
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr tr_interned_string current_dir() const noexcept
|
2021-12-23 17:16:05 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return current_dir_;
|
2021-12-23 17:16:05 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr tr_interned_string download_dir() const noexcept
|
2021-12-23 17:16:05 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return download_dir_;
|
2021-12-23 17:16:05 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr tr_interned_string incomplete_dir() const noexcept
|
2021-12-23 17:16:05 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return incomplete_dir_;
|
2021-12-23 17:16:05 +00:00
|
|
|
}
|
|
|
|
|
2021-12-15 05:48:56 +00:00
|
|
|
/// METAINFO - FILES
|
2021-12-07 04:18:17 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 auto file_count() const noexcept
|
2021-12-07 04:18:17 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.file_count();
|
2021-12-07 04:18:17 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 auto const& file_subpath(tr_file_index_t i) const
|
2021-12-07 04:18:17 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.file_subpath(i);
|
2021-12-07 04:18:17 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 auto file_size(tr_file_index_t i) const
|
2021-12-07 04:18:17 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.file_size(i);
|
2021-12-07 04:18:17 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_file_subpath(tr_file_index_t i, std::string_view subpath)
|
2022-01-15 19:33:57 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
metainfo_.set_file_subpath(i, subpath);
|
2022-01-15 19:33:57 +00:00
|
|
|
}
|
2022-01-02 01:25:25 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] std::optional<tr_torrent_files::FoundFile> find_file(tr_file_index_t file_index) const;
|
2022-04-02 14:06:02 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] bool has_any_local_data() const;
|
2021-12-07 04:18:17 +00:00
|
|
|
|
2021-12-15 05:48:56 +00:00
|
|
|
/// METAINFO - TRACKERS
|
2021-12-14 20:59:40 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto const& announce_list() const noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.announce_list();
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto& announce_list() noexcept
|
2022-01-07 19:13:37 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.announce_list();
|
2022-01-07 19:13:37 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 auto tracker_count() const noexcept
|
2021-12-14 20:59:40 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return std::size(this->announce_list());
|
2021-12-14 20:59:40 +00:00
|
|
|
}
|
|
|
|
|
2022-12-23 21:21:40 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 auto const& tracker(size_t i) const
|
2021-12-14 20:59:40 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return this->announce_list().at(i);
|
2021-12-14 20:59:40 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto tracker_list() const
|
2022-02-18 17:52:01 +00:00
|
|
|
{
|
2023-05-06 04:11:05 +00:00
|
|
|
return this->announce_list().to_string();
|
2022-02-18 17:52:01 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
bool set_tracker_list(std::string_view text);
|
2022-02-18 17:52:01 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void on_tracker_response(tr_tracker_event const* event);
|
2023-01-15 18:37:54 +00:00
|
|
|
|
2021-12-15 05:48:56 +00:00
|
|
|
/// METAINFO - WEBSEEDS
|
2021-12-07 18:11:28 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 auto webseed_count() const noexcept
|
2021-12-07 18:11:28 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.webseed_count();
|
2021-12-07 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
2022-12-23 21:21:40 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 auto const& webseed(size_t i) const
|
2021-12-07 18:11:28 +00:00
|
|
|
{
|
2022-01-15 19:33:57 +00:00
|
|
|
return metainfo_.webseed(i);
|
2021-12-07 18:11:28 +00:00
|
|
|
}
|
|
|
|
|
2021-12-15 15:53:20 +00:00
|
|
|
/// METAINFO - OTHER
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_name(std::string_view name)
|
2022-01-15 19:33:57 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
metainfo_.set_name(name);
|
2022-01-15 19:33:57 +00:00
|
|
|
}
|
2021-12-24 21:12:33 +00:00
|
|
|
|
2022-08-31 22:33:51 +00:00
|
|
|
[[nodiscard]] constexpr auto const& name() const noexcept
|
2022-01-08 23:41:05 +00:00
|
|
|
{
|
2022-01-15 19:33:57 +00:00
|
|
|
return metainfo_.name();
|
2022-01-08 23:41:05 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto const& info_hash() const noexcept
|
2021-12-21 22:14:15 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.info_hash();
|
2021-12-21 22:14:15 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto is_private() const noexcept
|
2021-12-15 15:53:20 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.is_private();
|
2021-12-15 15:53:20 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto is_public() const noexcept
|
2021-12-15 15:53:20 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return !this->is_private();
|
2021-12-15 15:53:20 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto const& info_hash_string() const noexcept
|
2022-01-08 23:41:05 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.info_hash_string();
|
2022-01-08 23:41:05 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto date_created() const noexcept
|
2021-12-15 15:53:20 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.date_created();
|
2021-12-15 15:53:20 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto torrent_file() const
|
2021-12-15 15:53:20 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.torrent_file(session->torrentDir());
|
2022-01-15 19:33:57 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto magnet_file() const
|
2022-02-24 21:52:29 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.magnet_file(session->torrentDir());
|
2022-02-24 21:52:29 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] auto resume_file() const
|
2022-01-15 19:33:57 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.resume_file(session->resumeDir());
|
2022-01-08 23:41:05 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 21:52:29 +00:00
|
|
|
[[nodiscard]] auto magnet() const
|
|
|
|
{
|
|
|
|
return metainfo_.magnet();
|
|
|
|
}
|
|
|
|
|
2022-08-31 22:33:51 +00:00
|
|
|
[[nodiscard]] constexpr auto const& comment() const noexcept
|
2022-01-08 23:41:05 +00:00
|
|
|
{
|
2022-01-15 19:33:57 +00:00
|
|
|
return metainfo_.comment();
|
2022-01-08 23:41:05 +00:00
|
|
|
}
|
|
|
|
|
2022-08-31 22:33:51 +00:00
|
|
|
[[nodiscard]] constexpr auto const& creator() const noexcept
|
2022-01-08 23:41:05 +00:00
|
|
|
{
|
2022-01-15 19:33:57 +00:00
|
|
|
return metainfo_.creator();
|
2022-01-08 23:41:05 +00:00
|
|
|
}
|
|
|
|
|
2022-08-31 22:33:51 +00:00
|
|
|
[[nodiscard]] constexpr auto const& source() const noexcept
|
2022-01-08 23:41:05 +00:00
|
|
|
{
|
2022-01-15 19:33:57 +00:00
|
|
|
return metainfo_.source();
|
2021-12-15 15:53:20 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto info_dict_size() const noexcept
|
2021-12-24 21:12:33 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.info_dict_size();
|
2022-01-08 20:05:38 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto info_dict_offset() const noexcept
|
2022-01-08 20:05:38 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return metainfo_.info_dict_offset();
|
2021-12-24 21:12:33 +00:00
|
|
|
}
|
|
|
|
|
2022-03-18 21:31:25 +00:00
|
|
|
/// METAINFO - PIECE CHECKSUMS
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] TR_CONSTEXPR20 bool is_piece_checked(tr_piece_index_t piece) const
|
2022-03-18 21:31:25 +00:00
|
|
|
{
|
|
|
|
return checked_pieces_.test(piece);
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] bool check_piece(tr_piece_index_t piece);
|
2021-10-29 18:24:30 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] bool ensure_piece_is_checked(tr_piece_index_t piece);
|
2021-10-29 18:24:30 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void init_checked_pieces(tr_bitfield const& checked, time_t const* mtimes /*fileCount()*/);
|
2021-10-29 18:24:30 +00:00
|
|
|
|
2021-12-15 05:48:56 +00:00
|
|
|
///
|
|
|
|
|
2023-10-21 01:35:59 +00:00
|
|
|
[[nodiscard]] tr_stat stats() const;
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto is_queued() const noexcept
|
2021-12-16 08:49:04 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return this->is_queued_;
|
2021-12-16 08:49:04 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto queue_direction() const noexcept
|
2021-12-15 07:04:26 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return this->is_done() ? TR_UP : TR_DOWN;
|
2021-12-15 07:04:26 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto allows_pex() const noexcept
|
2021-12-15 05:48:56 +00:00
|
|
|
{
|
2023-07-14 15:51:52 +00:00
|
|
|
return this->is_public() && this->session->allows_pex();
|
2021-12-15 05:48:56 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto allows_dht() const noexcept
|
2021-12-15 05:48:56 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return this->is_public() && this->session->allowsDHT();
|
2021-12-15 05:48:56 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto allows_lpd() const noexcept // local peer discovery
|
2021-12-15 05:48:56 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return this->is_public() && this->session->allowsLPD();
|
2021-12-15 05:48:56 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr bool client_can_download() const
|
2021-12-17 04:51:53 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return this->is_piece_transfer_allowed(TR_PEER_TO_CLIENT);
|
2021-12-17 04:51:53 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr bool client_can_upload() const
|
2021-12-17 04:51:53 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return this->is_piece_transfer_allowed(TR_CLIENT_TO_PEER);
|
2021-12-17 04:51:53 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_download_dir(std::string_view path, bool is_new_torrent = false);
|
2022-04-15 23:39:04 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void refresh_current_dir();
|
2022-04-15 23:39:04 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr std::optional<float> verify_progress() const noexcept
|
2022-04-25 03:43:26 +00:00
|
|
|
{
|
2023-10-19 13:39:34 +00:00
|
|
|
if (verify_state_ == VerifyState::Active)
|
2022-04-25 03:43:26 +00:00
|
|
|
{
|
|
|
|
return verify_progress_;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-07-05 00:47:51 +00:00
|
|
|
[[nodiscard]] constexpr auto id() const noexcept
|
2022-06-17 15:43:04 +00:00
|
|
|
{
|
|
|
|
return unique_id_;
|
|
|
|
}
|
|
|
|
|
2023-10-21 02:23:14 +00:00
|
|
|
void init_id(tr_torrent_id_t id)
|
|
|
|
{
|
|
|
|
TR_ASSERT(unique_id_ == tr_torrent_id_t{});
|
|
|
|
TR_ASSERT(id != tr_torrent_id_t{});
|
|
|
|
unique_id_ = id;
|
|
|
|
}
|
|
|
|
|
2023-10-22 03:23:08 +00:00
|
|
|
constexpr void set_date_active(time_t when) noexcept
|
2022-08-31 22:33:51 +00:00
|
|
|
{
|
2023-10-22 03:23:08 +00:00
|
|
|
this->activityDate = when;
|
2022-08-31 22:33:51 +00:00
|
|
|
|
2023-10-22 03:23:08 +00:00
|
|
|
bump_date_changed(when);
|
2022-08-31 22:33:51 +00:00
|
|
|
}
|
2021-12-16 09:43:51 +00:00
|
|
|
|
2022-11-22 20:00:09 +00:00
|
|
|
[[nodiscard]] constexpr auto activity() const noexcept
|
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
bool const is_seed = this->is_done();
|
2022-11-22 20:00:09 +00:00
|
|
|
|
2023-10-19 13:39:34 +00:00
|
|
|
if (verify_state_ == VerifyState::Active)
|
2022-11-22 20:00:09 +00:00
|
|
|
{
|
|
|
|
return TR_STATUS_CHECK;
|
|
|
|
}
|
|
|
|
|
2023-10-19 13:39:34 +00:00
|
|
|
if (verify_state_ == VerifyState::Queued)
|
2022-11-22 20:00:09 +00:00
|
|
|
{
|
|
|
|
return TR_STATUS_CHECK_WAIT;
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
if (this->is_running())
|
2022-11-22 20:00:09 +00:00
|
|
|
{
|
|
|
|
return is_seed ? TR_STATUS_SEED : TR_STATUS_DOWNLOAD;
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
if (this->is_queued())
|
2022-11-22 20:00:09 +00:00
|
|
|
{
|
|
|
|
if (is_seed && this->session->queueEnabled(TR_UP))
|
|
|
|
{
|
|
|
|
return TR_STATUS_SEED_WAIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_seed && this->session->queueEnabled(TR_DOWN))
|
|
|
|
{
|
|
|
|
return TR_STATUS_DOWNLOAD_WAIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TR_STATUS_STOPPED;
|
|
|
|
}
|
|
|
|
|
2023-10-23 22:11:28 +00:00
|
|
|
[[nodiscard]] constexpr auto const& labels() const noexcept
|
|
|
|
{
|
|
|
|
return labels_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_labels(labels_t const& new_labels);
|
2022-04-18 05:53:48 +00:00
|
|
|
|
2021-12-16 09:43:51 +00:00
|
|
|
/** Return the mime-type (e.g. "audio/x-flac") that matches more of the
|
|
|
|
torrent's content than any other mime-type. */
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] std::string_view primary_mime_type() const;
|
2021-12-16 09:43:51 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
constexpr void set_sequential_download(bool is_sequential) noexcept
|
2023-04-14 16:47:54 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
sequential_download_ = is_sequential;
|
2023-04-14 16:47:54 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto is_sequential_download() const noexcept
|
2023-04-14 16:47:54 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return sequential_download_;
|
2023-04-14 16:47:54 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr bool is_running() const noexcept
|
2022-04-28 13:44:24 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return is_running_;
|
2022-04-28 13:44:24 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto is_stopping() const noexcept
|
|
|
|
{
|
|
|
|
return is_stopping_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto is_dirty() const noexcept
|
|
|
|
{
|
|
|
|
return is_dirty_;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr void set_dirty(bool dirty = true) noexcept
|
|
|
|
{
|
|
|
|
is_dirty_ = dirty;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mark_edited();
|
|
|
|
void mark_changed();
|
2022-04-28 13:44:24 +00:00
|
|
|
|
2023-10-22 03:23:08 +00:00
|
|
|
[[nodiscard]] constexpr auto has_changed_since(time_t when) const noexcept
|
|
|
|
{
|
|
|
|
return changed_date_ > when;
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_bandwidth_group(std::string_view group_name) noexcept;
|
2022-04-28 13:44:24 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto get_priority() const noexcept
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
return bandwidth().get_priority();
|
2022-11-03 23:08:02 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto const& bandwidth_group() const noexcept
|
2022-04-28 13:44:24 +00:00
|
|
|
{
|
|
|
|
return bandwidth_group_;
|
|
|
|
}
|
|
|
|
|
2023-10-04 01:18:55 +00:00
|
|
|
[[nodiscard]] constexpr auto peer_limit() const noexcept
|
|
|
|
{
|
|
|
|
return max_connected_peers_;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- idleness
|
|
|
|
|
|
|
|
void set_idle_limit_mode(tr_idlelimit mode) noexcept
|
|
|
|
{
|
|
|
|
auto const is_valid = mode == TR_IDLELIMIT_GLOBAL || mode == TR_IDLELIMIT_SINGLE || mode == TR_IDLELIMIT_UNLIMITED;
|
|
|
|
TR_ASSERT(is_valid);
|
|
|
|
if (idle_limit_mode_ != mode && is_valid)
|
|
|
|
{
|
|
|
|
idle_limit_mode_ = mode;
|
|
|
|
set_dirty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto idle_limit_mode() const noexcept
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
|
|
|
return idle_limit_mode_;
|
|
|
|
}
|
|
|
|
|
2023-10-04 01:18:55 +00:00
|
|
|
constexpr void set_idle_limit_minutes(uint16_t idle_minutes) noexcept
|
|
|
|
{
|
|
|
|
if ((idle_limit_minutes_ != idle_minutes) && (idle_minutes > 0))
|
|
|
|
{
|
|
|
|
idle_limit_minutes_ = idle_minutes;
|
|
|
|
set_dirty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto idle_limit_minutes() const noexcept
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
|
|
|
return idle_limit_minutes_;
|
|
|
|
}
|
|
|
|
|
2023-10-04 01:18:55 +00:00
|
|
|
[[nodiscard]] constexpr std::optional<size_t> idle_seconds_left(time_t now) const noexcept
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-10-04 01:18:55 +00:00
|
|
|
auto const idle_limit_minutes = effective_idle_limit_minutes();
|
|
|
|
if (!idle_limit_minutes)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
auto const idle_seconds = this->idle_seconds(now);
|
|
|
|
if (!idle_seconds)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
auto const idle_limit_seconds = size_t{ *idle_limit_minutes } * 60U;
|
|
|
|
return idle_limit_seconds > *idle_seconds ? idle_limit_seconds - *idle_seconds : 0U;
|
2022-11-03 23:08:02 +00:00
|
|
|
}
|
|
|
|
|
2023-10-04 01:18:55 +00:00
|
|
|
// --- seed ratio
|
|
|
|
|
|
|
|
constexpr void set_seed_ratio_mode(tr_ratiolimit mode) noexcept
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-10-04 01:18:55 +00:00
|
|
|
auto const is_valid = mode == TR_RATIOLIMIT_GLOBAL || mode == TR_RATIOLIMIT_SINGLE || mode == TR_RATIOLIMIT_UNLIMITED;
|
|
|
|
TR_ASSERT(is_valid);
|
|
|
|
if (seed_ratio_mode_ != mode && is_valid)
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-10-04 01:18:55 +00:00
|
|
|
seed_ratio_mode_ = mode;
|
2023-04-23 01:25:55 +00:00
|
|
|
set_dirty();
|
2022-11-03 23:08:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-04 01:18:55 +00:00
|
|
|
[[nodiscard]] constexpr auto seed_ratio_mode() const noexcept
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-10-04 01:18:55 +00:00
|
|
|
return seed_ratio_mode_;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr void set_seed_ratio(double desired_ratio)
|
|
|
|
{
|
|
|
|
if (static_cast<int>(seed_ratio_ * 100.0) != static_cast<int>(desired_ratio * 100.0))
|
2022-11-03 23:08:02 +00:00
|
|
|
{
|
2023-10-04 01:18:55 +00:00
|
|
|
seed_ratio_ = desired_ratio;
|
2023-04-23 01:25:55 +00:00
|
|
|
set_dirty();
|
2022-11-03 23:08:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-04 01:18:55 +00:00
|
|
|
[[nodiscard]] auto seed_ratio() const noexcept
|
|
|
|
{
|
|
|
|
return seed_ratio_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr std::optional<double> effective_seed_ratio() const noexcept
|
|
|
|
{
|
|
|
|
auto const mode = seed_ratio_mode();
|
|
|
|
|
|
|
|
if (mode == TR_RATIOLIMIT_SINGLE)
|
|
|
|
{
|
|
|
|
return seed_ratio_;
|
|
|
|
}
|
|
|
|
|
2023-10-04 21:33:04 +00:00
|
|
|
if (mode == TR_RATIOLIMIT_GLOBAL && session->isRatioLimited())
|
2023-10-04 01:18:55 +00:00
|
|
|
{
|
|
|
|
return session->desiredRatio();
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto seconds_downloading(time_t now) const noexcept
|
2022-12-19 04:59:58 +00:00
|
|
|
{
|
|
|
|
auto n_secs = seconds_downloading_before_current_start_;
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
if (is_running())
|
2022-12-19 04:59:58 +00:00
|
|
|
{
|
|
|
|
if (doneDate > startDate)
|
|
|
|
{
|
|
|
|
n_secs += doneDate - startDate;
|
|
|
|
}
|
|
|
|
else if (doneDate == 0)
|
|
|
|
{
|
|
|
|
n_secs += now - startDate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return n_secs;
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr auto seconds_seeding(time_t now) const noexcept
|
2022-12-19 04:59:58 +00:00
|
|
|
{
|
|
|
|
auto n_secs = seconds_seeding_before_current_start_;
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
if (is_running())
|
2022-12-19 04:59:58 +00:00
|
|
|
{
|
|
|
|
if (doneDate > startDate)
|
|
|
|
{
|
|
|
|
n_secs += now - doneDate;
|
|
|
|
}
|
|
|
|
else if (doneDate != 0)
|
|
|
|
{
|
|
|
|
n_secs += now - startDate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return n_secs;
|
|
|
|
}
|
|
|
|
|
2022-12-21 23:21:28 +00:00
|
|
|
constexpr void set_needs_completeness_check() noexcept
|
|
|
|
{
|
|
|
|
needs_completeness_check_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void do_idle_work()
|
|
|
|
{
|
|
|
|
if (needs_completeness_check_)
|
|
|
|
{
|
|
|
|
needs_completeness_check_ = false;
|
2023-04-23 01:25:55 +00:00
|
|
|
recheck_completeness();
|
2022-12-21 23:21:28 +00:00
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
if (is_stopping_)
|
2022-12-21 23:21:28 +00:00
|
|
|
{
|
|
|
|
tr_torrentStop(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-01 19:22:50 +00:00
|
|
|
[[nodiscard]] constexpr auto announce_key() const noexcept
|
|
|
|
{
|
|
|
|
return announce_key_;
|
|
|
|
}
|
|
|
|
|
2023-03-16 01:53:48 +00:00
|
|
|
[[nodiscard]] constexpr tr_peer_id_t const& peer_id() const noexcept
|
|
|
|
{
|
|
|
|
return peer_id_;
|
|
|
|
}
|
|
|
|
|
2023-01-22 17:53:08 +00:00
|
|
|
// should be called when done modifying the torrent's announce list.
|
|
|
|
void on_announce_list_changed()
|
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
mark_edited();
|
2023-01-22 17:53:08 +00:00
|
|
|
session->announcer_->resetTorrent(this);
|
|
|
|
}
|
|
|
|
|
2023-10-09 02:33:34 +00:00
|
|
|
[[nodiscard]] constexpr auto& error() noexcept
|
|
|
|
{
|
|
|
|
return error_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto const& error() const noexcept
|
|
|
|
{
|
|
|
|
return error_;
|
|
|
|
}
|
|
|
|
|
2023-10-21 18:21:05 +00:00
|
|
|
void init(tr_ctor const* ctor);
|
|
|
|
|
2022-01-15 19:33:57 +00:00
|
|
|
tr_torrent_metainfo metainfo_;
|
2021-11-25 18:26:51 +00:00
|
|
|
|
2022-06-29 20:08:58 +00:00
|
|
|
tr_bandwidth bandwidth_;
|
2022-04-28 13:44:24 +00:00
|
|
|
|
2023-07-04 20:47:18 +00:00
|
|
|
libtransmission::SimpleObservable<tr_torrent*, bool /*because_downloaded_last_piece*/> done_;
|
|
|
|
libtransmission::SimpleObservable<tr_torrent*, tr_piece_index_t> got_bad_piece_;
|
|
|
|
libtransmission::SimpleObservable<tr_torrent*, tr_piece_index_t> piece_completed_;
|
|
|
|
libtransmission::SimpleObservable<tr_torrent*> doomed_;
|
|
|
|
libtransmission::SimpleObservable<tr_torrent*> got_metainfo_;
|
|
|
|
libtransmission::SimpleObservable<tr_torrent*> started_;
|
|
|
|
libtransmission::SimpleObservable<tr_torrent*> stopped_;
|
|
|
|
libtransmission::SimpleObservable<tr_torrent*> swarm_is_all_seeds_;
|
|
|
|
|
2021-11-25 18:26:51 +00:00
|
|
|
// TODO(ckerr): make private once some of torrent.cc's `tr_torrentFoo()` methods are member functions
|
|
|
|
tr_completion completion;
|
|
|
|
|
2022-04-28 16:52:07 +00:00
|
|
|
// true iff the piece was verified more recently than any of the piece's
|
|
|
|
// files' mtimes (file_mtimes_). If checked_pieces_.test(piece) is false,
|
|
|
|
// it means that piece needs to be checked before its data is used.
|
|
|
|
tr_bitfield checked_pieces_ = tr_bitfield{ 0 };
|
|
|
|
|
2022-04-28 13:44:24 +00:00
|
|
|
tr_file_piece_map fpm_ = tr_file_piece_map{ metainfo_ };
|
2021-10-29 18:24:30 +00:00
|
|
|
|
2022-04-28 13:44:24 +00:00
|
|
|
// when Transmission thinks the torrent's files were last changed
|
|
|
|
std::vector<time_t> file_mtimes_;
|
2021-11-25 18:26:51 +00:00
|
|
|
|
2023-10-05 02:38:14 +00:00
|
|
|
// Where the files are when the torrent is complete.
|
|
|
|
tr_interned_string download_dir_;
|
2008-12-04 05:27:59 +00:00
|
|
|
|
2023-10-05 02:38:14 +00:00
|
|
|
// Where the files are when the torrent is incomplete.
|
|
|
|
// a value of TR_KEY_NONE indicates the 'incomplete_dir' feature is unused
|
|
|
|
tr_interned_string incomplete_dir_;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2023-10-05 02:38:14 +00:00
|
|
|
// Where the files are now.
|
|
|
|
// Will equal either download_dir or incomplete_dir
|
|
|
|
tr_interned_string current_dir_;
|
|
|
|
|
|
|
|
tr_sha1_digest_t obfuscated_hash = {};
|
2021-11-25 18:26:51 +00:00
|
|
|
|
2022-04-28 13:44:24 +00:00
|
|
|
/* Used when the torrent has been created with a magnet link
|
|
|
|
* and we're in the process of downloading the metainfo from
|
|
|
|
* other peers */
|
2023-10-05 02:38:14 +00:00
|
|
|
std::unique_ptr<tr_incomplete_metadata> incomplete_metadata;
|
|
|
|
|
|
|
|
tr_session* session = nullptr;
|
|
|
|
|
|
|
|
tr_torrent_announcer* torrent_announcer = nullptr;
|
|
|
|
|
|
|
|
tr_swarm* swarm = nullptr;
|
2009-10-19 05:05:00 +00:00
|
|
|
|
2021-11-25 18:26:51 +00:00
|
|
|
time_t lpdAnnounceAt = 0;
|
2007-12-25 05:37:32 +00:00
|
|
|
|
2022-04-28 13:44:24 +00:00
|
|
|
time_t activityDate = 0;
|
|
|
|
time_t addedDate = 0;
|
|
|
|
time_t doneDate = 0;
|
|
|
|
time_t editDate = 0;
|
|
|
|
time_t startDate = 0;
|
|
|
|
|
2022-12-19 04:59:58 +00:00
|
|
|
time_t seconds_downloading_before_current_start_ = 0;
|
|
|
|
time_t seconds_seeding_before_current_start_ = 0;
|
|
|
|
|
2021-11-25 18:26:51 +00:00
|
|
|
uint64_t downloadedCur = 0;
|
|
|
|
uint64_t downloadedPrev = 0;
|
|
|
|
uint64_t uploadedCur = 0;
|
|
|
|
uint64_t uploadedPrev = 0;
|
|
|
|
uint64_t corruptCur = 0;
|
2021-11-26 00:14:25 +00:00
|
|
|
uint64_t corruptPrev = 0;
|
2010-12-12 16:43:19 +00:00
|
|
|
|
2022-10-25 16:14:42 +00:00
|
|
|
size_t queuePosition = 0;
|
2007-12-25 05:37:32 +00:00
|
|
|
|
2022-04-28 13:44:24 +00:00
|
|
|
tr_completeness completeness = TR_LEECH;
|
2011-08-01 22:24:24 +00:00
|
|
|
|
2022-11-03 23:08:02 +00:00
|
|
|
uint16_t max_connected_peers_ = TR_DEFAULT_PEER_LIMIT_TORRENT;
|
2022-04-28 13:44:24 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
bool finished_seeding_by_idle_ = false;
|
2009-02-13 18:23:56 +00:00
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
bool is_deleting_ = false;
|
|
|
|
bool is_dirty_ = false;
|
|
|
|
bool is_queued_ = false;
|
|
|
|
bool is_running_ = false;
|
|
|
|
bool is_stopping_ = false;
|
2010-07-16 03:12:57 +00:00
|
|
|
|
2023-02-13 18:33:33 +00:00
|
|
|
// start the torrent after all the startup scaffolding is done,
|
|
|
|
// e.g. fetching metadata from peers and/or verifying the torrent
|
|
|
|
bool start_when_stable = false;
|
2011-08-03 03:14:57 +00:00
|
|
|
|
2021-11-12 16:42:51 +00:00
|
|
|
private:
|
2023-10-21 18:21:05 +00:00
|
|
|
friend tr_file_view tr_torrentFile(tr_torrent const* tor, tr_file_index_t file);
|
2023-10-04 21:33:04 +00:00
|
|
|
friend tr_stat const* tr_torrentStat(tr_torrent* tor);
|
2023-10-19 13:39:34 +00:00
|
|
|
friend tr_torrent* tr_torrentNew(tr_ctor* ctor, tr_torrent** setme_duplicate_of);
|
2023-10-21 18:21:05 +00:00
|
|
|
friend uint64_t tr_torrentGetBytesLeftToAllocate(tr_torrent const* tor);
|
2023-10-19 13:39:34 +00:00
|
|
|
|
|
|
|
enum class VerifyState : uint8_t
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Queued,
|
|
|
|
Active
|
|
|
|
};
|
2023-10-04 21:33:04 +00:00
|
|
|
|
2023-10-09 02:33:34 +00:00
|
|
|
// Tracks a torrent's error state, either local (e.g. file IO errors)
|
|
|
|
// or tracker errors (e.g. warnings returned by a tracker).
|
|
|
|
class Error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
[[nodiscard]] constexpr auto empty() const noexcept
|
|
|
|
{
|
|
|
|
return error_type_ == TR_STAT_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto error_type() const noexcept
|
|
|
|
{
|
|
|
|
return error_type_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto const& announce_url() const noexcept
|
|
|
|
{
|
|
|
|
return announce_url_;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr auto const& errmsg() const noexcept
|
|
|
|
{
|
|
|
|
return errmsg_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_tracker_warning(tr_interned_string announce_url, std::string_view errmsg);
|
|
|
|
void set_tracker_error(tr_interned_string announce_url, std::string_view errmsg);
|
|
|
|
void set_local_error(std::string_view errmsg);
|
|
|
|
|
|
|
|
void clear() noexcept;
|
|
|
|
void clear_if_tracker() noexcept;
|
|
|
|
|
|
|
|
private:
|
|
|
|
tr_interned_string announce_url_; // the source for tracker errors/warnings
|
|
|
|
std::string errmsg_;
|
|
|
|
tr_stat_errtype error_type_ = TR_STAT_OK;
|
|
|
|
};
|
|
|
|
|
2023-10-04 22:40:46 +00:00
|
|
|
// Helper class to smooth out speed estimates.
|
|
|
|
// Used to prevent temporary speed changes from skewing the ETA too much.
|
|
|
|
class SimpleSmoothedSpeed
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
constexpr auto update(uint64_t time_msec, tr_bytes_per_second_t speed_byps)
|
|
|
|
{
|
|
|
|
// If the old speed is too old, just replace it
|
|
|
|
if (timestamp_msec_ + MaxAgeMSec <= time_msec)
|
|
|
|
{
|
|
|
|
timestamp_msec_ = time_msec;
|
|
|
|
speed_byps_ = speed_byps;
|
|
|
|
}
|
|
|
|
|
|
|
|
// To prevent the smoothing from being overwhelmed by frequent calls
|
|
|
|
// to update(), do nothing if not enough time elapsed since last update.
|
|
|
|
else if (timestamp_msec_ + MinUpdateMSec <= time_msec)
|
|
|
|
{
|
|
|
|
timestamp_msec_ = time_msec;
|
|
|
|
speed_byps_ = (speed_byps_ * 4U + speed_byps) / 5U;
|
|
|
|
}
|
|
|
|
|
|
|
|
return speed_byps_;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
static auto constexpr MaxAgeMSec = 4000U;
|
|
|
|
static auto constexpr MinUpdateMSec = 800U;
|
|
|
|
|
|
|
|
uint64_t timestamp_msec_ = {};
|
|
|
|
tr_bytes_per_second_t speed_byps_ = {};
|
|
|
|
};
|
|
|
|
|
2023-10-04 01:18:55 +00:00
|
|
|
[[nodiscard]] constexpr std::optional<uint16_t> effective_idle_limit_minutes() const noexcept
|
|
|
|
{
|
|
|
|
auto const mode = idle_limit_mode();
|
|
|
|
|
|
|
|
if (mode == TR_IDLELIMIT_SINGLE)
|
|
|
|
{
|
|
|
|
return idle_limit_minutes();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode == TR_IDLELIMIT_GLOBAL && session->isIdleLimited())
|
|
|
|
{
|
|
|
|
return session->idleLimitMinutes();
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] constexpr std::optional<size_t> idle_seconds(time_t now) const noexcept
|
|
|
|
{
|
|
|
|
auto const activity = this->activity();
|
|
|
|
|
|
|
|
if (activity == TR_STATUS_DOWNLOAD || activity == TR_STATUS_SEED)
|
|
|
|
{
|
|
|
|
if (auto const latest = std::max(startDate, activityDate); latest != 0)
|
|
|
|
{
|
|
|
|
TR_ASSERT(now >= latest);
|
|
|
|
return now - latest;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
[[nodiscard]] constexpr bool is_piece_transfer_allowed(tr_direction direction) const noexcept
|
2023-01-02 17:34:36 +00:00
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
if (uses_speed_limit(direction) && speed_limit_bps(direction) <= 0)
|
2023-01-02 17:34:36 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
if (uses_session_limits())
|
2023-01-02 17:34:36 +00:00
|
|
|
{
|
|
|
|
if (auto const limit = session->activeSpeedLimitBps(direction); limit && *limit == 0U)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-04-23 01:25:55 +00:00
|
|
|
void set_files_wanted(tr_file_index_t const* files, size_t n_files, bool wanted, bool is_bootstrapping)
|
2021-11-29 01:12:54 +00:00
|
|
|
{
|
|
|
|
auto const lock = unique_lock();
|
|
|
|
|
|
|
|
files_wanted_.set(files, n_files, wanted);
|
2023-04-23 01:25:55 +00:00
|
|
|
completion.invalidate_size_when_done();
|
2021-11-29 01:12:54 +00:00
|
|
|
|
|
|
|
if (!is_bootstrapping)
|
|
|
|
{
|
2023-04-23 01:25:55 +00:00
|
|
|
set_dirty();
|
|
|
|
recheck_completeness();
|
2021-11-29 01:12:54 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-21 23:21:28 +00:00
|
|
|
|
2023-10-22 03:23:08 +00:00
|
|
|
constexpr void bump_date_changed(time_t when)
|
|
|
|
{
|
|
|
|
if (changed_date_ < when)
|
|
|
|
{
|
|
|
|
changed_date_ = when;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-19 13:39:34 +00:00
|
|
|
void set_verify_state(VerifyState state);
|
|
|
|
|
2023-10-21 18:21:05 +00:00
|
|
|
void on_metainfo_updated();
|
|
|
|
|
2023-10-21 01:35:59 +00:00
|
|
|
tr_stat stats_ = {};
|
|
|
|
|
2023-10-09 02:33:34 +00:00
|
|
|
Error error_;
|
|
|
|
|
2023-10-19 13:39:34 +00:00
|
|
|
VerifyDoneCallback verify_done_callback_;
|
|
|
|
|
2023-10-23 22:11:28 +00:00
|
|
|
labels_t labels_;
|
|
|
|
|
2023-10-05 02:38:14 +00:00
|
|
|
tr_interned_string bandwidth_group_;
|
|
|
|
|
2023-10-21 01:35:59 +00:00
|
|
|
mutable SimpleSmoothedSpeed eta_speed_;
|
2023-10-04 22:40:46 +00:00
|
|
|
|
2023-10-21 18:21:05 +00:00
|
|
|
tr_files_wanted files_wanted_{ &fpm_ };
|
|
|
|
tr_file_priorities file_priorities_{ &fpm_ };
|
|
|
|
|
2023-03-16 01:53:48 +00:00
|
|
|
/* If the initiator of the connection receives a handshake in which the
|
|
|
|
* peer_id does not match the expected peerid, then the initiator is
|
|
|
|
* expected to drop the connection. Note that the initiator presumably
|
|
|
|
* received the peer information from the tracker, which includes the
|
|
|
|
* peer_id that was registered by the peer. The peer_id from the tracker
|
|
|
|
* and in the handshake are expected to match.
|
|
|
|
*/
|
|
|
|
tr_peer_id_t peer_id_ = tr_peerIdInit();
|
|
|
|
|
2023-10-22 03:23:08 +00:00
|
|
|
time_t changed_date_ = 0;
|
|
|
|
|
2023-10-04 01:18:55 +00:00
|
|
|
float verify_progress_ = -1.0F;
|
|
|
|
float seed_ratio_ = 0.0F;
|
|
|
|
|
2023-01-01 19:22:50 +00:00
|
|
|
tr_announce_key_t announce_key_ = tr_rand_obj<tr_announce_key_t>();
|
|
|
|
|
2023-10-21 02:23:14 +00:00
|
|
|
tr_torrent_id_t unique_id_ = 0;
|
|
|
|
|
2023-10-04 01:18:55 +00:00
|
|
|
tr_ratiolimit seed_ratio_mode_ = TR_RATIOLIMIT_GLOBAL;
|
|
|
|
|
|
|
|
tr_idlelimit idle_limit_mode_ = TR_IDLELIMIT_GLOBAL;
|
|
|
|
|
2023-10-19 13:39:34 +00:00
|
|
|
VerifyState verify_state_ = VerifyState::None;
|
2023-10-05 02:38:14 +00:00
|
|
|
|
|
|
|
uint16_t idle_limit_minutes_ = 0;
|
|
|
|
|
2022-12-21 23:21:28 +00:00
|
|
|
bool needs_completeness_check_ = true;
|
2023-04-14 16:47:54 +00:00
|
|
|
|
|
|
|
bool sequential_download_ = false;
|
2007-12-25 05:37:32 +00:00
|
|
|
};
|
|
|
|
|
2023-01-22 19:21:30 +00:00
|
|
|
// ---
|
2009-01-30 00:41:08 +00:00
|
|
|
|
2021-10-06 22:24:04 +00:00
|
|
|
constexpr bool tr_isTorrent(tr_torrent const* tor)
|
2009-01-30 00:41:08 +00:00
|
|
|
{
|
2022-08-14 14:16:08 +00:00
|
|
|
return tor != nullptr && tor->session != nullptr;
|
2009-01-30 00:41:08 +00:00
|
|
|
}
|
|
|
|
|
2009-10-19 05:05:00 +00:00
|
|
|
/**
|
2023-01-23 16:26:11 +00:00
|
|
|
* Tell the `tr_torrent` that it's gotten a block
|
2009-10-19 05:05:00 +00:00
|
|
|
*/
|
2023-01-28 23:58:20 +00:00
|
|
|
void tr_torrentGotBlock(tr_torrent* tor, tr_block_index_t block);
|
2009-10-19 05:05:00 +00:00
|
|
|
|
2022-04-01 20:28:55 +00:00
|
|
|
tr_torrent_metainfo tr_ctorStealMetainfo(tr_ctor* ctor);
|
2022-01-15 19:33:57 +00:00
|
|
|
|
2022-06-11 20:46:40 +00:00
|
|
|
bool tr_ctorSetMetainfoFromFile(tr_ctor* ctor, std::string_view filename, tr_error** error = nullptr);
|
2022-08-03 06:15:37 +00:00
|
|
|
bool tr_ctorSetMetainfoFromMagnetLink(tr_ctor* ctor, std::string_view magnet_link, tr_error** error = nullptr);
|
2023-10-23 22:11:28 +00:00
|
|
|
void tr_ctorSetLabels(tr_ctor* ctor, tr_torrent::labels_t&& labels);
|
2022-08-29 00:04:29 +00:00
|
|
|
void tr_ctorSetBandwidthPriority(tr_ctor* ctor, tr_priority_t priority);
|
|
|
|
tr_priority_t tr_ctorGetBandwidthPriority(tr_ctor const* ctor);
|
2022-04-18 05:53:48 +00:00
|
|
|
tr_torrent::labels_t const& tr_ctorGetLabels(tr_ctor const* ctor);
|
2022-03-11 21:09:22 +00:00
|
|
|
|
2023-10-19 13:39:34 +00:00
|
|
|
void tr_ctorSetVerifyDoneCallback(tr_ctor* ctor, tr_torrent::VerifyDoneCallback&& callback);
|
|
|
|
tr_torrent::VerifyDoneCallback tr_ctorStealVerifyDoneCallback(tr_ctor* ctor);
|
2022-09-06 04:43:59 +00:00
|
|
|
|
2022-03-17 22:39:06 +00:00
|
|
|
#define tr_logAddCriticalTor(tor, msg) tr_logAddCritical(msg, (tor)->name())
|
|
|
|
#define tr_logAddErrorTor(tor, msg) tr_logAddError(msg, (tor)->name())
|
|
|
|
#define tr_logAddWarnTor(tor, msg) tr_logAddWarn(msg, (tor)->name())
|
|
|
|
#define tr_logAddInfoTor(tor, msg) tr_logAddInfo(msg, (tor)->name())
|
|
|
|
#define tr_logAddDebugTor(tor, msg) tr_logAddDebug(msg, (tor)->name())
|
|
|
|
#define tr_logAddTraceTor(tor, msg) tr_logAddTrace(msg, (tor)->name())
|