00001 #ifndef _IT_BUS_BINDING_MANAGER_H_
00002 #define _IT_BUS_BINDING_MANAGER_H_
00003
00004
00005
00006
00007 #include <it_wsdl/wsdl_port.h>
00008 #include <it_bus/bus.h>
00009 #include <it_bus/operation.h>
00010 #include <it_bus_pdk/interceptor.h>
00011
00012 namespace IT_Bus
00013 {
00014 class BindingManager;
00015 class ServerRequestInterceptorNode;
00016
00017 class IT_BUS_API ClientBinding
00018 {
00019 public:
00020
00021 ClientRequestInterceptor*
00022 first_request_interceptor();
00023
00024 ClientRequestInterceptorChain&
00025 interceptor_chain();
00026
00027 void
00028 add_interceptor(
00029 ClientRequestInterceptor* interceptor
00030 );
00031
00032 void
00033 teardown(
00034 ClientRequestInterceptor* port_interceptor
00035 );
00036
00037 ClientBinding();
00038
00039 ~ClientBinding();
00040
00041 private:
00042 ClientRequestInterceptorChain m_chain;
00043 };
00044
00045 class IT_BUS_API ServerBinding
00046 {
00047 public:
00048
00049 ServerRequestInterceptor*
00050 first_request_interceptor();
00051
00052 ServerRequestInterceptor*
00053 last_request_interceptor();
00054
00055 ServerRequestInterceptorChain&
00056 interceptor_chain();
00057
00058 void
00059 add_interceptor(
00060 ServerRequestInterceptorNode* interceptor_node
00061 );
00062
00063 void
00064 teardown(
00065 ServerRequestInterceptor* port_interceptor
00066 );
00067
00068 ServerBinding();
00069
00070 ~ServerBinding();
00071
00072 private:
00073 ServerRequestInterceptorChain m_chain;
00074 };
00075
00076 class IT_BUS_API BindingManager
00077 {
00078 public:
00079
00080
00081
00082
00083 static ClientBinding*
00084 create_client_binding(
00085 Bus_ptr bus,
00086 const IT_WSDL::WSDLPort& wsdl_port,
00087 InterceptorFactoryList& factory_list,
00088 ClientRequestInterceptor* port_interceptor
00089 );
00090
00091
00092
00093
00094 static ServerBinding*
00095 create_server_binding(
00096 Bus_ptr bus,
00097 const IT_WSDL::WSDLPort& wsdl_port,
00098 InterceptorFactoryList& factory_list,
00099 ServerRequestInterceptorNode* port_interceptor_node
00100 );
00101
00102 static void
00103 start_client_invocation(
00104 ClientBinding* binding,
00105 ClientOperation& operation
00106 );
00107
00108 static void
00109 start_server_predispatch(
00110 ServerBinding* binding,
00111 ServerOperation& operation
00112 );
00113
00114 static void
00115 start_server_postdispatch(
00116 ServerBinding* binding,
00117 ServerOperation& operation
00118 );
00119
00120 static void
00121 start_server_around_dispatch(
00122 ServerBinding* binding,
00123 ServerOperation& operation
00124 );
00125 };
00126 }
00127
00128 #endif