aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/torrent/KTorrentDbusInterface.h
blob: 5cbcc51b6be441320389700f20b787867fc23696 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#ifndef _TC_KTORRENTDCOPINTERFACE_H_
#define _TC_KTORRENTDCOPINTERFACE_H_
//=============================================================================
//
//   DBus interface for KTorrent client.
//
//   File : KTorrentDbusInterface.h
//   Creation date : Mon Nov 17 13:46:00 2008 GMT by Fabio Bas
//
//   This file is part of the KVIrc IRC client distribution
//   Copyright (C) 2008 Fabio Bas (ctrlaltca at gmail dot com)
//
//   This program is FREE software. You can redistribute it and/or
//   modify it under the terms of the GNU General Public License
//   as published by the Free Software Foundation; either version 2
//   of the License, or (at your option) any later version.
//
//   This program is distributed in the HOPE that it will be USEFUL,
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//   See the GNU General Public License for more details.
//
//   You should have received a copy of the GNU General Public License
//   along with this program. If not, write to the Free Software Foundation,
//   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
//=============================================================================

#include "TorrentInterface.h"

#ifdef COMPILE_KDE_SUPPORT

#include <QtDBus/QtDBus>

class KTorrentDbusInterface : public TorrentInterface
{
	Q_OBJECT

public:
	KTorrentDbusInterface();
	~KTorrentDbusInterface();

	int detect() override;

	bool startAll() override;
	bool stopAll() override;

	int count() override;
	bool start(int i) override;
	bool stop(int i) override;
	bool announce(int i) override;
	QString state(int i) override;
	QString name(int i) override;
	int fileCount(int i) override;
	QString fileName(int i, int file) override;
	QString filePriority(int i, int file) override;
	bool setFilePriority(int i, int file, const QString & prio) override;

	int maxUploadSpeed() override;
	int maxDownloadSpeed() override;

	bool setMaxUploadSpeed(int kbytes_per_sec) override;
	bool setMaxDownloadSpeed(int kbytes_per_sec) override;

	float speedUp() override;
	float speedDown() override;

	float trafficUp() override;
	float trafficDown() override;
	/*
	private slots:
		// polls client and extracts information.
		// this is done because the order of torrents returned changes
		// each time a torrent's state changes.
		// we want to present a consistent list (in terms of indices) to
		// the user, so we extract the info and sort it by name.
		// otherwise the user would have a hard time figuring out what's
		// going on. we could sort each time a function working with
		// torrents is called, but this would be horribly slow ...
		void	slotTimer();
	private:
		struct TorrentInfo
		{
			// internal number
			int num;
			// name displayed in ktorrent
			QString name;
			// state of torrent
			QString state;
			// bytes
			float size;
			// bytes
			float trafficUp;
			// bytes
			float trafficDown;
			// KB/s
			float speedUp;
			// KB/s
			float speedDown;
			// percent complete
			float percent;
			// number of peers
			int peers;
			bool operator<(const TorrentInfo &ti) { return name < ti.name; }
		};

		QValueList<TorrentInfo>	m_ti;
*/
private:
	//		bool makeTorrentInfo(TorrentInfo &ti, const KviQCStringList &ret);
	bool findRunningApp();
};

TORR_DECLARE_DESCRIPTOR(KTorrentDbusInterface)

#endif // COMPILE_KDE_SUPPORT

#endif // _TC_KTORRENTDCOPINTERFACE_H_