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
|
#include "UIOP_Lite_Factory.h"
#if TAO_HAS_UIOP == 1
#include "UIOP_Acceptor.h"
#include "UIOP_Connector.h"
#include "tao/ORB_Constants.h"
#include "ace/Dynamic_Service.h"
#include "ace/OS_NS_strings.h"
ACE_RCSID (Strategies,
UIOP_Lite_Factory,
"$Id$")
static const char prefix_[] = "uiop";
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_UIOP_Lite_Protocol_Factory::TAO_UIOP_Lite_Protocol_Factory (void)
: TAO_Protocol_Factory (TAO_TAG_UIOP_PROFILE),
major_ (TAO_DEF_GIOP_MAJOR),
minor_ (TAO_DEF_GIOP_MINOR)
{
}
TAO_UIOP_Lite_Protocol_Factory::~TAO_UIOP_Lite_Protocol_Factory (void)
{
}
int
TAO_UIOP_Lite_Protocol_Factory::match_prefix (const ACE_CString &prefix)
{
// Check for the proper prefix for this protocol.
return (ACE_OS::strcasecmp (prefix.c_str (), ::prefix_) == 0);
}
const char *
TAO_UIOP_Lite_Protocol_Factory::prefix (void) const
{
return ::prefix_;
}
char
TAO_UIOP_Lite_Protocol_Factory::options_delimiter (void) const
{
return '|';
}
TAO_Acceptor *
TAO_UIOP_Lite_Protocol_Factory::make_acceptor (void)
{
TAO_Acceptor *acceptor = 0;
// We are Lite factory
CORBA::Boolean lite_factory = 1;
ACE_NEW_RETURN (acceptor,
TAO_UIOP_Acceptor (lite_factory),
0);
return acceptor;
}
int
TAO_UIOP_Lite_Protocol_Factory::init (int /* argc */,
ACE_TCHAR* /* argv */ [])
{
return 0;
}
TAO_Connector *
TAO_UIOP_Lite_Protocol_Factory::make_connector (void)
{
TAO_Connector *connector = 0;
// We are a lite factory
CORBA::Boolean lite_factory = 1;
ACE_NEW_RETURN (connector,
TAO_UIOP_Connector (lite_factory),
0);
return connector;
}
int
TAO_UIOP_Lite_Protocol_Factory::requires_explicit_endpoint (void) const
{
return 1;
}
TAO_END_VERSIONED_NAMESPACE_DECL
ACE_STATIC_SVC_DEFINE (TAO_UIOP_Lite_Protocol_Factory,
ACE_TEXT ("UIOP_Lite_Factory"),
ACE_SVC_OBJ_T,
&ACE_SVC_NAME (TAO_UIOP_Lite_Protocol_Factory),
ACE_Service_Type::DELETE_THIS |
ACE_Service_Type::DELETE_OBJ,
0)
ACE_FACTORY_DEFINE (TAO_Strategies, TAO_UIOP_Lite_Protocol_Factory)
#endif /* TAO_HAS_UIOP == 1 */
|