Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / Bug_2429_Regression / server.cpp
blobc03998bd712a6998e3023222831eb900853ad2df
1 #include "ace/Get_Opt.h"
2 #include "ace/OS_NS_stdio.h"
3 #include "ChildServant.h"
5 const ACE_TCHAR *ior_output_file = ACE_TEXT("server.ior");
7 int
8 parse_args (int argc, ACE_TCHAR *argv[])
10 ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("o:"));
11 int c;
13 while ((c = get_opts ()) != -1)
14 switch (c)
16 case 'o':
17 ior_output_file = get_opts.opt_arg ();
18 break;
19 case '?':
20 default:
21 ACE_ERROR_RETURN ((LM_ERROR,
22 "usage: %s "
23 "-o <iorfile>"
24 "\n",
25 argv [0]),
26 -1);
29 // Indicates successful parsing of the command line
30 return 0;
33 int
34 ACE_TMAIN(int argc, ACE_TCHAR *argv[])
36 try
38 CORBA::ORB_var orb =
39 CORBA::ORB_init (argc,
40 argv);
42 CORBA::Object_var poa_object =
43 orb->resolve_initial_references ("RootPOA");
45 PortableServer::POA_var root_poa =
46 PortableServer::POA::_narrow (poa_object.in ());
48 PortableServer::POAManager_var poa_manager =
49 root_poa->the_POAManager ();
51 if (parse_args (argc, argv) != 0)
52 return -1;
54 ChildServant servant (orb.in ());
56 PortableServer::ObjectId_var id =
57 root_poa->activate_object (&servant);
59 CORBA::Object_var object = root_poa->id_to_reference (id.in ());
61 Child_var server =
62 Child::_narrow (object.in ());
64 CORBA::String_var ior =
65 orb->object_to_string (server.in ());
67 FILE *output_file = ACE_OS::fopen (ior_output_file, "w");
68 if (output_file == 0)
69 ACE_ERROR_RETURN ((LM_ERROR,
70 "Cannot open output file for writing IOR: %s",
71 ior_output_file),
72 -1);
73 ACE_OS::fprintf (output_file, "%s", ior.in ());
74 ACE_OS::fclose (output_file);
76 poa_manager->activate ();
78 orb->run ();
80 ACE_DEBUG ((LM_DEBUG, "event loop finished\n"));
82 root_poa->destroy (true, true);
84 catch (const CORBA::Exception& ex)
86 ex._tao_print_exception ("Exception caught:");
87 return -1;
90 return 0;