Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_1627_Regression / server.cpp
blob9e102561cd566a98267c0ce1d280b5d0edfdc1f5
1 #include "ace/Get_Opt.h"
2 #include "ace/OS_NS_stdio.h"
3 #include "Test_i.h"
5 #include "tao/IORTable/IORTable.h"
7 const ACE_TCHAR *object_key = 0;
8 const ACE_TCHAR *ior_output_file = ACE_TEXT("server.ior");
10 int
11 parse_args (int argc, ACE_TCHAR *argv[])
13 ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("o:k:"));
14 int c;
16 while ((c = get_opts ()) != -1)
17 switch (c)
19 case 'k':
20 object_key = get_opts.opt_arg ();
21 break;
22 case 'o':
23 ior_output_file = get_opts.opt_arg ();
24 break;
25 case '?':
26 default:
27 ACE_ERROR_RETURN ((LM_ERROR,
28 "SERVER (%P): usage: %s "
29 "-o <ior output file>"
30 "-k <object key>"
31 "\n",
32 argv [0]),
33 -1);
35 // Indicates successful parsing of the command line
36 return 0;
39 int
40 ACE_TMAIN(int argc, ACE_TCHAR *argv[])
43 try
45 CORBA::ORB_var orb =
46 CORBA::ORB_init (argc, argv);
48 CORBA::Object_var poa_object =
49 orb->resolve_initial_references ("RootPOA");
51 if (CORBA::is_nil (poa_object.in ()))
52 ACE_ERROR_RETURN ((LM_ERROR,
53 "SERVER (%P): Unable to initialize the POA.\n"),
54 1);
56 PortableServer::POA_var root_poa =
57 PortableServer::POA::_narrow (poa_object.in ());
59 PortableServer::POAManager_var poa_manager =
60 root_poa->the_POAManager ();
62 if (parse_args (argc, argv) != 0)
63 return 1;
65 Test_i server_impl;
67 PortableServer::ObjectId_var id =
68 root_poa->activate_object (&server_impl);
70 CORBA::Object_var server = root_poa->id_to_reference (id.in ());
72 CORBA::String_var ior =
73 orb->object_to_string (server.in ());
75 CORBA::Object_var table_object =
76 orb->resolve_initial_references ("IORTable");
78 IORTable::Table_var adapter =
79 IORTable::Table::_narrow (table_object.in ());
81 adapter->bind("Name-with-hyphens", ior.in());
84 FILE *output_file= ACE_OS::fopen (ior_output_file, "w");
85 if (output_file == 0)
86 ACE_ERROR_RETURN ((LM_ERROR,
87 "SERVER (%P): Cannot open output file "
88 "for writing IOR: %s",
89 ior_output_file),
90 1);
91 ACE_OS::fprintf (output_file, "%s", ior.in ());
92 ACE_OS::fclose (output_file);
94 ACE_DEBUG ((LM_DEBUG,
95 "SERVER (%P): Activated as file://%s\n",
96 ior_output_file));
98 poa_manager->activate();
100 orb->run ();
102 root_poa->destroy (1, 1);
104 catch (const CORBA::Exception& ex)
106 ex._tao_print_exception ("SERVER (%P): Caught exception:");
107 return 1;
110 return 0;