summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Latency/Collocation/Server_Task.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Latency/Collocation/Server_Task.cpp')
-rw-r--r--TAO/performance-tests/Latency/Collocation/Server_Task.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/TAO/performance-tests/Latency/Collocation/Server_Task.cpp b/TAO/performance-tests/Latency/Collocation/Server_Task.cpp
new file mode 100644
index 00000000000..7c7d790e55d
--- /dev/null
+++ b/TAO/performance-tests/Latency/Collocation/Server_Task.cpp
@@ -0,0 +1,81 @@
+//
+// $Id$
+//
+
+#include "Server_Task.h"
+#include "Roundtrip.h"
+
+Server_Task::Server_Task (CORBA::ORB_ptr sorb,
+ ACE_Manual_Event &cond,
+ ACE_Thread_Manager *thr_mgr)
+ : ACE_Task_Base (thr_mgr),
+ cond_ (cond),
+ sorb_ (CORBA::ORB::_duplicate (sorb))
+{
+}
+
+Test::Roundtrip *
+Server_Task::get_reference ()
+{
+ return Test::Roundtrip::_duplicate (this->rt_var_.in ());
+}
+
+int
+Server_Task::svc (void)
+{
+ try
+ {
+ CORBA::Object_var poa_object =
+ this->sorb_->resolve_initial_references("RootPOA");
+
+ PortableServer::POA_var root_poa =
+ PortableServer::POA::_narrow (poa_object.in ());
+
+ if (CORBA::is_nil (root_poa.in ()))
+ ACE_ERROR_RETURN ((LM_ERROR,
+ " (%P|%t) Panic: nil RootPOA\n"),
+ 1);
+
+ PortableServer::POAManager_var poa_manager =
+ root_poa->the_POAManager ();
+
+ Roundtrip *rt_impl;
+
+ ACE_NEW_RETURN (rt_impl,
+ Roundtrip (this->sorb_.in ()),
+ 1);
+
+ PortableServer::ServantBase_var owner_transfer(rt_impl);
+
+ this->rt_var_ =
+ rt_impl->_this ();
+
+ if (CORBA::is_nil (this->rt_var_.in ()))
+ {
+ ACE_ERROR_RETURN ((LM_DEBUG,
+ "Error activating Test::Roundtrip reference\n"),
+ 1);
+ }
+
+ poa_manager->activate ();
+
+ ACE_DEBUG ((LM_DEBUG, "Server_Task: Object Activation complete\n"));
+
+ // Signal the main thread to spawn the client
+ this->cond_.signal ();
+
+ this->sorb_->run ();
+
+ root_poa->destroy (1, 1);
+
+ this->sorb_->destroy ();
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Exception caught:");
+ return 1;
+ }
+
+
+ return 0;
+}