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
|
// ============================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// default_client.cpp
//
// = AUTHOR
// Chris Cleeland
//
// = VERSION
// $Id$
// ============================================================================
#define ACE_BUILD_SVC_DLL
#if 0
#include "default_client.h"
#endif /* 0 */
#include "tao/corba.h"
TAO_Default_Client_Strategy_Factory::TAO_Default_Client_Strategy_Factory (void)
{
// When should I do this open ()? It seems like this is way too
// early, but doing it in the accessor for connector () seems like
// it would be too late as well.
// @@ Chris, a couple of thoughts:
// 1. What is wrong with doing it here, in general?
// 2. We should make sure not to use ACE_Reactor::instance() since
// it makes our ORB too tightly coupled to having just 1 reactor!
// I think it's clear now that we'll have one Reactor "per-ORB"
// and we may have multiple ORBs per process (e.g., consider the
// "real-time rate-based ORB" we discussed the other day).
connector_.open (ACE_Reactor::instance (),
&null_creation_strategy_,
&caching_connect_strategy_,
#if defined (TAO_HAS_CLIENT_CONCURRENCY)
concurrency_strategy_ ()
#else
0
#endif /* TAO_HAS_CLIENT_CONCURRENCY */
);
}
TAO_Default_Client_Strategy_Factory::~TAO_Default_Client_Strategy_Factory (void)
{}
int
TAO_Default_Client_Strategy_Factory::init (int argc, char *argv[])
{
return this->parse_args (argc, argv);
}
TAO_Client_Strategy_Factory::CONNECTOR *
TAO_Default_Client_Strategy_Factory::connector (void)
{
return &this->connector_;
}
int
TAO_Default_Client_Strategy_Factory::parse_args (int argc, char *argv[])
{
// no args to parse at this time
return 0;
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Cached_Connect_Strategy<TAO_Client_Connection_Handler, ACE_SOCK_CONNECTOR, ACE_SYNCH_RW_MUTEX>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Cached_Connect_Strategy<TAO_Client_Connection_Handler, ACE_SOCK_CONNECTOR, ACE_SYNCH_RW_MUTEX>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
ACE_SVC_FACTORY_DEFINE (TAO_Default_Client_Strategy_Factory)
|