mirror of
https://github.com/transmission/transmission
synced 2025-03-13 15:39:01 +00:00
57 lines
1.5 KiB
C
57 lines
1.5 KiB
C
|
// This file Copyright © Mnemosyne LLC.
|
||
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
||
|
// or any future license endorsed by Mnemosyne LLC.
|
||
|
// License text can be found in the licenses/ folder.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifndef __TRANSMISSION__
|
||
|
#error only libtransmission should #include this header.
|
||
|
#endif
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include <string>
|
||
|
#include <string_view>
|
||
|
#include <vector>
|
||
|
|
||
|
#include "libtransmission/transmission.h"
|
||
|
|
||
|
class tr_torrent_queue
|
||
|
{
|
||
|
public:
|
||
|
struct Mediator
|
||
|
{
|
||
|
virtual ~Mediator() = default;
|
||
|
|
||
|
[[nodiscard]] virtual std::string config_dir() const = 0;
|
||
|
[[nodiscard]] virtual std::string store_filename(tr_torrent_id_t id) const = 0;
|
||
|
};
|
||
|
|
||
|
explicit tr_torrent_queue(Mediator const& mediator)
|
||
|
: mediator_{ mediator }
|
||
|
{
|
||
|
}
|
||
|
tr_torrent_queue(tr_torrent_queue const&) = delete;
|
||
|
tr_torrent_queue(tr_torrent_queue&&) = delete;
|
||
|
tr_torrent_queue& operator=(tr_torrent_queue const&) = delete;
|
||
|
tr_torrent_queue& operator=(tr_torrent_queue&&) = delete;
|
||
|
|
||
|
size_t add(tr_torrent_id_t id);
|
||
|
void remove(tr_torrent_id_t id);
|
||
|
|
||
|
[[nodiscard]] size_t get_pos(tr_torrent_id_t id);
|
||
|
void set_pos(tr_torrent_id_t id, size_t new_pos);
|
||
|
|
||
|
bool to_file() const;
|
||
|
[[nodiscard]] std::vector<std::string> from_file();
|
||
|
|
||
|
static auto constexpr MinQueuePosition = size_t{};
|
||
|
static auto constexpr MaxQueuePosition = ~size_t{};
|
||
|
|
||
|
private:
|
||
|
std::vector<tr_torrent_id_t> queue_;
|
||
|
std::vector<size_t> pos_cache_;
|
||
|
|
||
|
Mediator const& mediator_;
|
||
|
};
|