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
|
// $Id$
#include "ace/Dynamic_Service.h"
#include "Kokyu.h"
#include "Default_Dispatcher_Impl.h"
#if ! defined (__ACE_INLINE__)
#include "Kokyu.i"
#endif /* __ACE_INLINE__ */
ACE_RCSID(Kokyu, Dispatcher_Impl, "$Id$")
namespace Kokyu
{
int Dispatcher::dispatch (const Dispatch_Command* cmd, const QoSDescriptor& qos)
{
return dispatcher_impl_->dispatch (cmd, qos);
}
int Dispatcher::shutdown ()
{
return dispatcher_impl_->shutdown ();
}
void Dispatcher::implementation (Dispatcher_Impl* impl)
{
auto_ptr<Dispatcher_Impl> tmp_impl (impl);
dispatcher_impl_ = tmp_impl;
//I couldn't use reset because MSVC++ auto_ptr does not have reset method.
//So in configurations where the auto_ptr maps to the std::auto_ptr instead
//of ACE auto_ptr, this would be a problem.
//dispatcher_impl_.reset (impl);
}
Dispatcher*
Dispatcher_Factory::
create_dispatcher (const ConfigInfoSet& config_info_set)
{
Dispatcher_Impl* tmp;
ACE_NEW_RETURN (tmp, Default_Dispatcher_Impl, (Dispatcher*)0);
Dispatcher* disp;
ACE_NEW_RETURN (disp, Dispatcher, (Dispatcher*)0);
disp->implementation (tmp);
tmp->init (config_info_set);
return disp;
}
void
DSRT_Dispatcher::implementation (DSRT_Dispatcher_Impl* impl)
{
dispatcher_impl_ = impl;
}
int
DSRT_Dispatcher::schedule (guid_t guid, const DSRT_QoSDescriptor& qos)
{
return dispatcher_impl_->schedule (guid, qos);
}
int
DSRT_Dispatcher::update_schedule (guid_t guid, const DSRT_QoSDescriptor& qos)
{
return dispatcher_impl_->update_schedule (guid, qos);
}
int
DSRT_Dispatcher::cancel_schedule (guid_t guid, const DSRT_QoSDescriptor& qos)
{
return dispatcher_impl_->cancel_schedule (guid, qos);
}
DSRT_Dispatcher*
Dispatcher_Factory::
create_DSRT_dispatcher (const DSRT_ConfigInfo& config_info)
{
ACE_UNUSED_ARG ((config_info));
DSRT_Dispatcher_Impl* tmp;
//DSRT_Dispatcher_Impl::init_svcs ();
ACE_Service_Config::open ("Kokyu", ACE_DEFAULT_LOGGER_KEY, 0);
//tmp =
// ACE_Dynamic_Service<DSRT_Dispatcher_Impl>::instance ("DSRT_Dispatcher_Impl");
ACE_NEW_RETURN (tmp, DSRT_Dispatcher_Impl, (DSRT_Dispatcher*) 0);
ACE_ASSERT (tmp != 0);
DSRT_Dispatcher* disp;
ACE_NEW_RETURN (disp, DSRT_Dispatcher, (DSRT_Dispatcher*)0);
disp->implementation (tmp);
tmp->init (config_info);
return disp;
}
}
|