blob: 2be817fba90c12d2c73d9531562f41794f60e8a1 (
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
76
77
78
79
80
81
82
83
84
85
86
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// tests
//
// = FILENAME
// MT_Reactor_Timer_Test.h
//
// = DESCRIPTION
// This file contains class definitions needed for template
// instantiation in the MT_Reactor_Timer_Test.cpp file.
//
// = AUTHOR
// Steve Huston
//
// ============================================================================
#ifndef __MT_REACTOR_TIMER_TEST_H
#define __MT_REACTOR_TIMER_TEST_H
#include "ace/Reactor.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Task.h"
#include "ace/Pipe.h"
class Time_Handler : public ACE_Task<ACE_SYNCH>
{
// = TITLE
// Test out the multi-threading features of the Reactor's timer
// mechanism.
public:
Time_Handler (void);
void setup (void);
virtual int svc (void);
// Run by a daemon thread to handle deferred processing.
virtual int handle_timeout (const ACE_Time_Value &tv,
const void *arg);
private:
enum
{
TIMER_SLOTS = 10
};
long timer_id_[TIMER_SLOTS];
ACE_Reactor my_reactor_;
};
class Dispatch_Count_Handler : public ACE_Event_Handler
{
// = TITLE
// A simple test to ensure that the Reactor counts the number of
// dispatches correctly.
public:
Dispatch_Count_Handler (void);
int handle_close (ACE_HANDLE h,
ACE_Reactor_Mask m);
// Clean up resources from the Reactor.
virtual int handle_timeout (const ACE_Time_Value &tv,
const void *arg);
// Keep track of the number of timeouts.
virtual int handle_input (ACE_HANDLE);
// Keep track of the number of I/O events.
virtual int handle_exception (ACE_HANDLE);
// Keep track of the number of notifies.
private:
ACE_Pipe pipe_;
// Provide something to trigger I/O.
};
#endif /* __MT_REACTOR_TIMER_TEST_H */
|