summaryrefslogtreecommitdiff
path: root/TAO/tests/DSI_AMH/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DSI_AMH/client.cpp')
-rw-r--r--TAO/tests/DSI_AMH/client.cpp99
1 files changed, 99 insertions, 0 deletions
diff --git a/TAO/tests/DSI_AMH/client.cpp b/TAO/tests/DSI_AMH/client.cpp
new file mode 100644
index 00000000000..299c257ed14
--- /dev/null
+++ b/TAO/tests/DSI_AMH/client.cpp
@@ -0,0 +1,99 @@
+// $Id$
+
+#include "TestC.h"
+#include "ace/Get_Opt.h"
+#include "ace/High_Res_Timer.h"
+#include "tao/debug.h"
+
+const char *ior = "file://test.ior";
+int niterations = 100;
+int do_shutdown = 1;
+
+int
+parse_args (int argc, char *argv[])
+{
+ ACE_Get_Opt get_opts (argc, argv, "xk:i:");
+ int c;
+
+ while ((c = get_opts ()) != -1)
+ switch (c)
+ {
+ case 'x':
+ do_shutdown = 0;
+ break;
+
+ case 'k':
+ ior = get_opts.opt_arg ();
+ break;
+
+ case 'i':
+ niterations = ACE_OS::atoi (get_opts.opt_arg ());
+ break;
+
+ case '?':
+ default:
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "usage: %s "
+ "-k <ior> "
+ "-i <niterations> "
+ "-x (disable shutdown) "
+ "\n",
+ argv [0]),
+ -1);
+ }
+ // Indicates sucessful parsing of the command line
+ return 0;
+}
+
+int
+main (int argc, char *argv[])
+{
+
+ try
+ {
+ CORBA::ORB_var orb =
+ CORBA::ORB_init (argc, argv);
+
+ if (parse_args (argc, argv) != 0)
+ return 1;
+
+ CORBA::Object_var object =
+ orb->string_to_object (ior);
+
+ Test::Roundtrip_var roundtrip =
+ Test::Roundtrip::_narrow (object.in ());
+
+ if (CORBA::is_nil (roundtrip.in ()))
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "Nil Test::Roundtrip reference <%s>\n",
+ ior),
+ 1);
+ }
+
+ for (int i = 0; i < niterations; ++i)
+ {
+ ACE_hrtime_t start = ACE_OS::gethrtime ();
+ ACE_hrtime_t retval = roundtrip->test_method (start);
+
+ if (TAO_debug_level > 0)
+ ACE_DEBUG ((LM_DEBUG, "test return value: %Q\n", retval));
+ }
+
+
+ ACE_DEBUG ((LM_DEBUG, "test finished\n"));
+
+
+ if (do_shutdown)
+ {
+ roundtrip->shutdown ();
+ }
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Exception caught:");
+ return 1;
+ }
+
+ return 0;
+}