📄 client.cc
字号:
#include "hello.h"#ifdef HAVE_UNISTD_H#include <unistd.h>#endif#ifdef _WIN32#include <direct.h>#endifusing namespace std;PortableInterceptor::SlotId slot_id;class MyClientInterceptor : virtual public PortableInterceptor::ClientRequestInterceptor, virtual public CORBA::LocalObject{ string nm;public: MyClientInterceptor() { nm = ""; } MyClientInterceptor(char * name) { nm = name; } char* name() { return CORBA::string_dup(nm.c_str()); } void destroy() { cerr << this->name() << " destroy" << endl; } void send_request(PortableInterceptor::ClientRequestInfo_ptr ri) { cout << "client: send_request" << endl; cout << "valid operations" << endl; try { ri->request_id(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->operation(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->arguments(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->exceptions(); } catch (CORBA::NO_RESOURCES& ex) { assert(ex.minor() == 1 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->contexts(); } catch (CORBA::NO_RESOURCES& ex) { assert(ex.minor() == 1 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->operation_context(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->response_expected(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->sync_scope(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->get_slot(slot_id); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->get_request_service_context(0); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::BAD_PARAM& ex) { assert(ex.minor() == 23 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->target(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->effective_target(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->effective_profile(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->get_effective_component(0); } catch (CORBA::BAD_PARAM& ex) { assert(ex.minor() == 25 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->get_effective_components(0); } catch (CORBA::BAD_PARAM& ex) { assert(ex.minor() == 25 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->get_request_policy(0); } catch (CORBA::INV_POLICY& ex) { assert(ex.minor() == 1 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { IOP::ServiceContext sc; sc.context_id = 0; sc.context_data.length(0); ri->add_request_service_context(sc, FALSE); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } cout << "invalid operations" << endl; try { ri->result(); assert(0); } catch (CORBA::BAD_INV_ORDER& ex) { assert(ex.minor() == 10 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->reply_status(); assert(0); } catch (CORBA::BAD_INV_ORDER& ex) { assert(ex.minor() == 10 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->forward_reference(); assert(0); } catch (CORBA::BAD_INV_ORDER& ex) { assert(ex.minor() == 10 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->get_reply_service_context(0); assert(0); } catch (CORBA::BAD_INV_ORDER& ex) { assert(ex.minor() == 10 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->received_exception(); assert(0); } catch (CORBA::BAD_INV_ORDER& ex) { assert(ex.minor() == 10 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->received_exception_id(); assert(0); } catch (CORBA::BAD_INV_ORDER& ex) { assert(ex.minor() == 10 && ex.completed() == CORBA::COMPLETED_NO); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } } void send_poll(PortableInterceptor::ClientRequestInfo_ptr ri) { cout << "client: send_poll" << endl; } void receive_reply(PortableInterceptor::ClientRequestInfo_ptr ri) { cout << "client: receive_reply" << endl; cout << "valid operations" << endl; try { ri->request_id(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->operation(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->arguments(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->exceptions(); } catch (CORBA::NO_RESOURCES& ex) { assert(ex.minor() == 1 && ex.completed() == CORBA::COMPLETED_YES); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->contexts(); } catch (CORBA::NO_RESOURCES& ex) { assert(ex.minor() == 1 && ex.completed() == CORBA::COMPLETED_YES); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->operation_context(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->result(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->response_expected(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->sync_scope(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->reply_status(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->get_slot(slot_id); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->get_request_service_context(0); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::BAD_PARAM& ex) { assert(ex.minor() == 23 && ex.completed() == CORBA::COMPLETED_YES); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->get_reply_service_context(0); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl; assert(0); } try { ri->target(); } catch (CORBA::BAD_INV_ORDER& ex) { assert(0); } catch (CORBA::Exception& ex) { cout << ex._repoid() << endl;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -