summaryrefslogtreecommitdiff
path: root/CIAO/ciao/Containers/Swapping/Dynamic_Component_Activator.cpp
blob: e25fbe1a9e4f2d03c4b6cd8e31285c19ba310413 (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
#include "ciao/Containers/Swapping/Dynamic_Component_Activator.h"
#include "ciao/Servants/Swapping/Dynamic_Component_Servant_Base.h"
#include "ciao/Logger/Log_Macros.h"

ACE_RCSID (ciao,
           Dynamic_Component_Activator,
           "$Id$")

#if !defined (__ACE_INLINE__)
# include "Dynamic_Component_Activator.inl"
#endif /* __ACE_INLINE__ */

namespace CIAO
{
  Dynamic_Component_Activator::Dynamic_Component_Activator (CORBA::ORB_ptr o)
    : orb_ (CORBA::ORB::_duplicate (o))
  {
  }

  Dynamic_Component_Activator::~Dynamic_Component_Activator (void)
  {
  }

  PortableServer::Servant
  Dynamic_Component_Activator::incarnate (const PortableServer::ObjectId &oid,
                                          PortableServer::POA_ptr)
  {
    Dynamic_Component_Servant_Base* servant = 0;
    PortableServer::ObjectId new_oid (oid);

    if (this->servant_map_.find (oid, servant) == 0)
      {
        return servant->create (new_oid);
      }

    return 0;
  }

  void
  Dynamic_Component_Activator::etherealize (
    const PortableServer::ObjectId &,
    PortableServer::POA_ptr,
    PortableServer::Servant,
    CORBA::Boolean,
    CORBA::Boolean)
  {
  }
}