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
|
//=============================================================================
/**
* @file INS_Locator.cpp
*
* @brief Implementation of the ImR's INS Locator class
*
* @author Darrell Brunsch <brunsch@cs.wustl.edu>
*/
//=============================================================================
#include "INS_Locator.h"
#include "ImR_Locator_i.h"
#include "tao/ORB_Constants.h"
#include "tao/ORB_Core.h"
INS_Locator::INS_Locator (ImR_Locator_i& loc)
: imr_locator_ (loc)
{
}
char *
INS_Locator::locate (const char* object_key)
{
ACE_ASSERT (object_key != 0);
try
{
CORBA::String_var located =
this->imr_locator_.activate_server_by_object (object_key);
return located._retn();
}
catch (const CORBA::Exception &)
{
throw CORBA::TRANSIENT (CORBA::SystemException::_tao_minor_code
(TAO_IMPLREPO_MINOR_CODE, 0),
CORBA::COMPLETED_NO);
}
}
void
INS_Locator::async_locate (::IORTable::Locate_ResponseHandler handler,
const char* object_key)
{
ACE_ASSERT (object_key != 0);
Server_Info_Ptr si;
ACE_CString key;
ACE_CString full (object_key);
if (this->imr_locator_.split_key (full, key, si))
{
ImR_ResponseHandler *rh = 0;
ACE_NEW (rh, INS_Loc_ResponseHandler (key.c_str(), handler));
this->imr_locator_.activate_server_by_info (si, rh);
}
else
{
handler->raise_excep (CORBA::TRANSIENT (CORBA::SystemException::_tao_minor_code
(TAO_IMPLREPO_MINOR_CODE, 0),
CORBA::COMPLETED_NO));
}
}
//----------------------------------------------------------------------------------------
INS_Loc_ResponseHandler::INS_Loc_ResponseHandler (const char *key,
::IORTable::Locate_ResponseHandler handler)
: key_(key),
rh_ (handler)
{
}
void
INS_Loc_ResponseHandler::send_ior (const char *pior)
{
ACE_CString ior = pior;
ior += key_;
rh_->forward_ior (ior.c_str(), false);
delete this;
}
void
INS_Loc_ResponseHandler::send_exception (CORBA::Exception *ex)
{
delete ex;
rh_->raise_excep (CORBA::TRANSIENT (CORBA::SystemException::_tao_minor_code
(TAO_IMPLREPO_MINOR_CODE, 0),
CORBA::COMPLETED_NO));
delete this;
}
|