summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Portable_Interceptors/Service_Context_Manipulation/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Portable_Interceptors/Service_Context_Manipulation/client.cpp')
-rw-r--r--ACE/TAO/tests/Portable_Interceptors/Service_Context_Manipulation/client.cpp116
1 files changed, 116 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Portable_Interceptors/Service_Context_Manipulation/client.cpp b/ACE/TAO/tests/Portable_Interceptors/Service_Context_Manipulation/client.cpp
new file mode 100644
index 00000000000..f44e09e9bfe
--- /dev/null
+++ b/ACE/TAO/tests/Portable_Interceptors/Service_Context_Manipulation/client.cpp
@@ -0,0 +1,116 @@
+// $Id$
+
+#include "ace/Get_Opt.h"
+#include "testC.h"
+#include "Client_ORBInitializer.h"
+
+#include "tao/ORBInitializer_Registry.h"
+
+ACE_RCSID(Interceptors, client, "$Id$")
+
+const ACE_TCHAR *ior = ACE_TEXT("file://test.ior");
+
+int
+parse_args (int argc, ACE_TCHAR *argv[])
+{
+ ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("ef:"));
+ int c;
+
+ while ((c = get_opts ()) != -1)
+ switch (c)
+ {
+ case 'e':
+ break;
+ case 'f':
+ ior = get_opts.opt_arg ();
+ break;
+ case '?':
+ default:
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "usage: %s "
+ "-v "
+ "\n",
+ argv [0]),
+ -1);
+ }
+ return 0;
+}
+
+void
+run_test (Test_Interceptors::Visual_ptr server)
+{
+
+ server->normal (10);
+
+ ACE_DEBUG ((LM_DEBUG, "\"normal\" operation done\n"));
+
+ server->nothing ();
+
+ ACE_DEBUG ((LM_DEBUG, "\"nothing\" operation done\n"));
+
+ try
+ {
+ server->user ();
+ }
+ catch (const Test_Interceptors::Silly&)
+ {
+ ACE_DEBUG ((LM_DEBUG, "Caught Silly\n"));
+ }
+
+ try
+ {
+ server->system ();
+ }
+ catch (const CORBA::INV_OBJREF&)
+ {
+ ACE_DEBUG ((LM_DEBUG, "Caught CORBA::INV_OBJREF\n"));
+ }
+}
+
+int
+ACE_TMAIN(int argc, ACE_TCHAR *argv[])
+{
+ try
+ {
+ PortableInterceptor::ORBInitializer_ptr temp_initializer;
+
+ ACE_NEW_RETURN (temp_initializer,
+ Client_ORBInitializer,
+ -1); // No exceptions yet!
+ PortableInterceptor::ORBInitializer_var initializer =
+ temp_initializer;
+
+ PortableInterceptor::register_orb_initializer (initializer.in ());
+
+ 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_Interceptors::Visual_var server =
+ Test_Interceptors::Visual::_narrow (object.in ());
+
+ if (CORBA::is_nil (server.in ()))
+ {
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "Object reference <%s> is nil.\n",
+ ior),
+ 1);
+ }
+
+ run_test (server.in ());
+
+ server->shutdown ();
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Caught exception in client:");
+ return 1;
+ }
+
+ return 0;
+}