- Implementde server process termination from client UI
[qtrapids] / src / server / TorrentSession.hpp
index 6240024..66b6b54 100644 (file)
@@ -16,6 +16,8 @@
 #include <libtorrent/alert_types.hpp>
 #include <libtorrent/error_code.hpp>
 
+#include <utility>
+
 class QSettings;
 
 namespace qtrapids
@@ -26,6 +28,7 @@ typedef QWeakPointer<QSettings> settings_weak_ptr;
 class AlertWaiterThread;
 typedef libtorrent::session session_t;
 typedef libtorrent::session const* session_cptr;
+typedef libtorrent::session_settings session_settings_t;
 
 typedef libtorrent::add_torrent_params add_torrent_params_t;
 typedef libtorrent::alert alert_t;
@@ -35,6 +38,7 @@ typedef libtorrent::libtorrent_exception torrent_exception_t;
 
 typedef QSharedPointer<TorrentHandle> TorrentHandlePtr;
 typedef QHash<QString, TorrentHandlePtr > torrents_t;
+typedef std::pair<int, int> ports_range_t;
 
 class ServerDb;
 class ServerSettings;
@@ -46,26 +50,34 @@ class TorrentSession : public QObject
        Q_CLASSINFO("D-Bus Interface", "com.ixonos.qtrapids");
 
 public:
-
        TorrentSession(QObject *parent, QSettings *);
 
 public slots:
-
        void getState();
        void addTorrent(const QString &path, const QString &save_path
                        , qtrapids::ParamsMap_t other_params);
        void removeTorrent(const QString &hash);
-
+       void setOptions(qtrapids::ParamsMap_t options);
+       qtrapids::ParamsMap_t getOptions();
+       void terminateSession();
+       
 signals:
        void alert(qtrapids::TorrentState info, qtrapids::ParamsMap_t other_info);
-
+       void terminate();
+       
 private slots:
        void on_alert();
 
 private:
+
+       void loadState();
+       void addTorrent_(const QString &, const QString &, const qtrapids::ParamsMap_t &, bool);
+
        session_t btSession_;
        AlertWaiterThread *alertWaiter_;
        torrents_t torrents_;
+       std::auto_ptr<ServerSettings> settings_;
+       std::auto_ptr<ServerDb> db_;
 };
 
 } // namespace qtrapids