summaryrefslogtreecommitdiff
path: root/TAO/tao/RTPortableServer/RT_Object_Adapter_Factory.cpp
blob: 881a41c1baea122f4db3921cf027ac5c7cdc3d8a (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
// $Id$

#include "RT_Object_Adapter_Factory.h"
#include "RT_POA_Initializer.h"
#include "tao/PortableServer/Object_Adapter.h"
#include "tao/ORB_Core.h"

ACE_RCSID (TAO_RTPortableServer,
           RT_Object_Adapter_Factory,
           "$Id$")


TAO_RT_Object_Adapter_Factory::TAO_RT_Object_Adapter_Factory (void)
{
}

TAO_Adapter*
TAO_RT_Object_Adapter_Factory::create (TAO_ORB_Core *orb_core)
{
  // Register the RT_POA initializer so that it can register all of its
  // hooks when the time comes.
  TAO_RT_POA_Initializer *rt_initializer;
  ACE_NEW_RETURN (rt_initializer,
                  TAO_RT_POA_Initializer,
                  0);
  orb_core->add_poa_extension_initializer (rt_initializer);

  // Setup the POA_Current object in the ORB
  CORBA::Object_var current = new TAO_POA_Current;
  orb_core->poa_current (current.in ());

  return new TAO_Object_Adapter (orb_core->server_factory ()->
                                        active_object_map_creation_parameters (),
                                 *orb_core);
}

ACE_FACTORY_DEFINE (TAO_RTPortableServer, TAO_RT_Object_Adapter_Factory)
ACE_STATIC_SVC_DEFINE (TAO_RT_Object_Adapter_Factory,
                       ACE_TEXT ("TAO_RT_POA"),
                       ACE_SVC_OBJ_T,
                       &ACE_SVC_NAME (TAO_RT_Object_Adapter_Factory),
                       ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
                       0)