/* * A Bank factory that creates Account objects */ #define MICO_CONF_INTERCEPT #include "account.h" #include #ifdef HAVE_ANSI_CPLUSPLUS_HEADERS #include #else #include #endif using namespace std; /* * Implementation of the Account */ class Account_impl : virtual public POA_Account { public: Account_impl (); void deposit (CORBA::ULong, CORBA::ULong_out prev); void withdraw (CORBA::ULong, CORBA::ULong_out prev); CORBA::Long balance (); private: CORBA::Long bal; }; Account_impl::Account_impl () { bal = 0; } void Account_impl::deposit (CORBA::ULong amount, CORBA::ULong_out prev) { prev = bal; bal += amount; } void Account_impl::withdraw (CORBA::ULong amount, CORBA::ULong_out prev) { prev = bal; if (amount > 400) { mico_throw(Account::BigAmount()); return; } bal -= amount; } CORBA::Long Account_impl::balance () { return bal; } /* * Implementation of the Bank */ class Bank_impl : virtual public POA_Bank { public: Account_ptr create (); void shutdown(); }; Account_ptr Bank_impl::create () { /* * Create a new account (which is never deleted) */ Account_impl * ai = new Account_impl; /* * Obtain a reference using _this. This implicitely activates the * account servant (the RootPOA, which is the object's _default_POA, * has the IMPLICIT_ACTIVATION policy) */ Account_ptr aref = ai->_this (); assert (!CORBA::is_nil (aref)); /* * Return the reference */ return aref; } void Bank_impl::shutdown() { } ////////////////////////////////////////////////// // Request interceptor class MyServerInterceptor : virtual public PortableInterceptor::ServerRequestInterceptor, virtual public CORBA::LocalObject { string nm; public: MyServerInterceptor() { nm = ""; } MyServerInterceptor(const char * name) { nm = name; } char* name() { return CORBA::string_dup(nm.c_str()); } void destroy() {} void receive_request_service_contexts( PortableInterceptor::ServerRequestInfo_ptr ri ) { cout << name() << ": " << "receive_request_service_contexts" << endl; cout << "Operation = " << ri->operation() << endl; // mico_throw(CORBA::NO_IMPLEMENT()); } void receive_request( PortableInterceptor::ServerRequestInfo_ptr ri ) { cout << name() << ": " << "receive_request" << endl; cout << "OA = "; CORBA::OctetSeq * oaid = ri->adapter_id(); for (int i = 0; i < oaid->length(); i++) cout << (*oaid)[i]; cout << endl; cout << "ObjectID = `"; CORBA::OctetSeq* oid = ri->object_id(); for (int i = 0; i < oid->length(); i++) cout << (*oid)[i]; cout << "' Interface = "; cout << ri->target_most_derived_interface() << " Operation = " << ri->operation() << endl; cout << "Parameters: "; Dynamic::ParameterList * arg = ri->arguments(); if (arg->length() > 0) { for (int i = 0; i < arg->length(); i++) { if ((*arg)[i].mode == CORBA::PARAM_IN) cout << " mode=" << "input"; else if ((*arg)[i].mode == CORBA::PARAM_OUT) cout << " mode=" << "out"; else if ((*arg)[i].mode == CORBA::PARAM_INOUT) cout << " mode=" << "inout"; cout << " value="; CORBA::ULong v; CORBA::Long v2; const char * v3; CORBA::TypeCode_ptr t = (*arg)[i].argument.type(); switch (t->unalias()->kind()) { case CORBA::tk_ulong : (*arg)[i].argument >>= v; cout << v; break; case CORBA::tk_long : (*arg)[i].argument >>= v2; cout << v2; break; case CORBA::tk_string : (*arg)[i].argument >>= v3; cout << v3; break; } } cout << endl; } else cout << "operation without parameters!" << endl; cout << "operation context:" << endl; Dynamic::RequestContext* ctx = ri->operation_context(); for (int i = 0; i < ctx->length(); i += 2) { cout << (*ctx)[i] << " : " << (*ctx)[i + 1] << endl; } // mico_throw(CORBA::NO_IMPLEMENT()); } void send_reply( PortableInterceptor::ServerRequestInfo_ptr ri ) { cout << name() << ": " << "send_reply" << endl; cout << "OA = "; CORBA::OctetSeq * oaid = ri->adapter_id(); for (int i = 0; i < oaid->length(); i++) cout << (*oaid)[i]; cout << endl; cout << "ObjectID = `"; CORBA::OctetSeq* oid = ri->object_id(); for (int i = 0; i < oid->length(); i++) cout << (*oid)[i]; cout << "' Interface = "; cout << ri->target_most_derived_interface() << " Operation = " << ri->operation() << endl; cout << "Parameters: "; Dynamic::ParameterList * arg = ri->arguments(); if (arg->length() > 0) { for (int i = 0; i < arg->length(); i++) { if ((*arg)[i].mode == CORBA::PARAM_IN) cout << " mode=" << "input"; else if ((*arg)[i].mode == CORBA::PARAM_OUT) cout << " mode=" << "out"; else if ((*arg)[i].mode == CORBA::PARAM_INOUT) cout << " mode=" << "inout"; cout << " value="; CORBA::ULong v; CORBA::Long v2; const char * v3; CORBA::TypeCode_ptr t = (*arg)[i].argument.type(); switch (t->unalias()->kind()) { case CORBA::tk_ulong : (*arg)[i].argument >>= v; cout << v; break; case CORBA::tk_long : (*arg)[i].argument >>= v2; cout << v2; break; case CORBA::tk_string : (*arg)[i].argument >>= v3; cout << v3; break; } } cout << endl; } else cout << "operation without parameters!" << endl; cout <<"result = "; CORBA::Any * res = ri->result(); CORBA::ULong v; CORBA::Long v2; const char * v3; CORBA::TypeCode_ptr t = res->type(); switch (t->unalias()->kind()) { case CORBA::tk_null : case CORBA::tk_void : cout << endl; break; case CORBA::tk_ulong : *res >>= v; cout << v << endl; break; case CORBA::tk_long : *res >>= v2; cout << v2 << endl; break; case CORBA::tk_string : *res >>= v3; cout << v3 << endl; break; } cout << "operation context:" << endl; Dynamic::RequestContext* ctx = ri->operation_context(); for (int i = 0; i < ctx->length(); i += 2) { cout << (*ctx)[i] << " : " << (*ctx)[i + 1] << endl; } // mico_throw(CORBA::NO_IMPLEMENT()); } void send_exception( PortableInterceptor::ServerRequestInfo_ptr ri ) { cout << name() << ": " << "send_exception" << endl; CORBA::Any* ex = ri->sending_exception(); CORBA::TypeCode_ptr tc = ex->type(); const char * id = tc->id (); cout << "Exception ID = "<< id << endl; // cout << "throw NO_PERMISSION" << endl; // mico_throw(CORBA::NO_PERMISSION()); } void send_other( PortableInterceptor::ServerRequestInfo_ptr ri ) { cout << name() << ": " << "send_other" << endl; } }; class MyServerInitializer : virtual public PortableInterceptor::ORBInitializer, virtual public CORBA::LocalObject { public: MyServerInitializer() {} ~MyServerInitializer() {} virtual void pre_init( PortableInterceptor::ORBInitInfo_ptr info ) { // register server interceptor(s) MyServerInterceptor * interceptor = new MyServerInterceptor("MyServerInterceptor"); info->add_server_request_interceptor(interceptor); MyServerInterceptor * interceptor2 = new MyServerInterceptor("MyServerInterceptor2"); info->add_server_request_interceptor(interceptor2); } virtual void post_init( PortableInterceptor::ORBInitInfo_ptr info ) { // nothing } }; class MyClientInterceptor : virtual public PortableInterceptor::ClientRequestInterceptor, virtual public CORBA::LocalObject { string nm; public: MyClientInterceptor() { nm = ""; } MyClientInterceptor(const char * name) { nm = name; } char* name() { return CORBA::string_dup(nm.c_str()); } void destroy() {} void send_request( PortableInterceptor::ClientRequestInfo_ptr ri ) { char * op = ri->operation(); cout << name() << ": "<< "send_request, repoid = " << ri->target()->_repoid() << " operation = " << op << endl; Dynamic::ParameterList * arg = ri->arguments(); if (arg->length() > 0) { for (int i = 0; i < arg->length(); i++) { if ((*arg)[i].mode == CORBA::PARAM_IN) cout << "Parameter mode=" << "input" << endl; else if ((*arg)[i].mode == CORBA::PARAM_OUT) cout << "Parameter mode=" << "out" << endl; else if ((*arg)[i].mode == CORBA::PARAM_INOUT) cout << "Parameter mode=" << "inout" << endl; cout << "Parameter value="; CORBA::ULong v; CORBA::Long v2; const char * v3; CORBA::TypeCode_ptr t = (*arg)[i].argument.type(); switch (t->unalias()->kind()) { case CORBA::tk_ulong : (*arg)[i].argument >>= v; cout << v << endl; break; case CORBA::tk_long : (*arg)[i].argument >>= v2; cout << v2 << endl; break; case CORBA::tk_string : (*arg)[i].argument >>= v3; cout << v3 << endl; break; } } } else cout << "operation without parameters!" << endl; cout << "operation context:" << endl; Dynamic::RequestContext* ctx = ri->operation_context(); for (int i = 0; i < ctx->length(); i += 2) { cout << (*ctx)[i] << " : " << (*ctx)[i + 1] << endl; } } void send_poll(PortableInterceptor::ClientRequestInfo_ptr ri) { } void receive_reply( PortableInterceptor::ClientRequestInfo_ptr ri ) { char * op = ri->operation(); cout << name() << ": " << "receive_reply, repoid = "<< ri->target()->_repoid() << " operation = " << op << endl; Dynamic::ParameterList * arg = ri->arguments(); if (arg->length() > 0) { for (int i = 0; i < arg->length(); i++) { if ((*arg)[i].mode == CORBA::PARAM_IN) cout << "Parameter mode=" << "input" << endl; else if ((*arg)[i].mode == CORBA::PARAM_OUT) cout << "Parameter mode=" << "out" << endl; else if ((*arg)[i].mode == CORBA::PARAM_INOUT) cout << "Parameter mode=" << "inout" << endl; cout << "Parameter value="; CORBA::ULong v; CORBA::Long v2; const char * v3; CORBA::TypeCode_ptr t = (*arg)[i].argument.type(); switch (t->unalias()->kind()) { case CORBA::tk_ulong : (*arg)[i].argument >>= v; cout << v << endl; break; case CORBA::tk_long : (*arg)[i].argument >>= v2; cout << v2 << endl; break; case CORBA::tk_string : (*arg)[i].argument >>= v3; cout << v3 << endl; break; } } } else cout << "operation without parameters!" << endl; cout <<"result = "; CORBA::Any * res = ri->result(); CORBA::ULong v; CORBA::Long v2; const char * v3; CORBA::TypeCode_ptr t = res->type(); switch (t->unalias()->kind()) { case CORBA::tk_null : case CORBA::tk_void : cout << endl; break; case CORBA::tk_ulong : *res >>= v; cout << v << endl; break; case CORBA::tk_long : *res >>= v2; cout << v2 << endl; break; case CORBA::tk_string : *res >>= v3; cout << v3 << endl; break; } cout << "operation context:" << endl; Dynamic::RequestContext* ctx = ri->operation_context(); for (int i = 0; i < ctx->length(); i += 2) { cout << (*ctx)[i] << " : " << (*ctx)[i + 1] << endl; } } void receive_exception( PortableInterceptor::ClientRequestInfo_ptr ri ) { char * op = ri->operation(); cout << name() << ": " << "receive_exception, repoid = "<< ri->target()->_repoid() << " operation = " << op << endl; char * exid = ri->received_exception_id(); CORBA::Any * ex = ri->received_exception(); cout << "exception ID = " << exid << endl; // mico_throw(CORBA::BAD_PARAM()); } void receive_other( PortableInterceptor::ClientRequestInfo_ptr ri ) { cout << name() << ": " << "receive_other, repoid = "<< ri->target()->_repoid() << " operation = " << ri->operation() << endl; cout << "exception ID = " << ri->received_exception_id() << endl; } }; class MyClientInitializer : virtual public PortableInterceptor::ORBInitializer, virtual public CORBA::LocalObject { public: MyClientInitializer() {} ~MyClientInitializer() {} virtual void pre_init( PortableInterceptor::ORBInitInfo_ptr info ) { // register interceptor MyClientInterceptor * interceptor = new MyClientInterceptor("MyInterceptor"); info->add_client_request_interceptor(interceptor); MyClientInterceptor * interceptor2 = new MyClientInterceptor("MyInterceptor2"); info->add_client_request_interceptor(interceptor2); // MyClientInterceptor * interceptor3 = new MyClientInterceptor("MyInterceptor3"); // info->add_client_request_interceptor(interceptor3); } virtual void post_init( PortableInterceptor::ORBInitInfo_ptr info ) { // nothing } }; int main (int argc, char *argv[]) { MyServerInitializer * ini_server = new MyServerInitializer; PortableInterceptor::register_orb_initializer(ini_server); MyClientInitializer * ini_client = new MyClientInitializer; PortableInterceptor::register_orb_initializer(ini_client); /* * Initialize the ORB */ CORBA::ORB_var orb = CORBA::ORB_init (argc, argv); /* * Obtain a reference to the RootPOA and its Manager */ CORBA::Object_var poaobj = orb->resolve_initial_references ("RootPOA"); PortableServer::POA_var poa = PortableServer::POA::_narrow (poaobj); PortableServer::POAManager_var mgr = poa->the_POAManager(); CORBA::PolicyList pl; pl.length(1); pl[0] = poa->create_id_assignment_policy(PortableServer::USER_ID); PortableServer::POA_var poa2 = poa->create_POA("MyPOA", mgr, pl); cout << "RootPOA id: `"; CORBA::OctetSeq* poa_id = poa->id(); for(CORBA::ULong i=0; ilength(); i++) cout << (*poa_id)[i]; cout << "'" << endl; delete poa_id; cout << "MyPOA id: `"; poa_id = poa2->id(); for(CORBA::ULong i=0; ilength(); i++) cout << (*poa_id)[i]; cout << "'" << endl; /* * Create a Bank */ Bank_impl * micocash = new Bank_impl; /* * Activate the Bank */ PortableServer::ObjectId_var oid = PortableServer::string_to_ObjectId("Bank_impl"); //PortableServer::ObjectId_var oid = poa->activate_object_with_id (oid, micocash); poa2->activate_object_with_id (oid, micocash); /* * Write reference to file */ ofstream of ("Bank.ref"); CORBA::Object_var ref = poa2->id_to_reference (oid.in()); CORBA::String_var str = orb->object_to_string (ref.in()); of << str.in() << endl; of.close (); /* * Activate the POA and start serving requests */ cout << "Running." << endl; mgr->activate (); // // client side // char pwd[256], uri[300]; sprintf (uri, "file://%s/Bank.ref", getcwd(pwd, 256)); CORBA::Object_var obj = orb->string_to_object (uri); Bank_var bank = Bank::_narrow (obj); if (CORBA::is_nil (bank)) { cout << "Client: oops: could not locate Bank" << endl; exit (1); } /* * Open an account */ cout << "Client: create()" << endl; Account_var account = bank->create (); if (CORBA::is_nil (account)) { cout << "Client: oops: account is nil" << endl; exit (1); } /* * Deposit and withdraw some money */ CORBA::ULong prev; cout << "Client: deposit()" << endl; account->deposit (700, prev); cout << "Client: withdraw()" << endl; try { account->withdraw (450, prev); } catch (...) { cout << "Client: Exception occured, try again..." << endl; cout << "Client: withdraw()" << endl; account->withdraw (400, prev); } cout << "Client: balance()" << endl; CORBA::Long bal = account->balance (); cout << "Client: Balance is " << bal << endl; poa->destroy (TRUE, TRUE); delete micocash; return 0; }