//============================================================================= /** * @file simple_client.cpp * * A very simple client which uses the AMI callback model. * * @author Alexander Babu Arulanthu * @author Michael Kircher */ //============================================================================= #include "ace/Get_Opt.h" #include "ace/Task.h" #include "ami_testS.h" const ACE_TCHAR *ior = ACE_TEXT("file://test.ior"); int shutdown_flag = 0; int debug = 0; int result = 0; int parse_args (int argc, ACE_TCHAR *argv[]) { ACE_Get_Opt get_opts (argc, argv, ACE_TEXT("dk:x")); int c; while ((c = get_opts ()) != -1) switch (c) { case 'd': debug = 1; break; case 'k': ior = get_opts.opt_arg (); break; case 'x': shutdown_flag = 1; break; case '?': default: ACE_ERROR_RETURN ((LM_ERROR, "usage: %s " "-k " "-x " "\n", argv [0]), -1); } // Indicates successful parsing of the command line return 0; } class Handler : public POA_A::AMI_AMI_TestHandler { public: /// Constructor. Handler (void) {}; /// Destructor. ~Handler (void) {}; void get_yadda (CORBA::Long result) { ACE_ERROR ((LM_ERROR, "Error: Callback method called: result <%d>\n", result)); result = 1; }; void get_yadda_excep (::Messaging::ExceptionHolder *excep_holder) { ACE_DEBUG ((LM_DEBUG, "Callback method called:\n")); try { excep_holder->raise_exception (); } catch (const A::DidTheRightThingB& ex) { ACE_DEBUG ((LM_DEBUG, "... exception received successfully\n")); if (ex.id != 42) { ACE_ERROR ((LM_ERROR, "ERROR: ex.id not 42: %d\n", ex.id)); result = 1; } if (ACE_OS::strcmp (ex.whatDidTheRightThing.in (), "Hello world") != 0) { ACE_ERROR ((LM_ERROR, "ERROR: ex.whatDidTheRightThing not ok: <%C>\n", ex.whatDidTheRightThing.in ())); result = 1; } } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("ERROR"); ACE_ERROR ((LM_ERROR, "... caught the wrong exception -> ERROR\n")); } }; void set_yadda (void) { ACE_ERROR ((LM_ERROR, "Error: Callback method called:\n")); result = 1; }; void set_yadda_excep (::Messaging::ExceptionHolder *excep_holder) { ACE_DEBUG ((LM_DEBUG, "Callback method called:\n")); try { excep_holder->raise_exception (); } catch (const A::DidTheRightThing& ex) { ACE_DEBUG ((LM_DEBUG, "... exception received successfully\n")); if (ex.id != 42) { ACE_ERROR ((LM_ERROR, "ERROR: ex.id not 42: %d\n", ex.id)); result = 1; } if (ACE_OS::strcmp (ex.whatDidTheRightThing.in (), "Hello world") != 0) { ACE_ERROR ((LM_ERROR, "ERROR: ex.whatDidTheRightThing not ok: <%C>\n", ex.whatDidTheRightThing.in ())); result = 1; } } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("ERROR"); ACE_ERROR ((LM_ERROR, "... caught the wrong exception -> ERROR\n")); } }; void get_dadda (CORBA::Long result) { ACE_ERROR ((LM_ERROR, "Error: Callback method called: result <%d>\n", result)); result = 1; }; void get_dadda_excep (::Messaging::ExceptionHolder *excep_holder) { ACE_DEBUG ((LM_DEBUG, "Callback method called:\n")); try { excep_holder->raise_exception (); } catch (const A::DidTheRightThing& ex) { ACE_DEBUG ((LM_DEBUG, "... exception received successfully\n")); if (ex.id != 42) { ACE_ERROR ((LM_ERROR, "ERROR: ex.id not 42: %d\n", ex.id)); result = 1; } if (ACE_OS::strcmp (ex.whatDidTheRightThing.in (), "Hello world") != 0) { ACE_ERROR ((LM_ERROR, "ERROR: ex.whatDidTheRightThing not ok: <%C>\n", ex.whatDidTheRightThing.in ())); result = 1; } } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("ERROR"); ACE_ERROR ((LM_ERROR, "... caught the wrong exception -> ERROR\n")); } }; void inout_arg_test (const char *) { ACE_DEBUG ((LM_DEBUG, "Callback method called:\n")); } void inout_arg_test_excep (::Messaging::ExceptionHolder *) { } }; int ACE_TMAIN(int argc, ACE_TCHAR *argv[]) { try { CORBA::ORB_var orb = CORBA::ORB_init (argc, argv); CORBA::Object_var object_var = orb->resolve_initial_references ("RootPOA"); PortableServer::POA_var poa_var = PortableServer::POA::_narrow (object_var.in ()); PortableServer::POAManager_var poa_manager_var = poa_var->the_POAManager (); poa_manager_var->activate (); if (parse_args (argc, argv) != 0) return 1; // We reuse the object_var smart pointer! object_var = orb->string_to_object (ior); A::AMI_Test_var ami_test_var = A::AMI_Test::_narrow (object_var.in ()); if (CORBA::is_nil (ami_test_var.in ())) { ACE_ERROR_RETURN ((LM_ERROR, "Object reference <%s> is nil.\n", ior), 1); } // Instantiate the ReplyHandler and register that with the POA. Handler handler; PortableServer::ObjectId_var id = poa_var->activate_object (&handler); CORBA::Object_var object = poa_var->id_to_reference (id.in ()); A::AMI_AMI_TestHandler_var the_handler_var = A::AMI_AMI_TestHandler::_narrow (object.in ()); // Begin test of attributes ami_test_var->sendc_get_yadda (the_handler_var.in ()); ami_test_var->sendc_set_yadda (the_handler_var.in (), 4711); ami_test_var->sendc_get_yadda (the_handler_var.in ()); ami_test_var->sendc_get_dadda (the_handler_var.in ()); // End test of attributes if (debug) { ACE_DEBUG ((LM_DEBUG, "Issuing a synchronous method to collect the AMI replies\n")); } CORBA::String_var mystring = CORBA::string_dup ("Hello"); ami_test_var->inout_arg_test (mystring.inout ()); if (shutdown_flag) { ami_test_var->shutdown (); } poa_var->destroy (1, // ethernalize objects 0); // wait for completion orb->destroy (); } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("Caught exception:"); return 1; } return result; }