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
|
// $Id$
// ============================================================================
//
// = LIBRARY
// tests
//
// = FILENAME
// Reactor_Timer_Test.cpp
//
// = DESCRIPTION
// This is a simple test that illustrates the timer mechanism of
// the reactor. Scheduling timers, handling expired timers and
// cancelling scheduled timers are all tested in this test. No
// command line arguments are needed to run the test.
//
// = AUTHOR
// Prashant Jain and Doug C. Schmidt
//
// ============================================================================
#include "ace/Timer_Queue.h"
#include "ace/Reactor.h"
#include "test_config.h"
static int done = 0;
static int count = 0;
static int odd = 0;
class Time_Handler : public ACE_Event_Handler
{
public:
virtual int handle_timeout (const ACE_Time_Value &tv,
const void *arg)
{
int current_count = int (arg);
ACE_ASSERT (current_count == count);
ACE_DEBUG ((LM_DEBUG, "%d: Timer #%d timed out at %d!\n",
count, current_count, tv.sec ()));
count += (1 + odd);
if (current_count == ACE_MAX_TIMERS - 1)
done = 1;
return 0;
}
};
int
main (int, char *[])
{
ACE_START_TEST ("Reactor_Timer_Test");
ACE_Reactor reactor;
Time_Handler rt[ACE_MAX_TIMERS];
int t_id[ACE_MAX_TIMERS];
int i;
for (i = 0; i < ACE_MAX_TIMERS; i++)
t_id[i] = reactor.schedule_timer (&rt[i],
(const void *) i,
ACE_Time_Value (2 * i + 1));
while (!done)
reactor.handle_events ();
done = 0;
count = 0;
// Now try multiple timers for ONE event handler (should produce the
// same result).
for (i = 0; i < ACE_MAX_TIMERS; i++)
t_id[i] = reactor.schedule_timer (&rt[0],
(const void *) i,
ACE_Time_Value (2 * i + 1));
while (!done)
reactor.handle_events ();
done = 0;
count = 1;
odd = 1;
for (i = 0; i < ACE_MAX_TIMERS; i++)
{
t_id[i] = reactor.schedule_timer (&rt[0],
(const void *) i,
ACE_Time_Value (2 * i + 1));
// Cancel even numbered timers.
if (ACE_EVEN (i))
reactor.cancel_timer (t_id[i]);
}
while (!done)
reactor.handle_events ();
ACE_END_TEST;
return 0;
}
|