summaryrefslogtreecommitdiffstats
path: root/src/kvirc/kernel/kvi_lagmeter.h
blob: da8b076db660c7971a97c4b1657ea89b5a0f17e9 (plain)
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
#ifndef _KVI_LAGMETER_H_
#define _KVI_LAGMETER_H_
//=============================================================================
//
//   File : kvi_lagmeter.h
//   Creation date : Fri Oct 18 13:30:26 CEST 2002 by Juanjo Álvarez
//
//   This file is part of the KVirc irc client distribution
//   Copyright (C) 1999-2002 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 opinion) 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 "kvi_settings.h"
#include "kvi_string.h"
#include "kvi_pointerlist.h"

#include <tqobject.h>

class KviIrcConnection;

class KviLagCheck
{
public:
	KviStr szKey;
	long   lSecs;  // since epoch
	long   lUSecs;
	unsigned int    uReliability; // [0-100]
};

class KVIRC_API KviLagMeter : public TQObject
{
	Q_OBJECT
  TQ_OBJECT
	friend class KviIrcConnection;
protected:
	KviLagMeter(KviIrcConnection * c);
	~KviLagMeter();
protected:
	KviIrcConnection        * m_pConnection;
	unsigned int              m_uLag;                // last computed lag
	unsigned int              m_uLastEmittedLag;     // last emitted lag
	long                      m_tLastCompleted;      // time when the last lag was completed (gettimeofday!)
	unsigned int              m_uLastReliability;    // how much reliable was the last completed check ?
	KviPointerList<KviLagCheck> * m_pCheckList;
	long                      m_tFirstOwnCheck;      // time when the first ping after a completed check was sent
	long                      m_tLastOwnCheck;       // time when the last ping was sent
	bool                      m_bOnAlarm;
	bool                    * m_pDeletionSignal;     // we use this to signal our own delete
public:
	// lag checks should be done only against the user's server
	// please make SURE that the key is unique!
	void lagCheckRegister(const char * key,unsigned int uReliability = 50);
	bool lagCheckComplete(const char * key);
	void lagCheckAbort(const char * key);
	unsigned int lag(){ return m_uLag; };
	unsigned int secondsSinceLastCompleted();
protected:
	virtual void timerEvent(TQTimerEvent * e);
};

#endif // _KVI_LAGMETER_H_