blob: 85540e1a8f471ba2fccc0eb7eb7b31ee5c13a9ce (
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
|
#include "params.hh"
#include "connect.hh"
ROA_Parameters* ROA_Parameters::_instance = 0;
ROA_Factory* ROA_Factory::_instance = 0;
ROA_Parameters::ROA_Parameters()
: using_threads_(0),
thread_flags_(THR_NEW_LWP),
context_p_(0),
upcall_(0),
forwarder_(0),
oa_(0)
{
}
ROA_Parameters*
ROA_Parameters::instance()
{
if (_instance == 0)
{
_instance = new ROA_Parameters;
}
return _instance;
}
ROA_Factory*
ROA_Factory::instance()
{
if (_instance == 0)
{
_instance = new ROA_Factory;
}
return _instance;
}
// Determine the appropriate default thread flags, based on system.
// When I put the concurrency strategy into the factory, then this will
// go away b/c the concurrency strategy will do this appropriate
// for each platform!
# if defined(linux)
# define ROA_DEFAULT_THREADFLAGS (THR_DETACHED)
# elif defined(WIN32)
# define ROA_DEFAULT_THREADFLAGS (THR_DETACHED|THR_SCOPE_PROCESS)
# elif defined(sparc)
# define ROA_DEFAULT_THREADFLAGS (THR_DETACHED|THR_SCOPE_PROCESS)
# else
# define ROA_DEFAULT_THREADFLAGS (THR_DETACHED)
# endif
ROA_Factory::CONCURRENCY_STRATEGY*
ROA_Factory::concurrency_strategy()
{
ROA_Parameters* p = ROA_Parameters::instance();
if (p->using_threads())
{
// Set the strategy parameters
threaded_strategy_.open(ACE_Service_Config::thr_mgr(), ROA_DEFAULT_THREADFLAGS);
concurrency_strategy_ = &threaded_strategy_;
}
else
{
concurrency_strategy_ = 0;
}
}
#if !defined(__ACE_INLINE__)
# include "params.i"
#endif
#if defined(ACE_TEMPLATES_REQUIRE_SPECIALIZATION)
template class ACE_Thread_Strategy<ROA_Handler>;
template class ACE_Concurrency_Strategy<ROA_Handler>;
template class ACE_Creation_Strategy<ROA_Handler>;
template class ACE_Scheduling_Strategy<ROA_Handler>;
template class ACE_Accept_Strategy<ROA_Handler, ACE_SOCK_ACCEPTOR>;
#endif
|