Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / DevGuideExamples / Multithreading / Reactive / MessengerServer.cpp
blobf0ec520fa41d445fe66371128db4294ea1ec1897
1 #include "Messenger_i.h"
2 #include <iostream>
3 #include <fstream>
4 #include "ace/Get_Opt.h"
6 const ACE_TCHAR *ior_output_file = ACE_TEXT ("Messenger.ior");
8 int
9 parse_args (int argc, ACE_TCHAR *argv[])
11 ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("o:"));
12 int c;
14 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);
30 // Indicates successful parsing of the command line
31 return 0;
34 int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
36 try {
37 // Initialize the ORB.
38 CORBA::ORB_var orb = CORBA::ORB_init( argc, argv );
40 if (parse_args (argc, argv) != 0)
41 return 1;
43 //Get reference to the RootPOA.
44 CORBA::Object_var obj = orb->resolve_initial_references( "RootPOA" );
45 PortableServer::POA_var poa = PortableServer::POA::_narrow( obj.in() );
47 // Activate the POAManager.
48 PortableServer::POAManager_var mgr = poa->the_POAManager();
49 mgr->activate();
51 // Create a servant.
52 PortableServer::Servant_var<Messenger_i> messenger_servant = new Messenger_i;
54 // Register the servant with the RootPOA, obtain its object
55 // reference, stringify it, and write it to a file.
56 PortableServer::ObjectId_var oid =
57 poa->activate_object( messenger_servant.in() );
58 CORBA::Object_var messenger_obj = poa->id_to_reference( oid.in() );
59 CORBA::String_var str = orb->object_to_string( messenger_obj.in() );
60 std::ofstream iorFile( ACE_TEXT_ALWAYS_CHAR(ior_output_file) );
61 iorFile << str.in() << std::endl;
62 iorFile.close();
63 std::cout << "IOR written to file " << ACE_TEXT_ALWAYS_CHAR(ior_output_file) << std::endl;
65 // Accept requests from clients.
66 orb->run();
67 orb->destroy();
69 catch(const CORBA::Exception& ex) {
70 std::cerr << "CORBA exception: " << ex << std::endl;
71 return 1;
74 return 0;