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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// Name: OnLineSig Class
///
/// Purpose: Monitor aMule Online Statistics by reading amulesig.dat file
///
/// Author: ThePolish <thepolish@vipmail.ru>
///
/// Copyright (c) 2004-2011 ThePolish ( thepolish@vipmail.ru )
///
/// Derived from CAS by Pedro de Oliveira <falso@rdk.homeip.net>
///
/// Pixmaps from aMule http://www.amule.org
///
/// 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 St, Fifth Floor, Boston, MA 02110-1301, USA
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef _ONLINESIG_H
#define _ONLINESIG_H
#include <wx/filename.h>
#include <wx/datetime.h>
/// amulesig.dat file monitoring
class OnLineSig
{
private:
double m_sessionMaxDL;
wxDateTime m_sessionMaxDLDate;
bool m_isSessionMaxDlChanged;
bool m_isSessionMaxDlReseted;
double m_absoluteMaxDL;
wxDateTime m_absoluteMaxDlDate;
bool m_isAbsoluteMaxDlChanged;
bool m_isAbsoluteMaxDlReseted;
int m_amuleState;
wxString m_serverName;
wxString m_serverIP;
wxString m_serverPort;
wxString m_connexionID;
int m_kadInfo;
wxString m_ULRate;
wxString m_DLRate;
wxString m_queue;
wxString m_sharedFiles;
wxString m_user;
wxString m_totalUL;
wxString m_totalDL;
wxString m_version;
wxString m_sessionUL;
wxString m_sessionDL;
unsigned int m_runTimeS;
wxFileName m_amulesig;
wxString BytesConvertion ( const wxString& bytes );
unsigned int PullCount ( unsigned int *runtime, const unsigned int count );
public:
/// Constructor
OnLineSig ( const wxFileName& file, const double absoluteMaxDL = 0.0,<--- Class 'OnLineSig' has a constructor with 1 argument that is not explicit. [+]Class 'OnLineSig' has a constructor with 1 argument that is not explicit. Such, so called "Converting constructors", should in general be explicit for type safety reasons as that prevents unintended implicit conversions.
const wxDateTime absoluteMaxDlDate = wxDateTime::Now() );
/// Destructor
~OnLineSig ();
/// Set amulesig.dat file name and path
void SetAmuleSig ( const wxFileName& file );
/// Refresh stored information
void Refresh ();
/// Return TRUE if aMule is running
int GetAmuleState () const;
/// Return kad stat
int GetKadState () const;
/// Get server name
wxString GetServerName () const;
/// Get server IP
wxString GetServerIP () const;
/// Get server Port
wxString GetServerPort () const;
/// Get server connexion ID: H or L
wxString GetConnexionID () const;
/// Get Upload rate
wxString GetULRate () const;
/// Get Download rate
wxString GetDLRate () const;
/// Get number of clients in queue
wxString GetQueue () const;
/// Get number of shared files
wxString GetSharedFiles () const;
/// Get user name
wxString GetUser () const;
/// Get total Upload
wxString GetTotalUL () const;
/// Get total Download
wxString GetTotalDL () const;
/// Get aMule version
wxString GetVersion () const;
/// Get session Upload
wxString GetSessionUL () const;
/// Get session Download
wxString GetSessionDL () const;
/// Getrunnin Status
int GetUpStatus () const;
/// Get aMule runtime
wxString GetRunTime ();
/// Get total Upload in the best representative unit
wxString GetConvertedTotalUL ();
/// Get total Download in the best representative unit
wxString GetConvertedTotalDL ();
/// Get session Upload in the best representative unit
wxString GetConvertedSessionUL ();
/// Get session Download in the best representative unit
wxString GetConvertedSessionDL ();
/// Get server connexion ID: LowID or HighID
wxString GetConnexionIDType () const;
/// Get max Download rate since wxCas is running
double GetSessionMaxDL () const;
/// Get max Download date since wxCas is running
wxDateTime GetSessionMaxDlDate () const;
/// Has the Max session DL rate been beated since last refresh
bool IsSessionMaxDlChanged() const;
/// Reset absolute max Download rate and date
void ResetSessionMaxDL ();
/// Get absolute max Download rate
double GetAbsoluteMaxDL () const;
/// Get absolute max Download date
wxDateTime GetAbsoluteMaxDlDate () const;
/// Has the absolute Max session DL rate been beated since last refresh
bool IsAbsoluteMaxDlChanged() const;
/// Reset absolute max Download rate
void ResetAbsoluteMaxDL ();
};
#endif /* _ONLINESIG_H */
// File_checked_for_headers
|