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
|
#include "ORT_test_IORInterceptor.h"
#include "ObjectReferenceFactory.h"
#include "tao/ORB_Constants.h"
ACE_RCSID (ORT,
ORT_test_IORInterceptor,
"$Id$")
ORT_test_IORInterceptor::ORT_test_IORInterceptor (void)
: establish_count_ (0),
components_establish_count_ (0)
{
}
char *
ORT_test_IORInterceptor::name (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
return CORBA::string_dup ("ORT_IORInterceptor");
}
void
ORT_test_IORInterceptor::destroy (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_ASSERT (this->establish_count_ > 0
&& this->components_establish_count_ > 0
&& this->establish_count_ == this->components_establish_count_);
}
void
ORT_test_IORInterceptor::establish_components (
PortableInterceptor::IORInfo_ptr /* info */)
ACE_THROW_SPEC ((CORBA::SystemException))
{
++this->establish_count_;
ACE_DEBUG ((LM_DEBUG,
"establish_components() has been invoked %d times\n",
this->establish_count_));
}
void
ORT_test_IORInterceptor::components_established (
PortableInterceptor::IORInfo_ptr info)
ACE_THROW_SPEC ((CORBA::SystemException))
{
++this->components_establish_count_;
ACE_DEBUG ((LM_DEBUG,
"components_established() has been invoked %d times\n",
this->establish_count_));
// Swap out the current ObjectReferenceFactory with our own.
// Save a copy of the current ObjectReferenceFactory.
PortableInterceptor::ObjectReferenceFactory_var old_orf =
info->current_factory ();
PortableInterceptor::ObjectReferenceFactory * tmp;
ACE_NEW_THROW_EX (tmp,
ObjectReferenceFactory (old_orf.in ()),
CORBA::NO_MEMORY (
CORBA::SystemException::_tao_minor_code (
TAO::VMCID,
ENOMEM),
CORBA::COMPLETED_NO));
PortableInterceptor::ObjectReferenceFactory_var orf = tmp;
info->current_factory (orf.in ());
}
void
ORT_test_IORInterceptor::adapter_manager_state_changed (
const char * id,
PortableInterceptor::AdapterState)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"The AdapterManager [id=%s] state has changed.\n", id));
}
void
ORT_test_IORInterceptor:: adapter_state_changed (
const PortableInterceptor::ObjectReferenceTemplateSeq &,
PortableInterceptor::AdapterState)
ACE_THROW_SPEC ((CORBA::SystemException))
{
}
|