blob: 420ece6b765ce5a838b892e2e4dfd84e5bf6619c (
plain)
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
|
// $Id$
#include "ORB_Objects.h"
ACE_RCSID (Notify, TAO_Notify_ORB_Objects, "$Id$")
TAO_Notify_ORB_Objects::TAO_Notify_ORB_Objects (void)
{
}
void
TAO_Notify_ORB_Objects::init (CORBA::ORB_var& orb)
{
this->orb_ = orb;
CORBA::Object_var object = this->orb_->resolve_initial_references("RootPOA");
this->root_poa_ = PortableServer::POA::_narrow (object.in ());
// Resolve the RTORB.
object = this->orb_->resolve_initial_references ("RTORB");
this->rt_orb_ = RTCORBA::RTORB::_narrow (object.in ());
// Resolve the Current
object = this->orb_->resolve_initial_references ("RTCurrent");
this->current_ = RTCORBA::Current::_narrow (object.in ());
// Resolve the Naming service
object = this->orb_->resolve_initial_references ("NameService");
this->naming_ = CosNaming::NamingContextExt::_narrow (object.in ());
}
TAO_Notify_ORB_Objects::~TAO_Notify_ORB_Objects ()
{
}
CosNotifyChannelAdmin::EventChannelFactory_ptr
TAO_Notify_ORB_Objects::notify_factory (void)
{
CosNotifyChannelAdmin::EventChannelFactory_var ecf;
// Look for the Notification Service
CosNaming::Name name (1);
name.length (1);
name[0].id = CORBA::string_dup ("NotifyEventChannelFactory");
CORBA::Object_var object = this->naming_->resolve (name);
ecf = CosNotifyChannelAdmin::EventChannelFactory::_narrow (object.in());
return ecf._retn ();
}
|