TAO_IDL: Fix Memory Leaks Caused By Annotations
[ACE_TAO.git] / TAO / tests / Bug_3746_Regression / server.cpp
blob4386d4f89a2a6f23283f40bb0a8cb7e889dce50e
1 #include "Test_i.h"
2 #include "ace/Get_Opt.h"
3 #include "ace/OS_NS_stdio.h"
5 const ACE_TCHAR *ior_output_file = ACE_TEXT ("test.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)
15 switch (c)
17 case 'o':
18 ior_output_file = get_opts.opt_arg ();
19 break;
21 case '?':
22 default:
23 ACE_ERROR_RETURN ((LM_ERROR,
24 "usage: %s "
25 "-o <iorfile>"
26 "\n",
27 argv [0]),
28 -1);
31 // Indicates successful parsing of the command line
32 return 0;
35 int
36 ACE_TMAIN(int argc, ACE_TCHAR *argv[])
38 try
40 CORBA::ORB_var orb =
41 CORBA::ORB_init (argc, argv);
43 CORBA::Object_var poa_object =
44 orb->resolve_initial_references ("RootPOA");
46 PortableServer::POA_var root_poa =
47 PortableServer::POA::_narrow (poa_object.in ());
49 if (CORBA::is_nil (root_poa.in ()))
51 ACE_ERROR_RETURN ((LM_ERROR,
52 " (%P|%t) Panic: nil RootPOA\n"),
53 1);
56 PortableServer::POAManager_var poa_manager = root_poa->the_POAManager ();
58 if (parse_args (argc, argv) != 0)
59 return 1;
61 BoundSequences *test_impl = 0;
62 ACE_NEW_RETURN (test_impl,
63 BoundSequences (orb.in ()),
64 1);
65 PortableServer::ServantBase_var owner_transfer (test_impl);
67 PortableServer::ObjectId_var id =
68 root_poa->activate_object (test_impl);
70 CORBA::Object_var object = root_poa->id_to_reference (id.in ());
72 Test::BoundSequences_var theServer =
73 Test::BoundSequences::_narrow (object.in ());
75 CORBA::String_var ior = orb->object_to_string (theServer.in ());
77 // Output the IOR to the <ior_output_file>
78 FILE *output_file= ACE_OS::fopen (ior_output_file, "w");
79 if (output_file == 0)
81 ACE_ERROR_RETURN ((LM_ERROR,
82 "Server - Cannot open output file for writing IOR: %s\n",
83 ior_output_file),
84 1);
86 ACE_OS::fprintf (output_file, "%s", ior.in ());
87 ACE_OS::fclose (output_file);
89 poa_manager->activate ();
91 orb->run ();
93 ACE_DEBUG ((LM_DEBUG, "Server - Event loop finished\n"));
95 root_poa->destroy (1, 1);
97 orb->destroy ();
99 catch (const CORBA::Exception& ex)
101 ex._tao_print_exception ("Server - Exception caught:");
102 return 1;
105 return 0;