#include <it_bus/bus.h>
Inheritance diagram for IT_Bus::Bus:
The Bus provides integration between the application components generated from the WSDL file and the Bus runtime environment.
Bus plugins provide functionality for data marshalling, transport specifics, security, implementation of and integration with enterprise services such as logging and session management, routing, and access to raw and encoded messages.
Definition at line 53 of file bus.h.
Public Member Functions | |
virtual void | run ()=0 |
Put event processing into an infinite loop to prevent the current thread from exiting. | |
virtual void | shutdown (IT_Bool wait_for_completion)=0 throw ((IT_Bus::Exception)) |
Destroy the Bus instance. | |
virtual IT_Bus::TransactionSystem & | transactions ()=0 throw ((IT_Bus::Exception)) |
Access the Transaction subsystem supported by the Bus. | |
virtual ContextRegistry * | get_context_registry ()=0 |
Obtain a pointer to the ContextRegistry. | |
virtual void | register_servant (Servant &servant, IT_WSDL::WSDLService &wsdl_service, const String &port_name=IT_BUS_ALL_PORTS)=0 throw ((IT_Bus::Exception)) |
Register a servant with a specific service. | |
virtual void | register_servant (Servant &servant, const String &wsdl_location, const QName &service_name, const String &port_name=IT_BUS_ALL_PORTS)=0 throw ((Exception)) |
Register a servant with a specific service. | |
virtual Service_ptr | register_transient_servant (Servant &servant, IT_WSDL::WSDLService &wsdl_service, const String &port_name=IT_BUS_ALL_PORTS)=0 throw ((IT_Bus::Exception)) |
Register a servant with a specific transient service. | |
virtual Service_ptr | register_transient_servant (Servant &servant, const String &wsdl_location, const QName &service_name, const String &port_name=IT_BUS_ALL_PORTS)=0 throw ((Exception)) |
Register a servant with a specific service. | |
virtual Service_ptr | add_service (IT_WSDL::WSDLService &wsdl_service)=0 throw ((IT_Bus::Exception)) |
Add/create a service. | |
virtual Service_ptr | add_service (const String &wsdl_location, const QName &service_name)=0 throw ((Exception)) |
Add/create a service. | |
virtual Service_ptr | add_transient_service (IT_WSDL::WSDLService &wsdl_service)=0 throw ((IT_Bus::Exception)) |
Add/create a transient service. | |
virtual Service_ptr | add_transient_service (const String &wsdl_location, const QName &service_name)=0 throw ((Exception)) |
Add/create a transient service. | |
virtual Service_ptr | get_service (const QName &service_name)=0 |
Obtain a pointer to a specific service. | |
virtual void | remove_service (const QName &service_name)=0 |
Inactivate and destroy a specific service. | |
virtual void | populate_endpoint_reference (const IT_WSDL::WSDLService &service, Reference &endpoint_reference)=0 |
Create a Service Reference for a specific service. | |
virtual IT_Bus::Boolean | register_initial_reference (const Reference &service_reference)=0 throw ((Exception)) |
Register a Service Reference with the Bus so that others can resolve it using Bus::resolve_initial_reference. | |
virtual IT_Bus::Boolean | unregister_initial_reference (const QName &service_name)=0 throw ((Exception)) |
Remove the Reference from the Bus so that others can no longer resolve it using resolve_initial_reference. | |
virtual IT_Bus::Boolean | resolve_initial_reference (const QName &service_name, Reference &endpoint_reference)=0 throw ((Exception)) |
Find or resolve a Service Reference for a specific service. | |
virtual void | populate_endpoint_reference (const IT_WSDL::WSDLService &service, WS_Addressing::EndpointReferenceType &epr_reference)=0 |
Create EndpointReferenceType to a specific service. | |
virtual IT_Bus::Boolean | resolve_initial_reference (const QName &service_name, WS_Addressing::EndpointReferenceType &epr_reference)=0 throw ((Exception)) |
Find or resolve a Service EndpointReferenceType for a specific service. | |
virtual IT_Bus::Boolean | register_initial_reference (const WS_Addressing::EndpointReferenceType &service_epr)=0 throw ((Exception)) |
Register a Service EndpointReferenceType with the Bus so that others can resolve it using Bus::resolve_initial_reference. | |
virtual IT_WSDL::WSDLDefinitions_ptr | get_wsdl_model (const String &wsdl_location)=0 throw ((IT_WSDL::WSDLException)) |
Return a pointer to the collection of objects that correspond to the in-memory representation of a WSDL file. | |
virtual IT_WSDL::WSDLService * | get_service_contract (const QName &service_name)=0 throw ((Exception)) |
Return a pointer to object that corresponds to the in-memory representation of a specified Service. | |
virtual PDKBus * | get_pdk_bus ()=0 |
Return a pointer to the PDKBus instance associated with this bus. | |
Static Public Member Functions | |
Bus * | create_reference (CORBA::ORB *orb=0) |
Return a pointer to the active Bus. | |
void | release_reference (Bus *bus) |
Release memory associated with Bus. | |
Bus * | _duplicate (Bus *bus) |
Increment the reference count for the memory associated with the Bus and return a pointer to the Bus. | |
Protected Member Functions | |
Bus () | |
Constructor. | |
virtual | ~Bus () |
Destructor. |
|
Constructor. Not called by application code. Applications initialize a Bus instance and obtain a pointer to the Bus instance by invoking the method IT_Bus::init, which is defined within the IT_Bus namespace in the file bus.h.
Bus_var init( int& argc, char* argv[], const char* orb_identifier = "" ); |
|
Destructor. Not called by application code. Applications destroy a Bus instance by invoking the method IT_Bus::shutdown, which is defined within the IT_Bus namespace in the file bus.h.
void shutdown( IT_Bool wait_for_completion = true ) throw((IT_Bus::Exception)); |
|
Increment the reference count for the memory associated with the Bus and return a pointer to the Bus.
|
|
Add/create a service. Use this method when the application must invoke the register_servant method directly on the Service class.
|
|
Add/create a service. Use this method when the application must invoke the register_servant method directly on the Service class.
|
|
Add/create a transient service. Use this method when the application must invoke the register_servant method directly on the Service class.
|
|
Add/create a transient service. Use this method when the application must invoke the register_servant method directly on the Service class.
|
|
Return a pointer to the active Bus.
|
|
Obtain a pointer to the ContextRegistry.
|
|
Return a pointer to the PDKBus instance associated with this bus. The PDKBus implements some of the core and service functionality of the Bus class.
|
|
Obtain a pointer to a specific service.
|
|
Return a pointer to object that corresponds to the in-memory representation of a specified Service.
|
|
Return a pointer to the collection of objects that correspond to the in-memory representation of a WSDL file. Use this method to programmatically parse a WSDL file, creating an in-memory representation.
|
|
Create EndpointReferenceType to a specific service.
|
|
Create a Service Reference for a specific service.
|
|
Register a Service EndpointReferenceType with the Bus so that others can resolve it using Bus::resolve_initial_reference.
|
|
Register a Service Reference with the Bus so that others can resolve it using Bus::resolve_initial_reference.
|
|
Register a servant with a specific service.
|
|
Register a servant with a specific service.
|
|
Register a servant with a specific service.
|
|
Register a servant with a specific transient service.
|
|
Inactivate and destroy a specific service.
|
|
Find or resolve a Service EndpointReferenceType for a specific service.
|
|
Find or resolve a Service Reference for a specific service.
|
|
Put event processing into an infinite loop to prevent the current thread from exiting. It is not necessary to call run() to process incoming requests; run prevents the process from exiting. Once a servant is registered with the Bus, it will receive incoming requests. |
|
Destroy the Bus instance.
|
|
Access the Transaction subsystem supported by the Bus. This subsystem allows the caller to perform such actions as begin & end transactions, enlist transaction participants, register for transaction related notification events, assign transaction<->thread affinity etc. See IT_Bus::TransactionSystem interface for more details on the available operations.
|
|
Remove the Reference from the Bus so that others can no longer resolve it using resolve_initial_reference. This assumes that user has previously called Bus::register_initial_reference
|