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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
//=============================================================================
//
// File : libkviiograph.cpp
// Creation date : Tue Oct 31 2000 00:14:12 CEST by Szymon Stefanek
//
// This file is part of the KVIrc IRC client distribution
// Copyright (C) 2000-2010 Szymon Stefanek (pragma at kvirc dot net)
//
// 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 <cmath>
#include "libkviiograph.h"
#include "KviMainWindow.h"
#include "KviIconManager.h"
#include "KviLocale.h"
#include "KviWindowStack.h"
#include "KviModule.h"
#include "KviOptions.h"
#include "kvi_socket.h"
#include <QPainter>
#include <QPaintEvent>
#include <QPainterPath>
#ifdef COMPILE_PSEUDO_TRANSPARENCY
extern KVIRC_API QPixmap * g_pShadedChildGlobalDesktopBackground;
#endif
KviIOGraphWindow * g_pIOGraphWindow = nullptr;
KviIOGraphWindow::KviIOGraphWindow(const char * name)
: KviWindow(KviWindow::IOGraph, name)
{
m_pIOGraph = new KviIOGraphWidget(this);
setAutoFillBackground(false);
}
KviIOGraphWindow::~KviIOGraphWindow()
{
if(m_pIOGraph)
delete m_pIOGraph;
m_pIOGraph = nullptr;
g_pIOGraphWindow = nullptr;
}
QPixmap * KviIOGraphWindow::myIconPtr()
{
return g_pIconManager->getSmallIcon(KviIconManager::SysMonitor);
}
void KviIOGraphWindow::resizeEvent(QResizeEvent *)
{
m_pIOGraph->setGeometry(0, 0, width(), height());
}
void KviIOGraphWindow::fillCaptionBuffers()
{
m_szPlainTextCaption = __tr2qs("I/O Traffic Graph");
}
void KviIOGraphWindow::die()
{
close();
}
void KviIOGraphWindow::updatePseudoTransparency()
{
#ifdef COMPILE_PSEUDO_TRANSPARENCY
update();
#endif
}
void KviIOGraphWindow::moveEvent(QMoveEvent *)
{
#ifdef COMPILE_PSEUDO_TRANSPARENCY
updatePseudoTransparency();
#endif
}
void KviIOGraphWindow::paintEvent(QPaintEvent * e)
{
QPainter p(this);
QRect rect = e->rect();
#ifdef COMPILE_PSEUDO_TRANSPARENCY
if(KVI_OPTION_BOOL(KviOption_boolUseCompositingForTransparency) && g_pApp->supportsCompositing())
{
p.save();
p.setCompositionMode(QPainter::CompositionMode_Source);
QColor col = KVI_OPTION_COLOR(KviOption_colorGlobalTransparencyFade);
col.setAlphaF((float)((float)KVI_OPTION_UINT(KviOption_uintGlobalTransparencyChildFadeFactor) / (float)100));
p.fillRect(rect, col);
p.restore();
}
else if(g_pShadedChildGlobalDesktopBackground)
{
QPoint pnt = isDocked() ? mapTo(g_pMainWindow, rect.topLeft()) : rect.topLeft();
p.drawTiledPixmap(rect, *(g_pShadedChildGlobalDesktopBackground), pnt);
}
else
{
#endif
//FIXME this is not the treewindowlist
p.fillRect(rect, KVI_OPTION_COLOR(KviOption_colorTreeWindowListBackground));
#ifdef COMPILE_PSEUDO_TRANSPARENCY
}
#endif
}
KviIOGraphWidget::KviIOGraphWidget(QWidget * par)
: QWidget(par)
{
m_uLastSentBytes = g_uOutgoingTraffic;
m_uLastRecvBytes = g_uIncomingTraffic;
m_maxRate = 1;
unsigned int iMax = qMax(m_uLastSentBytes, m_uLastRecvBytes);
while(iMax > m_maxRate)
m_maxRate *= 2;
m_sendRates.prepend(0);
m_recvRates.prepend(0);
QString tip("<font color=\"#FF0000\">");
tip.append(__tr("Outgoing traffic"));
tip.append("</font><br/><font color=\"#0000FF\">");
tip.append(__tr("Incoming traffic"));
tip.append("</font>");
this->setToolTip(tip);
startTimer(1000);
}
void KviIOGraphWidget::timerEvent(QTimerEvent *)
{
static int uLastResize = 0;
kvi_u64_t sB = g_uOutgoingTraffic;
kvi_u64_t rB = g_uIncomingTraffic;
unsigned int sDiff = sB > m_uLastSentBytes ? (sB - m_uLastSentBytes) : 0;
unsigned int rDiff = rB > m_uLastRecvBytes ? (rB - m_uLastRecvBytes) : 0;
unsigned int iMax = qMax(sDiff, rDiff);
if(uLastResize == 0)
{
if(m_maxRate > 1)
{
m_maxRate = 1;
for(int i = 0; i < m_sendRates.count(); ++i)
while(m_sendRates.at(i) > m_maxRate)
m_maxRate *= 2;
for(int i = 0; i < m_recvRates.count(); ++i)
while(m_recvRates.at(i) > m_maxRate)
m_maxRate *= 2;
}
}
else
uLastResize--;
if(iMax > m_maxRate)
{
while(iMax > m_maxRate)
m_maxRate *= 2;
uLastResize = KVI_IOGRAPH_NUMBER_POINTS;
}
m_uLastSentBytes = sB;
m_uLastRecvBytes = rB;
m_sendRates.prepend(sDiff);
if(m_sendRates.count() > (KVI_IOGRAPH_NUMBER_POINTS + 1))
m_sendRates.removeLast();
m_recvRates.prepend(rDiff);
if(m_recvRates.count() > (KVI_IOGRAPH_NUMBER_POINTS + 1))
m_recvRates.removeLast();
update();
}
void KviIOGraphWidget::paintEvent(QPaintEvent *)
{
QPainter p(this);
p.setRenderHint(QPainter::Antialiasing);
p.setPen(QColor("#c0c0c0"));
float c = 1.0;
float sw = (width() - 2.0) / KVI_IOGRAPH_VERT_SEGMENTS;
float sh = (height() - 2.0) / KVI_IOGRAPH_HORIZ_SEGMENTS;
for(int i = 0; i <= KVI_IOGRAPH_HORIZ_SEGMENTS; i++)
{
p.drawLine(0, (int)c, width(), (int)c);
if(i > 0)
p.drawText(2, (int)c, KviQString::makeSizeReadable(m_maxRate * (KVI_IOGRAPH_HORIZ_SEGMENTS - i) / KVI_IOGRAPH_HORIZ_SEGMENTS));
c += sh;
}
c = 1;
for(int i = 0; i <= KVI_IOGRAPH_VERT_SEGMENTS; i++)
{
p.drawLine((int)c, 0, (int)c, height());
c += sw;
}
QPainterPath sP, rP;
float wStep = (width() - 2.0) / KVI_IOGRAPH_NUMBER_POINTS;
sP.moveTo(QPointF(width(), height()));
c = 1.0;
for(int i = 0; (i <= (KVI_IOGRAPH_NUMBER_POINTS + 1)) && (i < m_sendRates.count()); i++)
{
sP.lineTo(QPointF(width() - c, height() - (height() * m_sendRates.at(i) / m_maxRate)));
c += wStep;
}
sP.lineTo(QPointF(0, height()));
rP.moveTo(QPointF(width(), height()));
c = 1.0;
for(int i = 0; (i <= (KVI_IOGRAPH_NUMBER_POINTS + 1)) && (i < m_recvRates.count()); i++)
{
rP.lineTo(QPointF(width() - c, height() - (height() * m_recvRates.at(i) / m_maxRate)));
c += wStep;
}
rP.lineTo(QPointF(0, height()));
p.setPen(QColor(0, 0, 255));
p.setBrush(QColor(0, 0, 255, 128));
p.drawPath(rP);
p.setPen(QColor(255, 0, 0));
p.setBrush(QColor(255, 0, 0, 128));
p.drawPath(sP);
}
/*
@doc: iograph.open
@type:
command
@title:
iograph.open
@short:
Opens the I/O Traffic Graph chart
@description:
Opens the I/O Traffic Graph chart. It will
monitor the [i]Incoming and Outgoing[/i] socket traffic.[br]
*/
static bool iograph_module_cmd_open(KviKvsModuleCommandCall * c)
{
QString dummy;
bool bCreateMinimized = c->hasSwitch('m', dummy);
bool bNoRaise = c->hasSwitch('n', dummy);
if(!g_pIOGraphWindow)
{
g_pIOGraphWindow = new KviIOGraphWindow("IOGraph Window");
g_pMainWindow->addWindow(g_pIOGraphWindow, !bCreateMinimized);
return true;
}
if(!bNoRaise)
g_pIOGraphWindow->delayedAutoRaise();
return true;
}
static bool iograph_module_init(KviModule * m)
{
g_pIOGraphWindow = nullptr;
KVSM_REGISTER_SIMPLE_COMMAND(m, "open", iograph_module_cmd_open);
return true;
}
static bool iograph_module_cleanup(KviModule *)
{
if(g_pIOGraphWindow && g_pMainWindow)
g_pMainWindow->closeWindow(g_pIOGraphWindow);
g_pIOGraphWindow = nullptr;
return true;
}
static bool iograph_module_can_unload(KviModule *)
{
return (!g_pIOGraphWindow);
}
KVIRC_MODULE(
"IOGraph", // module name
"4.0.0", // module version
"Copyright (C) 2008 Szymon Stefanek (pragma at kvirc dot net)", // author & (C)
"IRC socket traffic monitor",
iograph_module_init,
iograph_module_can_unload,
0,
iograph_module_cleanup,
0)
|