summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Parallel_Connect_Strategy/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Parallel_Connect_Strategy/client.cpp')
-rw-r--r--ACE/TAO/tests/Parallel_Connect_Strategy/client.cpp133
1 files changed, 133 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Parallel_Connect_Strategy/client.cpp b/ACE/TAO/tests/Parallel_Connect_Strategy/client.cpp
new file mode 100644
index 00000000000..4d9e11a5c5a
--- /dev/null
+++ b/ACE/TAO/tests/Parallel_Connect_Strategy/client.cpp
@@ -0,0 +1,133 @@
+// $Id$
+
+#include "TestC.h"
+#include "ace/Get_Opt.h"
+#include "ace/High_Res_Timer.h"
+#include "tao/ORB_Core.h"
+
+ACE_RCSID(Hello, client, "$Id$")
+
+const ACE_TCHAR *ior = ACE_TEXT("file://test.ior");
+int kill_server = 0;
+bool sanity_timeout = false;
+
+void hook (TAO_ORB_Core *,
+ TAO_Stub *,
+ bool &has_timeout,
+ ACE_Time_Value &tv)
+{
+ ACE_DEBUG ((LM_DEBUG, "Timeout hook called\n"));
+ tv.set (10, 0);
+ has_timeout = true;
+}
+
+int
+parse_args (int argc, ACE_TCHAR *argv[])
+{
+ ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("k:xt"));
+ int c;
+
+ while ((c = get_opts ()) != -1)
+ switch (c)
+ {
+ case 'k':
+ ior = get_opts.opt_arg ();
+ break;
+ case 'x':
+ kill_server = 1;
+ break;
+ case 't':
+ sanity_timeout = true;
+ break;
+ case '?':
+ default:
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "usage: %s "
+ "-k <ior> "
+ "-x "
+ "\n",
+ argv [0]),
+ -1);
+ }
+ // Indicates sucessful parsing of the command line
+ return 0;
+}
+
+int
+ACE_TMAIN(int argc, ACE_TCHAR *argv[])
+{
+ try
+ {
+ CORBA::ORB_var orb =
+ CORBA::ORB_init (argc, argv);
+
+ if (parse_args (argc, argv) != 0)
+ return 1;
+
+ if (sanity_timeout)
+ {
+ ACE_DEBUG ((LM_DEBUG, "Installing sanity timeout\n"));
+ orb->orb_core ()->connection_timeout_hook (hook);
+ }
+
+ CORBA::Object_var tmp =
+ orb->string_to_object(ior);
+
+ ACE_High_Res_Timer hrt;
+ ACE_hrtime_t elapsed;
+
+ ACE_DEBUG ((LM_DEBUG,"Narrowing IOR - "));
+ hrt.start();
+
+ Test::Hello_var hello =
+ Test::Hello::_narrow(tmp.in ());
+ hrt.stop();
+ hrt.elapsed_microseconds (elapsed);
+ hrt.reset();
+
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_TEXT("call completed in %d usec\n"),
+ elapsed ));
+
+ if (CORBA::is_nil (hello.in ()))
+ {
+ ACE_ERROR_RETURN ((LM_DEBUG,
+ "Nil Test::Hello reference <%s>\n",
+ ior),
+ 1);
+ }
+ if (kill_server)
+ {
+ hello->shutdown ();
+ }
+ else
+ {
+ ACE_DEBUG ((LM_DEBUG,"Starting invocation 1 - "));
+ hrt.start();
+ CORBA::String_var the_string =
+ hello->get_string ();
+ hrt.stop();
+ hrt.elapsed_microseconds (elapsed);
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_TEXT("call completed in %d usec\n"),
+ elapsed ));
+ ACE_DEBUG ((LM_DEBUG,"Starting invocation 2 - "));
+ hrt.reset();
+ hrt.start();
+ the_string = hello->get_string ();
+ hrt.stop();
+ hrt.elapsed_microseconds (elapsed);
+ ACE_DEBUG ((LM_DEBUG,
+ ACE_TEXT("call completed in %d usec\n"),
+ elapsed ));
+ }
+ orb->destroy ();
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Exception caught:");
+ return 1;
+ }
+
+ return 0;
+}