diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:21 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:21 +0000 |
commit | 3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (patch) | |
tree | 197c810e5f5bce17b1233a7cb8d7b50c0bcd25e2 /TAO/tests/AMH_Oneway/client.cpp | |
parent | 6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (diff) | |
download | ATCD-3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c.tar.gz |
Repo restructuring
Diffstat (limited to 'TAO/tests/AMH_Oneway/client.cpp')
-rw-r--r-- | TAO/tests/AMH_Oneway/client.cpp | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/TAO/tests/AMH_Oneway/client.cpp b/TAO/tests/AMH_Oneway/client.cpp new file mode 100644 index 00000000000..381cc74f8b8 --- /dev/null +++ b/TAO/tests/AMH_Oneway/client.cpp @@ -0,0 +1,76 @@ +// $Id$ + +#include "ace/Get_Opt.h" +#include "TestC.h" + +const char *ior = "file://test.ior"; +int num_calls = 10; + +int +parse_args (int argc, char *argv[]) +{ + ACE_Get_Opt get_opts (argc, argv, "n:"); + int c; + + while ((c = get_opts ()) != -1) + switch (c) + { + case 'n': + num_calls = ACE_OS::atoi (get_opts.opt_arg ()); + break; + default: + break; + } + return 0; +} + +int +main (int argc, char *argv[]) +{ + ACE_TRY_NEW_ENV + { + CORBA::ORB_var orb = + CORBA::ORB_init (argc, argv, "" ACE_ENV_ARG_PARAMETER); + ACE_TRY_CHECK; + + if (parse_args (argc, argv) != 0) + return 1; + + CORBA::Object_var object = + orb->string_to_object (ior ACE_ENV_ARG_PARAMETER); + ACE_TRY_CHECK; + + Test::Roundtrip_var roundtrip = + Test::Roundtrip::_narrow (object.in () ACE_ENV_ARG_PARAMETER); + ACE_TRY_CHECK; + + if (CORBA::is_nil (roundtrip.in ())) + { + ACE_ERROR_RETURN ((LM_ERROR, + "Nil Test::Roundtrip reference <%s>\n", + ior), + 1); + } + + // Do a couple of calls on the server. If the sever is trying to + // do something stupid like sending an exception to us, then it + // won't be able to handle more than 1 request from us. + Test::Timestamp time = 10; + for (int i = 0; i < num_calls; i++) + { + roundtrip->test_method (time ACE_ENV_ARG_PARAMETER); + ACE_TRY_CHECK; + + ACE_DEBUG ((LM_DEBUG, "Sent call # %d \n", i)); + } + orb->destroy(); + } + ACE_CATCHANY + { + ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, ""); + return 1; + } + ACE_ENDTRY; + + return 0; +} |