summaryrefslogtreecommitdiff
path: root/TAO/tao/IORTable/Table_Adapter.h
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:21 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:21 +0000
commit3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (patch)
tree197c810e5f5bce17b1233a7cb8d7b50c0bcd25e2 /TAO/tao/IORTable/Table_Adapter.h
parent6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (diff)
downloadATCD-3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/IORTable/Table_Adapter.h')
-rw-r--r--TAO/tao/IORTable/Table_Adapter.h94
1 files changed, 94 insertions, 0 deletions
diff --git a/TAO/tao/IORTable/Table_Adapter.h b/TAO/tao/IORTable/Table_Adapter.h
new file mode 100644
index 00000000000..9f6ad395279
--- /dev/null
+++ b/TAO/tao/IORTable/Table_Adapter.h
@@ -0,0 +1,94 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Table_Adapter.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan (coryan@uci.edu)
+ */
+//=============================================================================
+
+
+#ifndef TAO_TABLE_ADAPTER_H
+#define TAO_TABLE_ADAPTER_H
+#include /**/ "ace/pre.h"
+
+#include "tao/IORTable/iortable_export.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/Adapter.h"
+#include "tao/Adapter_Factory.h"
+#include "ace/Service_Config.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+class TAO_IOR_Table_Impl;
+
+class TAO_IORTable_Export TAO_Table_Adapter : public TAO_Adapter
+{
+public:
+ /// Constructor
+ TAO_Table_Adapter (TAO_ORB_Core *orb_core);
+
+ /// Destructor
+ virtual ~TAO_Table_Adapter (void);
+
+ // = The TAO_Adapter methods, please check tao/Adapter.h for the
+ // documentation
+ virtual void open (ACE_ENV_SINGLE_ARG_DECL);
+ virtual void close (int wait_for_completion
+ ACE_ENV_ARG_DECL);
+ virtual void check_close (int wait_for_completion
+ ACE_ENV_ARG_DECL);
+ virtual int priority (void) const;
+ virtual int dispatch (TAO::ObjectKey &key,
+ TAO_ServerRequest &request,
+ CORBA::Object_out foward_to
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual const char *name (void) const;
+ virtual CORBA::Object_ptr root (void);
+ virtual CORBA::Object_ptr create_collocated_object (TAO_Stub *,
+ const TAO_MProfile &);
+
+ virtual CORBA::Long initialize_collocated_object (TAO_Stub *);
+private:
+ /// Helper method to find an object bound in the table.
+ /// @return 1 if found, 0 otherwise.
+ CORBA::Long find_object (TAO::ObjectKey &key,
+ CORBA::Object_out forward_to
+ ACE_ENV_ARG_DECL)
+ ACE_THROW_SPEC ((CORBA::SystemException));
+
+ /// The ORB Core we belong to
+ TAO_ORB_Core * const orb_core_;
+
+ /// The table implementation
+ TAO_IOR_Table_Impl *root_;
+};
+
+// ****************************************************************
+
+class TAO_IORTable_Export TAO_Table_Adapter_Factory : public TAO_Adapter_Factory
+{
+public:
+ /// Constructor
+ TAO_Table_Adapter_Factory (void);
+
+ // = The TAO_Adapter_Factory methods, please read tao/Adapter.h for
+ // details.
+ virtual TAO_Adapter *create (TAO_ORB_Core *orb_core);
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+ACE_STATIC_SVC_DECLARE (TAO_Table_Adapter_Factory)
+ACE_FACTORY_DECLARE (TAO_IORTable, TAO_Table_Adapter_Factory)
+
+#include /**/ "ace/post.h"
+#endif /* TAO_TABLE_ADAPTER_H */