summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Naming/Persistent_Naming_Context_Factory.cpp
blob: 994acadbd167f5479323d2068af9511207082949 (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
#include "orbsvcs/Naming/Persistent_Naming_Context_Factory.h"
#include "orbsvcs/Naming/Persistent_Naming_Context.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

/// Constructor.
TAO_Persistent_Naming_Context_Factory::TAO_Persistent_Naming_Context_Factory (void)
{

}

/// Destructor.  Does not deallocate the hash map: if an instance of
/// this class goes out of scope, its hash_map remains in persistent storage.
TAO_Persistent_Naming_Context_Factory::~TAO_Persistent_Naming_Context_Factory (void)
{
}


/// Factory method for creating an implementation object for naming contexts
TAO_Persistent_Naming_Context*
TAO_Persistent_Naming_Context_Factory::create_naming_context_impl (
       PortableServer::POA_ptr poa,
       const char *poa_id,
       TAO_Persistent_Context_Index *context_index,
       HASH_MAP * map,
       ACE_UINT32 *counter)
{
  // Construct the naming context, forwarding the map and counter even if they
  // are defaulted
#if defined (ACE_HAS_NEW_NOTHROW)
  return new (ACE_nothrow) TAO_Persistent_Naming_Context (poa,
                                                          poa_id,
                                                          context_index,
                                                          map,
                                                          counter);
#else
  return new TAO_Persistent_Naming_Context (poa,
                                            poa_id,
                                            context_index,
                                            map,
                                            counter);

#endif /* ACE_HAS_NEW_NOTHROW */
}

TAO_END_VERSIONED_NAMESPACE_DECL