summaryrefslogtreecommitdiff
path: root/TAO/tests/BiDirectional/test_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/BiDirectional/test_i.cpp')
-rw-r--r--TAO/tests/BiDirectional/test_i.cpp88
1 files changed, 88 insertions, 0 deletions
diff --git a/TAO/tests/BiDirectional/test_i.cpp b/TAO/tests/BiDirectional/test_i.cpp
new file mode 100644
index 00000000000..a5679c92250
--- /dev/null
+++ b/TAO/tests/BiDirectional/test_i.cpp
@@ -0,0 +1,88 @@
+// $Id$
+
+#include "test_i.h"
+
+#include "tao/ORB_Core.h"
+#include "tao/debug.h"
+#include "tao/Transport_Cache_Manager.h"
+#include "tao/Thread_Lane_Resources.h"
+
+#if !defined(__ACE_INLINE__)
+#include "test_i.inl"
+#endif /* __ACE_INLINE__ */
+
+ACE_RCSID(BiDirectional, test_i, "$Id$")
+
+void
+Callback_i::shutdown (void)
+{
+ ACE_DEBUG ((LM_DEBUG, "Performing clean shutdown\n"));
+ this->orb_->shutdown (0);
+}
+
+void
+Callback_i::callback_method ( /**/)
+{
+ if (TAO_debug_level > 0)
+ ACE_DEBUG ((LM_DEBUG, "Callback method called \n"));
+}
+
+
+// ****************************************************************
+
+CORBA::Long
+Simple_Server_i::test_method (CORBA::Boolean do_callback
+ )
+{
+ if (do_callback)
+ {
+ this->flag_ = 1;
+ }
+
+ return 0;
+}
+
+void
+Simple_Server_i::callback_object (Callback_ptr callback
+ )
+{
+ // Store the callback object
+ this->callback_ = Callback::_duplicate (callback);
+}
+
+int
+Simple_Server_i::call_client (void)
+{
+ if (this->flag_)
+ {
+ for (int times = 0; times < this->no_iterations_; ++times)
+ {
+ this->callback_->callback_method ();
+
+ // If the cache size has gotten larger this indicates that
+ // the connection isn't being shared properly, i.e., a new
+ // connection was created, so we'll abort.
+ if (this->orb_->orb_core ()->lane_resources ().transport_cache ().current_size () > 1)
+ {
+ ACE_ERROR ((LM_ERROR,
+ "(%P|%t) The cache has grown, aborting ..\n"));
+
+ ACE_OS::abort ();
+ }
+ }
+
+ this->callback_->shutdown ();
+ this->flag_ = 0;
+
+ return 1;
+ }
+
+ return 0;
+}
+
+
+void
+Simple_Server_i::shutdown (void)
+{
+ this->orb_->shutdown (0);
+}