summaryrefslogtreecommitdiff
path: root/comm/TimeOut.h
blob: f3ca5b49093142adbeb4f8505e6c8dac5e2ded12 (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
/*
 *	Ivy League
 *
 *	Scheduler-based timers
 *
 *	Copyright 1993-2000
 *	Centre d'Etudes de la Navigation Aerienne (CENA)
 *
 *	code by Stephane Chatty
 *
 *	$Id$
 *
 */

#ifndef IvlTimeOut_H_
#define IvlTimeOut_H_

#include "ivl/Timer.h"
#include "Scheduler.h"

class IvlBaseTimeOut : public IvlCoreTimer {
friend	class	IvlBaseScheduler;

protected:
	IvlBaseScheduler*	MyScd;
	void	SetAlarm (Millisecond);
	void	StopAlarm ();

public:	
		IvlBaseTimeOut (Millisecond, int = -1, IvlBaseScheduler* = IvlScd);
		~IvlBaseTimeOut ();
};

class IvlTimeOut : public IvlBaseTimeOut {
protected:
	void	(*Handler) (Millisecond);
	void	Handle (Millisecond);

public:
		IvlTimeOut (Millisecond, void (*) (Millisecond), int = -1, IvlBaseScheduler* = IvlScd);
		~IvlTimeOut ();
inline	void	SetHandler (void (*h) (Millisecond))	{ Handler = h; }
};

#define SpecializedTimeOut(R,S) \
class R : public IvlBaseTimeOut { \
protected: \
	S&	Object; \
	void	(S::*Handler)	(Millisecond); \
public: \
		R (Millisecond t, S& s, void (S::*sc) (Millisecond), int nb = -1, IvlBaseScheduler* m = IvlScd) : IvlBaseTimeOut (t, nb, m), Object (s), Handler (sc)	{} \
		~R ()	{} \
	void	Handle (Millisecond t)	{ (Object.*Handler) (t); } \
inline	void	SetHandler (void (S::*h) (Millisecond))	{ Handler = h; } \
};

template <class T> class IvlTimeOutFor : public IvlBaseTimeOut {
protected:
	T&	Object;
	void	(T::*Handler) (Millisecond);

	void	Handle (Millisecond ref) { (Object.*Handler) (ref); }

public:
		IvlTimeOutFor (Millisecond t, T& o, void (T::*h) (Millisecond), int nb = -1, IvlBaseScheduler* m = IvlScd) : IvlBaseTimeOut (t, nb, m), Object (o), Handler (h) {}
		~IvlTimeOutFor ()	{}
inline	void	SetHandler (void(T::*h)(Millisecond))	{ Handler = h; }
};

#endif	/* IvlTimeOut_H_ */