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
|
#include "tao/ObjRefTemplate/ORT_Adapter_Impl.h"
#include "tao/PortableServer/Root_POA.h"
#include "tao/CORBA_String.h"
#include "tao/ORB_Constants.h"
#include "tao/CORBA_methods.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
char *
TAO::ORT_Adapter_Impl::tao_server_id ()
{
// No need to duplicate, the ort_template_ method has to do the duplicate
return this->ort_template_->server_id ();
}
char *
TAO::ORT_Adapter_Impl::tao_orb_id ()
{
// No need to duplicate, the ort_template_ method has to do the duplicate
return this->ort_template_->orb_id ();
}
PortableInterceptor::AdapterName *
TAO::ORT_Adapter_Impl::tao_adapter_name ()
{
// No need to duplicate, the ort_template_ method has to do the duplicate
return this->ort_template_->adapter_name ();
}
CORBA::Object_ptr
TAO::ORT_Adapter_Impl::make_object (const char *repo_id,
const PortableInterceptor::ObjectId &id)
{
return this->ort_factory_->make_object (repo_id, id);
}
PortableInterceptor::ObjectReferenceTemplate *
TAO::ORT_Adapter_Impl::get_adapter_template ()
{
CORBA::add_ref (this->ort_template_.in ());
return this->ort_template_;
}
PortableInterceptor::ObjectReferenceFactory *
TAO::ORT_Adapter_Impl::get_obj_ref_factory ()
{
CORBA::add_ref (this->ort_factory_.in ());
return this->ort_factory_;
}
int
TAO::ORT_Adapter_Impl::set_obj_ref_factory (
PortableInterceptor::ObjectReferenceFactory *cf)
{
this->ort_factory_ = cf;
CORBA::add_ref (this->ort_factory_.in ());
return 0;
}
void
TAO::ORT_Adapter_Impl::release (
PortableInterceptor::ObjectReferenceTemplate * t)
{
CORBA::remove_ref (t);
}
int
TAO::ORT_Adapter_Impl::activate (
const char *server_id,
const char *orb_id,
PortableInterceptor::AdapterName *adapter_name,
PortableServer::POA_ptr poa)
{
// No need to lock here, there is one instance for each POA and
// when the POA creates and actives an ORT_Adapter it will lock
// itself. Create an ObjectReferenceTemplate for this POA.
ObjectReferenceTemplate * t = 0;
ACE_NEW_THROW_EX (t,
ObjectReferenceTemplate (server_id,
orb_id,
adapter_name,
poa),
CORBA::NO_MEMORY ());
this->ort_template_ = t;
// Must increase ref count since this->ort_factory_ will
// decrease it upon destruction.
CORBA::add_ref (t);
this->ort_factory_ = t;
return 0;
}
TAO_END_VERSIONED_NAMESPACE_DECL
|