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
|
// $Id$
#include "ace/Service_Object.h"
#if !defined (__ACE_INLINE__)
#include "ace/Service_Object.inl"
#endif /* __ACE_INLINE__ */
#include "ace/Service_Types.h"
#include "ace/DLL.h"
#include "ace/ACE.h"
#include "ace/config-all.h"
ACE_RCSID (ace,
Service_Object,
"$Id$")
ACE_ALLOC_HOOK_DEFINE(ACE_Service_Object)
ACE_ALLOC_HOOK_DEFINE(ACE_Service_Type)
void
ACE_Service_Type::dump (void) const
{
#if defined (ACE_HAS_DUMP)
ACE_TRACE ("ACE_Service_Type::dump");
#endif /* ACE_HAS_DUMP */
}
ACE_Service_Type::ACE_Service_Type (const ACE_TCHAR *n,
ACE_Service_Type_Impl *t,
const ACE_DLL &dll,
int active)
: name_ (0),
type_ (t),
dll_ (dll),
active_ (active),
fini_already_called_ (0)
{
ACE_TRACE ("ACE_Service_Type::ACE_Service_Type");
this->name (n);
}
ACE_Service_Type::ACE_Service_Type (const ACE_TCHAR *n,
ACE_Service_Type_Impl *t,
ACE_SHLIB_HANDLE handle,
int active)
: name_ (0),
type_ (t),
active_ (active),
fini_already_called_ (0)
{
ACE_TRACE ("ACE_Service_Type::ACE_Service_Type");
ACE_DLL &dll = const_cast<ACE_DLL &> (this->dll_);
dll.set_handle (handle);
this->name (n);
}
ACE_Service_Type::~ACE_Service_Type (void)
{
ACE_TRACE ("ACE_Service_Type::~ACE_Service_Type");
this->fini ();
delete [] (ACE_TCHAR *) this->name_;
}
int
ACE_Service_Type::fini (void)
{
if (!this->fini_already_called_)
{
this->fini_already_called_ = 1;
return this->type_->fini ();
}
return 0;
}
int
ACE_Service_Type::suspend (void) const
{
ACE_TRACE ("ACE_Service_Type::suspend");
(const_cast<ACE_Service_Type *> (this))->active_ = 0;
return this->type_->suspend ();
}
int
ACE_Service_Type::resume (void) const
{
ACE_TRACE ("ACE_Service_Type::resume");
(const_cast<ACE_Service_Type *> (this))->active_ = 1;
return this->type_->resume ();
}
ACE_Service_Object::ACE_Service_Object (ACE_Reactor *r)
: ACE_Event_Handler (r)
{
ACE_TRACE ("ACE_Service_Object::ACE_Service_Object");
}
ACE_Service_Object::~ACE_Service_Object (void)
{
ACE_TRACE ("ACE_Service_Object::~ACE_Service_Object");
}
int
ACE_Service_Object::suspend (void)
{
ACE_TRACE ("ACE_Service_Object::suspend");
return 0;
}
int
ACE_Service_Object::resume (void)
{
ACE_TRACE ("ACE_Service_Object::resume");
return 0;
}
void
ACE_Service_Type::name (const ACE_TCHAR *n)
{
ACE_TRACE ("ACE_Service_Type::name");
delete [] (ACE_TCHAR *) this->name_;
this->name_ = ACE::strnew (n);
}
|