summaryrefslogtreecommitdiff
path: root/TAO/tests/TransportCurrent/lib/Current_Test_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/TransportCurrent/lib/Current_Test_Impl.h')
-rw-r--r--TAO/tests/TransportCurrent/lib/Current_Test_Impl.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/TAO/tests/TransportCurrent/lib/Current_Test_Impl.h b/TAO/tests/TransportCurrent/lib/Current_Test_Impl.h
new file mode 100644
index 00000000000..f8dfc3f3ef3
--- /dev/null
+++ b/TAO/tests/TransportCurrent/lib/Current_Test_Impl.h
@@ -0,0 +1,77 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Current_Test_Impl.h
+ *
+ * $Id$
+ *
+ * Implementation header for the "test" IDL interface for the
+ * TAO::TransportCurrent test.
+ *
+ * @author Iliyan Jeliazkov <iliyan@ociweb.com>
+ */
+//=============================================================================
+
+#ifndef CURRENT_TEST_IMPL_H
+#define CURRENT_TEST_IMPL_H
+
+#include "Current_TestS.h"
+#include "tao/TransportCurrent/TCC.h"
+
+/**
+ * @class Current_Test_Impl
+ *
+ * @brief Simple test class.
+ *
+ * This class implements the "test" interface used in this test.
+ */
+class Current_Test_Impl : public virtual POA_Test::Transport::CurrentTest
+{
+public:
+
+ /// Constructor.
+ Current_Test_Impl (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa, int do_collocated_calls = 1);
+
+ /// Destructor.
+ ~Current_Test_Impl (void);
+
+ /// Main servant test method.
+ virtual void invoked_by_client (void) throw (CORBA::SystemException);
+
+ /// No-op method used so that a client request interceptor will be
+ /// invoked when invoking this method from the above invoke_me()
+ /// method. Say that 10 times fast. :-)
+ virtual void invoked_during_upcall (void)
+ throw (CORBA::SystemException);
+
+ /// Shutdown the ORB.
+ virtual void shutdown (void) throw (CORBA::SystemException);
+
+ // A self-test for coherency
+ virtual ::CORBA::Long self_test (void) throw (CORBA::SystemException);
+
+public:
+ /// Reports if unexpected errors have been encountered for the
+ /// lifetime of the instance
+ bool is_successful (void) const;
+
+private:
+ void test_transport_current (void) throw (CORBA::SystemException);
+
+ /// Main servant test method.
+ void invoked_by_client_i (void)
+ throw (CORBA::SystemException, TAO::Transport::NoContext);
+
+private:
+ /// Pseudo-reference to the ORB.
+ CORBA::ORB_var orb_;
+
+ /// Pseudo-reference to the POA (cache)
+ PortableServer::POA_var poa_;
+
+ /// To do or not to do ...
+ int do_collocated_calls_;
+};
+
+#endif /* CURRENT_TEST_IMPL_H */