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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
/***************************************************************************
* Copyright © 2007 by Krzysztof Kundzicz *
* athantor@gmail.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., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef StatsPlugin_H_
#define StatsPlugin_H_
#include <kgenericfactory.h>
#include <tqwidget.h>
#include <tqtimer.h>
#include <interfaces/plugin.h>
#include <interfaces/guiinterface.h>
#include <interfaces/coreinterface.h>
#include <torrent/globals.h>
#include <kademlia/dhtbase.h>
#include <torrent/queuemanager.h>
#include <torrent/torrentcontrol.h>
#include <torrent/peermanager.h>
#include <torrent/peer.h>
#include "StatsSpd.h"
#include "StatsCon.h"
#include "StatsPluginPrefs.h"
#include "statspluginsettings.h"
#include <map> // std::pair
namespace kt {
/**
\brief Statistics plugin
\author Krzysztof Kundzicz <athantor@gmail.com>
\version 200705191548
*/
class StatsPlugin : public Plugin
{
Q_OBJECT
TQ_OBJECT
private:
///Speed UI of the plugin
StatsSpd * pmUiSpd;
///Connections UI of the plugin
StatsCon * pmUiCon;
///UI of the pref page
StatsPluginPrefs * pmPrefsUi;
/**
\brief Average upload speed data
\li \c first: Total speed
\li \c second: Measurements count
*/
std::pair<long double, long double> mUpAvg;
/**
\brief Average download speed data
\li \c first: Total speed
\li \c second: Measurements count
*/
std::pair<long double, long double> mDownAvg;
/**
\brief Leechers stats
\li \c first: connected
\li \c second: swarm
*/
std::pair<uint32_t, uint32_t> mLeechAvg;
/**
\brief Leechers stats on running torrents
\li \c first: connected
\li \c second: swarm
*/
std::pair<uint32_t, uint32_t> mRunningLeechAvg;
/**
\brief Seeders stats
\li \c first: connected
\li \c second: swarm
*/
std::pair<uint32_t, uint32_t> mSeedAvg;
/**
\brief Seeders stats on running torrents
\li \c first: connected
\li \c second: swarm
*/
std::pair<uint32_t, uint32_t> mRunningSeedAvg;
///Data update timer
TQTimer * pmUpdTmr;
///Update ctr
uint32_t mUpdCtr;
uint32_t mPeerSpdUpdCtr;
private slots:
///Updates stat data
void UpdateData();
/**
\brief Restarts timer
Restarts timer when the interval of data gathering has been changed
*/
void RestartTimer();
///Toggles peers speed chart
void TogglePeersSpdCht();
///Toggles drawing of total leechers in swarms
void ToggleLchInSwmDrawing();
///Toggles drawing of total seeders in swarms
void ToggleSdrInSwmDrawing();
///Changes measurements counts
void ChangeMsmtsCounts();
///Changes OY max mode
void ChangeMaxMode();
public:
/**
\brief Constructor
\param parent Parent
\param qt_name
\param args
*/
StatsPlugin(TQObject* parent, const char* qt_name, const TQStringList& args);
///Destructor
virtual ~StatsPlugin();
virtual void load();
virtual void unload();
virtual bool versionCheck(const TQString&) const;
virtual void guiUpdate();
};
}
#endif
|