📄 server.cc
字号:
#include "hello.h"#ifdef HAVE_ANSI_CPLUSPLUS_HEADERS#include <fstream>#else // HAVE_ANSI_CPLUSPLUS_HEADERS#include <fstream.h>#endif // HAVE_ANSI_CPLUSPLUS_HEADERSusing namespace std;using namespace PortableInterceptor;CORBA::ORB_ptr orb_G;CORBA::Long countx = 0;class HelloWorld_impl : virtual public POA_HelloWorld{public: void hello(); void oneway_hello();};voidHelloWorld_impl::hello(){ cout << "server: Hello World" << endl; if (countx == 1) throw CORBA::NO_PERMISSION(); countx++;}voidHelloWorld_impl::oneway_hello(){ cout << "server: oneway: Hello World" << endl;}class HelloInterceptor : virtual public ServerRequestInterceptor, virtual public CORBA::LocalObject{ CORBA::String_var name_;public: HelloInterceptor() { name_ = ""; } HelloInterceptor(const char* name) { name_ = CORBA::string_dup(name); } char* name() { return CORBA::string_dup(name_.in()); } void destroy() {} virtual void receive_request_service_contexts(ServerRequestInfo_ptr ri) { cout << "server: receive_request_service_contexts" << endl; } virtual void receive_request(ServerRequestInfo_ptr ri) { cout << "server: receive_request" << endl; } virtual void send_reply(ServerRequestInfo_ptr ri) { cout << "server: send_reply" << endl; } virtual void send_exception(ServerRequestInfo_ptr ri) { cout << "server: send_exception" << endl; } virtual void send_other(ServerRequestInfo_ptr ri) { cout << "server: send_other" << endl; }};class HelloInitializer : virtual public ORBInitializer, virtual public CORBA::LocalObject{public: HelloInitializer() {} ~HelloInitializer() {} virtual void pre_init(ORBInitInfo_ptr info) { // register server interceptor(s) HelloInterceptor* interceptor = new HelloInterceptor("HelloInterceptor"); info->add_server_request_interceptor(interceptor); } virtual void post_init(ORBInitInfo_ptr info) { // nothing }};intmain (int argc, char *argv[]){ HelloInitializer* init = new HelloInitializer; PortableInterceptor::register_orb_initializer(init); orb_G = CORBA::ORB_init (argc, argv); CORBA::Object_var poaobj = orb_G->resolve_initial_references ("RootPOA"); PortableServer::POA_var poa = PortableServer::POA::_narrow (poaobj); PortableServer::POAManager_var mgr = poa->the_POAManager(); HelloWorld_impl * hello = new HelloWorld_impl; PortableServer::ObjectId_var oid = poa->activate_object (hello); CORBA::Object_var ref = poa->id_to_reference (oid.in()); CORBA::String_var str = orb_G->object_to_string (ref.in()); ofstream of ("hello.ref"); of << str.in() << endl; of.close (); cout << "Running." << endl; mgr->activate ();// CORBA::Object_var obj = orb->string_to_object (str);// HelloWorld_var h = HelloWorld::_narrow (obj);// if (CORBA::is_nil (h)) {// printf ("oops: could not locate HelloWorld server\n");// exit (1);// }// h->hello (); orb_G->run(); poa->destroy (TRUE, TRUE); delete hello; return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -