1 #include "ace/Get_Opt.h"
3 #include "tao/BiDir_GIOP/BiDirGIOP.h"
4 #include "tao/AnyTypeCode/Any.h"
5 #include "ace/OS_NS_stdio.h"
7 const ACE_TCHAR
*ior_output_file
= 0;
8 int no_iterations
= 10;
11 parse_args (int argc
, ACE_TCHAR
*argv
[])
13 ACE_Get_Opt
get_opts (argc
, argv
, ACE_TEXT("o:i:"));
16 while ((c
= get_opts ()) != -1)
20 ior_output_file
= get_opts
.opt_arg ();
23 no_iterations
= ACE_OS::atoi (get_opts
.opt_arg ());
27 ACE_ERROR_RETURN ((LM_ERROR
,
35 // Indicates successful parsing of the command line
40 ACE_TMAIN(int argc
, ACE_TCHAR
*argv
[])
45 CORBA::ORB_init (argc
, argv
);
47 CORBA::Object_var poa_object
=
48 orb
->resolve_initial_references ("RootPOA");
50 if (CORBA::is_nil (poa_object
.in ()))
51 ACE_ERROR_RETURN ((LM_ERROR
,
52 " (%P|%t) Unable to initialize the POA.\n"),
55 PortableServer::POA_var root_poa
=
56 PortableServer::POA::_narrow (poa_object
.in ());
58 PortableServer::POAManager_var poa_manager
=
59 root_poa
->the_POAManager ();
61 // Policies for the childPOA to be created.
62 CORBA::PolicyList
policies (1);
66 pol
<<= BiDirPolicy::BOTH
;
68 orb
->create_policy (BiDirPolicy::BIDIRECTIONAL_POLICY_TYPE
,
71 // Create POA as child of RootPOA with the above policies. This POA
72 // will receive request in the same connection in which it sent
74 PortableServer::POA_var child_poa
=
75 root_poa
->create_POA ("childPOA",
79 // Creation of childPOA is over. Destroy the Policy objects.
80 for (CORBA::ULong i
= 0;
81 i
< policies
.length ();
84 policies
[i
]->destroy ();
87 poa_manager
->activate ();
89 if (parse_args (argc
, argv
) != 0)
92 Simple_Server_i
*server_impl
= 0;
94 ACE_NEW_THROW_EX (server_impl
,
95 Simple_Server_i (orb
.in (),
99 PortableServer::ServantBase_var
owner_transfer (server_impl
);
100 PortableServer::ObjectId_var id
=
101 PortableServer::string_to_ObjectId ("simple_server");
103 child_poa
->activate_object_with_id (id
.in (),
106 CORBA::Object_var obj
=
107 child_poa
->id_to_reference (id
.in ());
109 CORBA::String_var ior
=
110 orb
->object_to_string (obj
.in ());
112 ACE_DEBUG ((LM_DEBUG
, "Activated as <%C>\n", ior
.in ()));
114 // If the ior_output_file exists, output the ior to it
115 if (ior_output_file
!= 0)
117 FILE *output_file
= ACE_OS::fopen (ior_output_file
, "w");
118 if (output_file
== 0)
119 ACE_ERROR_RETURN ((LM_ERROR
,
120 "Cannot open output file for writing IOR: %s",
123 ACE_OS::fprintf (output_file
, "%s", ior
.in ());
124 ACE_OS::fclose (output_file
);
127 // Run the event loop
130 ACE_DEBUG ((LM_DEBUG
, "event loop finished\n"));
132 root_poa
->destroy (true, true);
134 catch (const CORBA::Exception
& ex
)
136 ex
._tao_print_exception ("Caught exception:");