From 3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c Mon Sep 17 00:00:00 2001 From: "William R. Otte" Date: Mon, 24 Jul 2006 15:50:21 +0000 Subject: Repo restructuring --- TAO/tao/IORTable/IOR_Table_Impl.h | 119 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 TAO/tao/IORTable/IOR_Table_Impl.h (limited to 'TAO/tao/IORTable/IOR_Table_Impl.h') diff --git a/TAO/tao/IORTable/IOR_Table_Impl.h b/TAO/tao/IORTable/IOR_Table_Impl.h new file mode 100644 index 00000000000..15ca6d6cc3f --- /dev/null +++ b/TAO/tao/IORTable/IOR_Table_Impl.h @@ -0,0 +1,119 @@ +// -*- C++ -*- + +//============================================================================= +/** + * @file IOR_Table_Impl.h + * + * $Id$ + * + * @author Carlos O'Ryan (coryan@uci.edu) + */ +//============================================================================= + + +#ifndef TAO_IOR_TABLE_IMPL_H +#define TAO_IOR_TABLE_IMPL_H + +#include /**/ "ace/pre.h" + +#include "tao/IORTable/IORTable.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +#include "ace/Hash_Map_Manager_T.h" +#include "ace/Null_Mutex.h" +#include "tao/LocalObject.h" +#include "ace/SString.h" + +#if defined(_MSC_VER) +#pragma warning(push) +#pragma warning(disable:4250) +#endif /* _MSC_VER */ + +TAO_BEGIN_VERSIONED_NAMESPACE_DECL + +class TAO_IOR_Table_Impl + : public virtual IORTable::Table, + public virtual TAO_Local_RefCounted_Object +{ +public: + /// Constructor + TAO_IOR_Table_Impl (void); + + /// Find the object, using the locator if it is not on the table. + char *find ( + const char *object_key + ACE_ENV_ARG_DECL + ) + ACE_THROW_SPEC (( + CORBA::SystemException, + IORTable::NotFound + )); + + /** + * @name The IORTable::Table methods + * + * Please check the IORTable.pidl file for details. + */ + //@{ + virtual void bind ( + const char * object_key, + const char * IOR + ACE_ENV_ARG_DECL_WITH_DEFAULTS) + + ACE_THROW_SPEC (( + CORBA::SystemException, + IORTable::AlreadyBound + )); + + virtual void rebind ( + const char * object_key, + const char * IOR + ACE_ENV_ARG_DECL_WITH_DEFAULTS) + + ACE_THROW_SPEC (( + CORBA::SystemException + )); + + virtual void unbind ( + const char * object_key + ACE_ENV_ARG_DECL_WITH_DEFAULTS) + + ACE_THROW_SPEC (( + CORBA::SystemException, + IORTable::NotFound + )); + + virtual void set_locator ( + IORTable::Locator_ptr the_locator + ACE_ENV_ARG_DECL_WITH_DEFAULTS) + + ACE_THROW_SPEC (( + CORBA::SystemException + )); + //@} + +private: + typedef ACE_Hash_Map_Manager_Ex, ACE_Equal_To, ACE_Null_Mutex> Map; + + /// The map + Map map_; + + /// The locator + IORTable::Locator_var locator_; + + /// Synchronization + TAO_SYNCH_MUTEX lock_; +}; + +TAO_END_VERSIONED_NAMESPACE_DECL + +#if defined(_MSC_VER) +#pragma warning(pop) +#endif /* _MSC_VER */ + +#include /**/ "ace/post.h" + +#endif /* TAO_IOR_TABLE_IMPL */ -- cgit v1.2.1