2 #include "ace/Get_Opt.h"
3 #include "ace/Thread_Manager.h"
5 const ACE_TCHAR
*ior
= ACE_TEXT("file://test.ior");
8 parse_args (int argc
, ACE_TCHAR
*argv
[])
10 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("k:"));
13 while ((c
= get_opts ()) != -1)
17 ior
= get_opts
.opt_arg ();
22 ACE_ERROR_RETURN ((LM_ERROR
,
29 // Indicates successful parsing of the command line
34 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
39 CORBA::ORB_init (argc
, argv
);
41 CORBA::Object_var poa_object
=
42 orb
->resolve_initial_references("RootPOA");
44 PortableServer::POA_var root_poa
=
45 PortableServer::POA::_narrow (poa_object
.in ());
47 if (CORBA::is_nil (poa_object
.in ()))
48 ACE_ERROR_RETURN ((LM_ERROR
,
49 " (%P|%t) Panic got a nil RootPOA\n"),
52 PortableServer::POAManager_var poa_manager
=
53 root_poa
->the_POAManager ();
55 if (parse_args (argc
, argv
) != 0)
58 CORBA::Object_var tmp
=
59 orb
->string_to_object(ior
);
61 Test::Coordinator_var coordinator
=
62 Test::Coordinator::_narrow(tmp
.in ());
64 if (CORBA::is_nil (coordinator
.in ()))
66 ACE_ERROR_RETURN ((LM_DEBUG
,
67 "Nil coordinator reference <%s>\n",
73 ACE_NEW_RETURN (peer_impl
,
76 PortableServer::ServantBase_var
peer_owner_transfer(peer_impl
);
78 PortableServer::ObjectId_var id
=
79 root_poa
->activate_object (peer_impl
);
81 CORBA::Object_var object
= root_poa
->id_to_reference (id
.in ());
84 Test::Peer::_narrow (object
.in ());
86 poa_manager
->activate ();
88 coordinator
->add_peer (peer
.in ());
92 // Wait for all the threads.
93 ACE_Thread_Manager::instance ()->wait ();
95 root_poa
->destroy (1, 1);
99 catch (const CORBA::Exception
& ex
)
101 ex
._tao_print_exception ("Exception caught:");