2023-02-11 20:49:42 +00:00
|
|
|
// This file Copyright © 2021-2023 Transmission authors and contributors.
|
2022-01-20 18:27:56 +00:00
|
|
|
// This file is licensed under the MIT (SPDX: MIT) license,
|
|
|
|
// A copy of this license can be found in licenses/ .
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2022-12-29 02:42:20 +00:00
|
|
|
#include "GtkCompat.h"
|
2022-12-26 21:13:21 +00:00
|
|
|
#include "Torrent.h"
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2007-07-18 23:04:26 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
2021-12-14 08:43:27 +00:00
|
|
|
#include <libtransmission/tr-macros.h>
|
2012-12-14 04:34:42 +00:00
|
|
|
#include <libtransmission/variant.h>
|
2011-03-03 01:59:25 +00:00
|
|
|
|
2022-12-27 01:43:20 +00:00
|
|
|
#include <giomm/file.h>
|
|
|
|
#include <giomm/listmodel.h>
|
|
|
|
#include <glibmm/object.h>
|
|
|
|
#include <glibmm/refptr.h>
|
|
|
|
#include <glibmm/ustring.h>
|
|
|
|
#include <gtkmm/treemodel.h>
|
2022-12-26 21:13:21 +00:00
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <unordered_set>
|
|
|
|
#include <vector>
|
2022-12-21 21:26:25 +00:00
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
class Session : public Glib::Object
|
2007-05-23 00:49:31 +00:00
|
|
|
{
|
2021-10-18 20:22:31 +00:00
|
|
|
public:
|
|
|
|
enum ErrorCode
|
|
|
|
{
|
|
|
|
ERR_ADD_TORRENT_ERR = TR_PARSE_ERR,
|
|
|
|
ERR_ADD_TORRENT_DUP = TR_PARSE_DUPLICATE,
|
|
|
|
ERR_NO_MORE_TORRENTS = 1000 /* finished adding a batch */
|
|
|
|
};
|
2010-06-26 15:55:19 +00:00
|
|
|
|
2022-12-21 21:26:25 +00:00
|
|
|
using Model = IF_GTKMM4(Gio::ListModel, Gtk::TreeModel);
|
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
public:
|
2021-11-01 00:11:23 +00:00
|
|
|
~Session() override;
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2021-12-14 08:43:27 +00:00
|
|
|
TR_DISABLE_COPY_MOVE(Session)
|
|
|
|
|
2022-07-22 05:52:48 +00:00
|
|
|
static Glib::RefPtr<Session> create(tr_session* session);
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
tr_session* close();
|
2010-06-26 15:55:19 +00:00
|
|
|
|
2022-12-21 21:26:25 +00:00
|
|
|
Glib::RefPtr<Gio::ListModel> get_model() const;
|
|
|
|
Glib::RefPtr<Model> get_sorted_model() const;
|
2010-06-26 15:55:19 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
void clear();
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
tr_session* get_session() const;
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
size_t get_active_torrent_count() const;
|
2008-04-17 20:35:18 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
size_t get_torrent_count() const;
|
2011-03-03 01:59:25 +00:00
|
|
|
|
2022-06-17 15:43:04 +00:00
|
|
|
tr_torrent* find_torrent(tr_torrent_id_t id) const;
|
2007-05-23 00:49:31 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/******
|
|
|
|
*******
|
|
|
|
******/
|
2011-02-01 01:45:41 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/**
|
|
|
|
* Load saved state and return number of torrents added.
|
|
|
|
* May trigger one or more "error" signals with ERR_ADD_TORRENT
|
|
|
|
*/
|
2022-11-09 16:58:36 +00:00
|
|
|
void load(bool force_paused);
|
2007-05-23 01:47:42 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/**
|
|
|
|
* Add a list of torrents.
|
|
|
|
* This function assumes ownership of torrentFiles
|
|
|
|
*
|
|
|
|
* May pop up dialogs for each torrent if that preference is enabled.
|
|
|
|
* May trigger one or more "error" signals with ERR_ADD_TORRENT
|
|
|
|
*/
|
|
|
|
void add_files(std::vector<Glib::RefPtr<Gio::File>> const& files, bool do_start, bool do_prompt, bool do_notify);
|
2010-04-29 23:08:11 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/** @brief Add a torrent from a URL */
|
|
|
|
bool add_from_url(Glib::ustring const& url);
|
2010-04-29 23:08:11 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/** @brief Add a torrent.
|
|
|
|
@param ctor this function assumes ownership of the ctor */
|
|
|
|
void add_ctor(tr_ctor* ctor);
|
2011-03-04 05:58:32 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/** Add a torrent. */
|
2022-12-21 21:26:25 +00:00
|
|
|
void add_torrent(Glib::RefPtr<Torrent> const& torrent, bool do_notify);
|
2009-06-11 14:51:21 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/**
|
|
|
|
* Notifies listeners that torrents have been added.
|
|
|
|
* This should be called after one or more tr_core_add* () calls.
|
|
|
|
*/
|
|
|
|
void torrents_added();
|
2009-11-22 16:20:22 +00:00
|
|
|
|
2022-06-17 15:43:04 +00:00
|
|
|
void torrent_changed(tr_torrent_id_t id);
|
2009-09-17 01:28:45 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/******
|
|
|
|
*******
|
|
|
|
******/
|
2008-05-18 16:44:30 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/* remove a torrent */
|
2022-06-17 15:43:04 +00:00
|
|
|
void remove_torrent(tr_torrent_id_t id, bool delete_files);
|
2008-02-13 03:00:21 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/* update the model with current torrent status */
|
|
|
|
void update();
|
2017-02-21 20:18:52 +00:00
|
|
|
|
2021-11-08 17:21:20 +00:00
|
|
|
/**
|
|
|
|
* Attempts to start a torrent immediately.
|
|
|
|
*/
|
2022-06-17 15:43:04 +00:00
|
|
|
void start_now(tr_torrent_id_t id);
|
2021-11-08 17:21:20 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/**
|
|
|
|
*** Set a preference value, save the prefs file, and emit the "prefs-changed" signal
|
|
|
|
**/
|
2007-05-23 01:47:42 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
void set_pref(tr_quark key, std::string const& val);
|
|
|
|
void set_pref(tr_quark key, bool val);
|
|
|
|
void set_pref(tr_quark key, int val);
|
|
|
|
void set_pref(tr_quark key, double val);
|
2008-02-19 03:57:03 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
/**
|
|
|
|
***
|
|
|
|
**/
|
2007-05-23 02:45:28 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
void port_test();
|
2009-04-07 20:13:08 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
void blocklist_update();
|
2009-04-07 20:13:08 +00:00
|
|
|
|
2022-11-09 16:58:36 +00:00
|
|
|
void exec(tr_variant const* request);
|
2009-04-07 20:13:08 +00:00
|
|
|
|
2022-11-09 16:58:36 +00:00
|
|
|
void open_folder(tr_torrent_id_t torrent_id) const;
|
2010-03-14 05:13:02 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
sigc::signal<void(ErrorCode, Glib::ustring const&)>& signal_add_error();
|
|
|
|
sigc::signal<void(tr_ctor*)>& signal_add_prompt();
|
2022-12-17 23:12:25 +00:00
|
|
|
sigc::signal<void(bool)>& signal_blocklist_updated();
|
2021-10-18 20:22:31 +00:00
|
|
|
sigc::signal<void(bool)>& signal_busy();
|
|
|
|
sigc::signal<void(tr_quark)>& signal_prefs_changed();
|
|
|
|
sigc::signal<void(bool)>& signal_port_tested();
|
2022-12-21 21:26:25 +00:00
|
|
|
sigc::signal<void(std::unordered_set<tr_torrent_id_t> const&, Torrent::ChangeFlags)>& signal_torrents_changed();
|
2009-04-07 20:13:08 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
protected:
|
2022-07-22 05:52:48 +00:00
|
|
|
explicit Session(tr_session* session);
|
2009-04-24 01:37:04 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
private:
|
|
|
|
class Impl;
|
|
|
|
std::unique_ptr<Impl> const impl_;
|
|
|
|
};
|