int ACE_TMAIN(int argc, ACE_TCHAR *argv[]) { Client_ORBInitializer* initializer1 = 0; Client_ORBInitializer* initializer2 = 0; ACE_NEW_RETURN (initializer2, Client_ORBInitializer (0), -1); // No exceptions yet! ACE_NEW_RETURN (initializer1, Client_ORBInitializer (initializer2), -1); // No exceptions yet! PortableInterceptor::ORBInitializer_var initializer_var1 = initializer1; PortableInterceptor::ORBInitializer_var initializer_var2 = initializer2; try { PortableInterceptor::register_orb_initializer (initializer_var1.in ()); CORBA::ORB_var orb = CORBA::ORB_init (argc, argv); CORBA::ORB_var orb2 = CORBA::ORB_init (argc, argv, "SecondORB"); } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("Caught exception in client:"); return 1; } // The first ORBInitializer should be called twice, the second only once ACE_ASSERT (initializer1->pre_init_called == 2); ACE_ASSERT (initializer2->pre_init_called == 1); ACE_ASSERT (initializer1->post_init_called == 2); ACE_ASSERT (initializer2->post_init_called == 1); return 0; }
int ACE_TMAIN(int argc, ACE_TCHAR *argv[]) { int priority = (ACE_Sched_Params::priority_min (ACE_SCHED_FIFO) + ACE_Sched_Params::priority_max (ACE_SCHED_FIFO)) / 2; // Enable FIFO scheduling, e.g., RT scheduling class on Solaris. if (ACE_OS::sched_params (ACE_Sched_Params (ACE_SCHED_FIFO, priority, ACE_SCOPE_PROCESS)) != 0) { if (ACE_OS::last_error () == EPERM) { ACE_DEBUG ((LM_DEBUG, "client (%P|%t): user is not superuser, " "test runs in time-shared class\n")); } else ACE_ERROR ((LM_ERROR, "client (%P|%t): sched_params failed\n")); } int interceptor_type; get_interceptor_type (argc, argv, interceptor_type); try { PortableInterceptor::ORBInitializer_ptr temp_initializer; ACE_NEW_RETURN (temp_initializer, Client_ORBInitializer (interceptor_type), -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::Secure_Vault_var server = Test_Interceptors::Secure_Vault::_narrow (object.in ()); if (CORBA::is_nil (server.in ())) { ACE_ERROR_RETURN ((LM_ERROR, "Object reference <%s> is nil.\n", ior), 1); } ACE_DEBUG ((LM_DEBUG, "\nFunctionality test begins now...\n")); // This test is useful for benchmarking the differences when // the same method is intercepted by different interceptors // wanting to achieve different functionality. run_test (server.in ()); server->shutdown (); } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("Caught exception:"); return 1; } return 0; }