#include <Storable_Naming_Context.h>
Inheritance diagram for TAO_Storable_Naming_Context:
Public Types | |
typedef TAO_Storable_Bindings_Map::HASH_MAP | HASH_MAP |
Underlying data structure - typedef for ease of use. | |
Public Member Functions | |
TAO_Storable_Naming_Context (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa, const char *poa_id, TAO_Naming_Service_Persistence_Factory *factory, const ACE_TCHAR *persistence_directory, size_t hash_table_size=ACE_DEFAULT_MAP_SIZE) | |
Constructor. | |
virtual | ~TAO_Storable_Naming_Context (void) |
Destructor. | |
virtual CosNaming::NamingContext_ptr | new_context (ACE_ENV_SINGLE_ARG_DECL) |
virtual void | list (CORBA::ULong how_many, CosNaming::BindingList_out &bl, CosNaming::BindingIterator_out &bi ACE_ENV_ARG_DECL) |
virtual void | rebind (const CosNaming::Name &n, CORBA::Object_ptr obj ACE_ENV_ARG_DECL) |
virtual void | bind (const CosNaming::Name &n, CORBA::Object_ptr obj ACE_ENV_ARG_DECL) |
virtual void | bind_context (const CosNaming::Name &n, CosNaming::NamingContext_ptr nc ACE_ENV_ARG_DECL) |
virtual void | rebind_context (const CosNaming::Name &n, CosNaming::NamingContext_ptr nc ACE_ENV_ARG_DECL) |
virtual CORBA::Object_ptr | resolve (const CosNaming::Name &n ACE_ENV_ARG_DECL) |
virtual void | unbind (const CosNaming::Name &n ACE_ENV_ARG_DECL) |
virtual CosNaming::NamingContext_ptr | bind_new_context (const CosNaming::Name &n ACE_ENV_ARG_DECL) |
virtual void | destroy (ACE_ENV_SINGLE_ARG_DECL) |
Static Public Member Functions | |
CosNaming::NamingContext_ptr | make_new_context (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa, const char *poa_id, size_t context_size, TAO_Naming_Service_Persistence_Factory *factory, const ACE_TCHAR *persistence_directory, TAO_Storable_Naming_Context **new_context ACE_ENV_ARG_DECL) |
CosNaming::NamingContext_ptr | recreate_all (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa, const char *poa_id, size_t context_size, int reentering, TAO_Naming_Service_Persistence_Factory *factory, const ACE_TCHAR *persistence_directory, int use_redundancy ACE_ENV_ARG_DECL) |
Protected Member Functions | |
int | load_map (File_Open_Lock_and_Check *flck ACE_ENV_ARG_DECL) |
void | Write (TAO_Storable_Base &wrtr) |
Protected Attributes | |
ACE_UINT32 | counter_ |
Counter used for generation of transients. | |
TAO_Storable_Bindings_Map * | storable_context_ |
CORBA::ORB_var | orb_ |
ACE_CString | name_ |
PortableServer::POA_var | poa_ |
POA we are registered with. | |
TAO_Naming_Service_Persistence_Factory * | factory_ |
ACE_CString | persistence_directory_ |
The directory in which to store the files. | |
size_t | hash_table_size_ |
Save the hash table initial size. | |
time_t | last_changed_ |
Disk time that match current memory state. | |
Static Protected Attributes | |
ACE_UINT32 | gcounter_ |
int | redundant_ |
Flag to tell use whether we are redundant or not. | |
const char * | root_name_ |
ACE_Auto_Ptr< TAO_Storable_Base > | gfl_ |
The pointer to the global file used to allocate new contexts. | |
Friends | |
class | File_Open_Lock_and_Check |
This class provides a implementation of the NamingContext functionality, i.e., the state can be preserved across process boundaries. Derives from TAO_Hash_Naming_Context and uses TAO_Storable_Bindings_Map to store name to object bindings.
|
Underlying data structure - typedef for ease of use.
|
|
Constructor.
|
|
Destructor.
|
|
Create a binding for name <n> and object <obj> in the naming context. Compound names are treated as follows: ctx->bind (<c1; c2; c3; cn>, obj) = (ctx->resolve (<c1; c2; cn-1>))->bind (<cn>, obj) if the there already exists a binding for the specified name, <alreadybound> exception is thrown. Naming contexts should be bound using <bind_context> and <rebind_context> in order to participate in name resolution later. Reimplemented from TAO_Hash_Naming_Context. |
|
This is the version of <bind> specifically for binding naming contexts, so that they will participate in name resolution when compound names are passed to be resolved. Reimplemented from TAO_Hash_Naming_Context. |
|
This operation creates a new context and binds it to the name supplied as an argument. The newly-created context is implemented by the same server as the context in which it was bound (the name argument excluding the last component). Reimplemented from TAO_Hash_Naming_Context. |
|
Delete the naming context. The user should take care to <unbind> any bindings in which the given context is bound to some names, to avoid dangling references when invoking <destroy> operation. NOTE: <destory> is a no-op on the root context. NOTE: after <destroy> is invoked on a Naming Context, all BindingIterators associated with that Naming Context are also destroyed. Reimplemented from TAO_Hash_Naming_Context. |
|
Returns at most the requested number of bindings <how_many> in <bl>. If the naming context contains additional bindings, they are returned with a BindingIterator. In the naming context does not contain any additional bindings <bi> returned as null. Implements TAO_Naming_Context_Impl. |
|
|
|
This utility method factors out the code needed to create a new Storable Naming Context servant and activate it under the specified POA with the specified id. This function is static so that the code can be used, both from inside the class (e.g., <new_context>), and from outside (e.g., Naming_Utils.cpp). |
|
This operation returns a new naming context implemented by the same naming server in which the operation was invoked. The context is not bound. Implements TAO_Naming_Context_Impl. |
|
This is similar to <bind> operation above, except for when the binding for the specified name already exists in the specified context. In that case, the existing binding is replaced with the new one. Reimplemented from TAO_Hash_Naming_Context. |
|
This is a version of <rebind> specifically for naming contexts, so that they can participate in name resolution when compound names are passed. Reimplemented from TAO_Hash_Naming_Context. |
|
|
|
Return object reference that is bound to the name. Compound name resolve is defined as follows: ctx->resolve (<c1; c2; cn>) = ctx->resolve (<c1; c2 cn-1>)->resolve (<cn>) The naming service does not return the type of the object. Clients are responsible for "narrowing" the object to the appropriate type. Reimplemented from TAO_Hash_Naming_Context. |
|
Remove the name binding from the context. When compound names are used, unbind is defined as follows: ctx->unbind (<c1; c2; cn>) = (ctx->resolve (<c1; c2; cn-1>))->unbind (<cn>) Reimplemented from TAO_Hash_Naming_Context. |
|
|
|
|
|
Counter used for generation of transients.
|
|
|
|
Global counter used for generation of POA ids for children Naming Contexts. |
|
The pointer to the global file used to allocate new contexts.
|
|
Save the hash table initial size.
|
|
Disk time that match current memory state.
|
|
|
|
|
|
The directory in which to store the files.
|
|
POA we are registered with.
Reimplemented from TAO_Hash_Naming_Context. |
|
Flag to tell use whether we are redundant or not.
|
|
|
|
A pointer to the underlying data structure used to store name bindings. While our superclass (TAO_Hash_Naming_Context) also maintains a pointer to the data structure, keeping this pointer around saves us from the need to downcast when invoking non-virtual methods. |