summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Memory/Single_Threaded/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Memory/Single_Threaded/client.cpp')
-rw-r--r--TAO/performance-tests/Memory/Single_Threaded/client.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/TAO/performance-tests/Memory/Single_Threaded/client.cpp b/TAO/performance-tests/Memory/Single_Threaded/client.cpp
new file mode 100644
index 00000000000..14a9b6cc6a1
--- /dev/null
+++ b/TAO/performance-tests/Memory/Single_Threaded/client.cpp
@@ -0,0 +1,81 @@
+// $Id$
+
+#include "TestC.h"
+#include "ace/Get_Opt.h"
+
+ACE_RCSID(Hello, client, "$Id$")
+
+const char *ior = "file://test.ior";
+static int n = 100;
+int
+parse_args (int argc, char *argv[])
+{
+ ACE_Get_Opt get_opts (argc, argv, "k:n:");
+ int c;
+
+ while ((c = get_opts ()) != -1)
+ switch (c)
+ {
+ case 'n':
+ n = ACE_OS::atoi (get_opts.opt_arg ());
+ break;
+
+ case 'k':
+ ior = get_opts.opt_arg ();
+ break;
+
+ case '?':
+ default:
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "usage: %s "
+ "-k <ior> "
+ "\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 tmp =
+ orb->string_to_object(ior);
+
+ Test::Memory_Growth_var mem =
+ Test::Memory_Growth::_narrow(tmp.in ());
+
+ if (CORBA::is_nil (mem.in ()))
+ {
+ ACE_ERROR_RETURN ((LM_DEBUG,
+ "Nil Test::Hello reference <%s>\n",
+ ior),
+ 1);
+ }
+
+ // Make a few calls to the remote object
+ for (int iter = 0; iter != n; iter++)
+ {
+ mem->ping ();
+ }
+
+ // Let us run the event loop. This way we will not exit
+ orb->run ();
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Exception caught:");
+ return 1;
+ }
+
+ return 0;
+}