summaryrefslogtreecommitdiff
path: root/TAO/tests/DLL_ORB/Test_Client_Module.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DLL_ORB/Test_Client_Module.cpp')
-rw-r--r--TAO/tests/DLL_ORB/Test_Client_Module.cpp219
1 files changed, 0 insertions, 219 deletions
diff --git a/TAO/tests/DLL_ORB/Test_Client_Module.cpp b/TAO/tests/DLL_ORB/Test_Client_Module.cpp
deleted file mode 100644
index 34d22d0a5e4..00000000000
--- a/TAO/tests/DLL_ORB/Test_Client_Module.cpp
+++ /dev/null
@@ -1,219 +0,0 @@
-// -*- C++ -*-
-
-#include "Test_Client_Module.h"
-#include "tao/TAO_Singleton_Manager.h"
-#include "ace/Get_Opt.h"
-
-ACE_RCSID (DLL_ORB,
- Test_Client_Module,
- "$Id$")
-
-
-const char *ior = "file://test.ior";
-
-int
-parse_args (int argc, char *argv[])
-{
- ACE_Get_Opt get_opts (argc, argv, "k:");
- int c;
-
- while ((c = get_opts ()) != -1)
- switch (c)
- {
- case 'k':
- ior = get_opts.optarg;
- break;
-
- case '?':
- default:
- ACE_ERROR_RETURN ((LM_ERROR,
- "usage: -k <ior>\n"),
- -1);
- }
-
- // Indicates sucessful parsing of the command line
- return 0;
-}
-
-
-int
-Test_Client_Module::init (int argc, ACE_TCHAR *argv[])
-{
- // -----------------------------------------------------------------
- // Pre-ORB initialization steps necessary for proper DLL ORB
- // support.
- // -----------------------------------------------------------------
- // Make sure TAO's singleton manager is initialized, and set to not
- // register itself with the ACE_Object_Manager since it is under the
- // control of the Service Configurator. If we register with the
- // ACE_Object_Manager, then the ACE_Object_Manager will still hold
- // (dangling) references to instances of objects created by this
- // module and destroyed by this object when it is dynamically
- // unloaded.
- int register_with_object_manager = 0;
-
- if (TAO_Singleton_Manager::instance ()->init (
- register_with_object_manager) == -1)
- ACE_ERROR_RETURN ((LM_ERROR,
- "Test_Client_Module::init -- ORB pre-initialization "
- "failed."),
- -1); // No exceptions available yet, so return
- // an error status.
-
- // -----------------------------------------------------------------
- // Boilerplate CORBA/TAO client-side ORB initialization code.
- // -----------------------------------------------------------------
- ACE_DECLARE_NEW_CORBA_ENV;
- ACE_TRY
- {
- // Prepend a "dummy" program name argument to the Service
- // Configurator argument vector.
- int new_argc = argc + 1;
-
- CORBA::StringSeq new_argv (new_argc);
- new_argv.length (new_argc);
-
- // Prevent the ORB from opening the Service Configurator file
- // again since the Service Configurator file is already in the
- // process of being opened.
- new_argv[0] = CORBA::string_dup ("dummy");
-
- // Copy the remaining arguments into the new argument vector.
- for (int i = new_argc - argc, j = 0;
- j < argc;
- ++i, ++j)
- new_argv[i] = CORBA::string_dup (argv[j]);
-
- // Initialize the ORB.
- this->orb_ = CORBA::ORB_init (new_argc,
- new_argv.get_buffer (),
- "",
- ACE_TRY_ENV);
- ACE_TRY_CHECK;
-
- if (CORBA::is_nil (this->orb_.in ()))
- return -1;
-
- if (::parse_args (new_argc, new_argv.get_buffer ()) != 0)
- return 1;
-
- CORBA::Object_var obj =
- this->orb_->string_to_object (ior, ACE_TRY_ENV);
- ACE_TRY_CHECK;
-
- this->test_ =
- Test::_narrow (obj.in (), ACE_TRY_ENV);
- ACE_TRY_CHECK;
-
- if (CORBA::is_nil (this->test_.in ()))
- {
- ACE_ERROR_RETURN ((LM_DEBUG,
- ACE_TEXT ("Nil Test reference <%s>\n"),
- ior),
- 1);
- }
- }
- ACE_CATCHANY
- {
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- ACE_TEXT ("Test_Client_Module::init"));
-
- return -1;
- }
- ACE_ENDTRY;
- ACE_CHECK_RETURN (-1);
-
-#if defined (ACE_HAS_THREADS)
-
- // Become an Active Object so that the ORB will execute in a
- // separate thread.
- return this->activate ();
-
-#else
-
- return 0;
-
-#endif /* ACE_HAS_THREADS */
-}
-
-int
-Test_Client_Module::fini (void)
-{
- ACE_DECLARE_NEW_CORBA_ENV;
- ACE_TRY
- {
- // Make sure the ORB is destroyed.
- if (!CORBA::is_nil (this->orb_.in ()))
- {
- this->orb_->destroy (ACE_TRY_ENV);
- ACE_TRY_CHECK;
- }
- }
- ACE_CATCHANY
- {
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- ACE_TEXT ("Test_Client_Module::fini"));
- return -1;
- }
- ACE_ENDTRY;
- ACE_CHECK_RETURN (-1);
-
- // This is a bit of a hack. The ORB Core's lifetime is tied to the
- // lifetime of an object reference. We need to wipe out all object
- // references before we call fini() on the TAO_Singleton_Manager.
- //
- // Note that this is only necessary if the default resource factory
- // is used, i.e. one isn't explicitly loaded prior to initializing
- // the ORB.
- (void) this->test_.out ();
-
- // ------------------------------------------------------------
- // Pre-Test_Client_Module termination steps.
- // ------------------------------------------------------------
- // Explicitly clean up singletons and other objects created by TAO
- // before unloading this module.
- if (TAO_Singleton_Manager::instance ()->fini () == -1)
- ACE_ERROR_RETURN ((LM_ERROR,
- "Test_Client_Module::fini -- ORB pre-termination "
- "failed."),
- -1);
-
- return 0;
-}
-
-int
-Test_Client_Module::svc (void)
-{
- ACE_DECLARE_NEW_CORBA_ENV;
- ACE_TRY
- {
- // Invoke an operation on the Test object.
- this->test_->invoke_me (ACE_TRY_ENV);
- ACE_TRY_CHECK;
-
- /// Shutdown the remote ORB.
- this->test_->shutdown (ACE_TRY_ENV);
- ACE_TRY_CHECK;
- }
- ACE_CATCHANY
- {
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- ACE_TEXT ("Test_Client_Module::svc"));
- return -1;
- }
- ACE_ENDTRY;
- ACE_CHECK_RETURN (-1);
-
- return 0;
-}
-
-
-ACE_STATIC_SVC_DEFINE (Test_Client_Module,
- ACE_TEXT ("Client_Module"),
- ACE_SVC_OBJ_T,
- &ACE_SVC_NAME (Test_Client_Module),
- ACE_Service_Type::DELETE_THIS
- | ACE_Service_Type::DELETE_OBJ,
- 0)
-
-ACE_FACTORY_DEFINE (Test_Client_Module, Test_Client_Module)