summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/Bug_3108_Regression/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/Bug_3108_Regression/client.cpp')
-rw-r--r--ACE/TAO/tests/Bug_3108_Regression/client.cpp121
1 files changed, 121 insertions, 0 deletions
diff --git a/ACE/TAO/tests/Bug_3108_Regression/client.cpp b/ACE/TAO/tests/Bug_3108_Regression/client.cpp
new file mode 100644
index 00000000000..d1ef852bb60
--- /dev/null
+++ b/ACE/TAO/tests/Bug_3108_Regression/client.cpp
@@ -0,0 +1,121 @@
+// $Id$
+
+#include "testC.h"
+#include "ace/Task.h"
+#include "ace/Get_Opt.h"
+
+const ACE_TCHAR *ior = ACE_TEXT("file://test.ior");
+
+test_var global_client;
+int iterations = 100;
+bool server_shutdown = true;
+int n_tasks = 45;
+
+int
+parse_args (int argc, ACE_TCHAR *argv[])
+{
+ ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("k:c:x"));
+ int c;
+
+ while ((c = get_opts ()) != -1)
+ switch (c)
+ {
+ case 'k':
+ ior = get_opts.opt_arg ();
+ break;
+ case 'c':
+ n_tasks = ACE_OS::atoi (get_opts.opt_arg ());
+ break;
+ case 'x':
+ server_shutdown = false;
+ break;
+ case '?':
+ default:
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "usage: %s "
+ "-k <ior> "
+ "[-x] [-c concurrent_tasks]"
+ "\n",
+ argv [0]),
+ -1);
+ }
+ // Indicates sucessful parsing of the command line
+ return 0;
+}
+
+
+class Client : public ACE_Task_Base
+{
+public:
+ // ctor
+ Client (test_ptr server);
+
+ virtual int svc (void);
+
+ // The server.
+ test_var server_;
+};
+
+Client::Client (test_ptr server)
+ : server_ (test::_duplicate (server))
+{
+}
+
+int
+Client::svc (void)
+{
+ try
+ {
+ this->server_->test_method();
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Client: exception raised");
+ }
+ 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;
+
+ CORBA::Object_var obj = orb->string_to_object(ior);
+ test_var server = test::_narrow(obj.in ());
+ if (CORBA::is_nil(server.in ()))
+ {
+ ACE_ERROR_RETURN ((LM_DEBUG,
+ "Nil reference <%s>\n",
+ ior),
+ 1);
+ }
+
+ Client client (server.in ());
+ if (client.activate (THR_NEW_LWP | THR_JOINABLE,
+ n_tasks) != 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "Cannot activate client threads\n"),
+ 1);
+
+ client.thr_mgr ()->wait ();
+
+ if (server_shutdown)
+ {
+ server->shutdown ();
+ }
+
+ orb->destroy ();
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("Exception caught");
+ return -1;
+ }
+
+ return 0;
+}