This class defines the protocol specific attributes required for locating ORBs over a TCP/IP network.
More...
|
virtual char | object_key_delimiter (void) const |
|
| TAO_SCIOP_Profile (const ACE_INET_Addr &addr, const TAO::ObjectKey &object_key, const TAO_GIOP_Message_Version &version, TAO_ORB_Core *orb_core) |
|
| TAO_SCIOP_Profile (const char *host, CORBA::UShort port, const TAO::ObjectKey &object_key, const ACE_INET_Addr &addr, const TAO_GIOP_Message_Version &version, TAO_ORB_Core *orb_core) |
|
| TAO_SCIOP_Profile (TAO_ORB_Core *orb_core) |
| Profile constructor, default. More...
|
|
| ~TAO_SCIOP_Profile (void) |
| Destructor is to be called only through <_decr_refcnt>. More...
|
|
virtual char * | to_string (void) const |
| Template methods. Please see Profile.h for documentation. More...
|
|
virtual int | encode_endpoints (void) |
|
virtual TAO_Endpoint * | endpoint (void) |
|
virtual CORBA::ULong | endpoint_count (void) const |
|
virtual CORBA::ULong | hash (CORBA::ULong max) |
|
void | add_endpoint (TAO_SCIOP_Endpoint *endp) |
|
| TAO_Profile (CORBA::ULong tag, TAO_ORB_Core *orb_core, const TAO_GIOP_Message_Version &version) |
|
CORBA::ULong | tag (void) const |
|
const TAO_GIOP_Message_Version & | version (void) const |
|
TAO_ORB_Core * | orb_core (void) const |
|
unsigned long | _incr_refcnt (void) |
|
unsigned long | _decr_refcnt (void) |
|
void | forward_to (TAO_MProfile *mprofiles) |
|
TAO_MProfile * | forward_to (void) |
|
const TAO_Tagged_Components & | tagged_components (void) const |
|
TAO_Tagged_Components & | tagged_components (void) |
|
void | add_tagged_component (const IOP::TaggedComponent &component) |
|
CORBA::Short | addressing_mode (void) const |
|
const TAO::ObjectKey & | object_key (void) const |
|
TAO::ObjectKey * | _key (void) const |
|
virtual int | encode (TAO_OutputCDR &stream) const |
|
virtual int | decode (TAO_InputCDR &cdr) |
|
IOP::TaggedProfile * | create_tagged_profile (void) |
|
virtual void | policies (CORBA::PolicyList *policy_list) |
|
virtual void | get_policies (CORBA::PolicyList &policy_list) |
|
virtual int | supports_multicast (void) const |
|
virtual bool | supports_non_blocking_oneways (void) const |
|
virtual void | addressing_mode (CORBA::Short addr_mode) |
|
virtual void | parse_string (const char *string) |
|
virtual int | encode_alternate_endpoints (void) |
|
virtual TAO_Endpoint * | base_endpoint (void) |
|
TAO_Endpoint * | first_filtered_endpoint (void) |
|
TAO_Endpoint * | next_filtered_endpoint (TAO_Endpoint *source) |
|
virtual void | remove_generic_endpoint (TAO_Endpoint *ep) |
|
virtual void | add_generic_endpoint (TAO_Endpoint *ep) |
|
CORBA::Boolean | is_equivalent (const TAO_Profile *other_profile) |
|
CORBA::Boolean | compare_key (const TAO_Profile *other) const |
|
CORBA::ULong | tag (void) const |
|
const TAO_GIOP_Message_Version & | version (void) const |
|
TAO_ORB_Core * | orb_core (void) const |
|
unsigned long | _incr_refcnt (void) |
|
unsigned long | _decr_refcnt (void) |
|
void | forward_to (TAO_MProfile *mprofiles) |
|
TAO_MProfile * | forward_to (void) |
|
const TAO_Tagged_Components & | tagged_components (void) const |
|
TAO_Tagged_Components & | tagged_components (void) |
|
void | add_tagged_component (const IOP::TaggedComponent &component) |
|
CORBA::Short | addressing_mode (void) const |
|
const TAO::ObjectKey & | object_key (void) const |
|
TAO::ObjectKey * | _key (void) const |
|
virtual int | encode (TAO_OutputCDR &stream) const |
|
virtual int | decode (TAO_InputCDR &cdr) |
|
IOP::TaggedProfile * | create_tagged_profile (void) |
|
virtual void | policies (CORBA::PolicyList *policy_list) |
|
virtual void | get_policies (CORBA::PolicyList &policy_list) |
|
virtual int | supports_multicast (void) const |
|
virtual bool | supports_non_blocking_oneways (void) const |
|
virtual void | addressing_mode (CORBA::Short addr_mode) |
|
virtual void | parse_string (const char *string) |
|
virtual int | encode_alternate_endpoints (void) |
|
virtual TAO_Endpoint * | base_endpoint (void) |
|
TAO_Endpoint * | first_filtered_endpoint (void) |
|
TAO_Endpoint * | next_filtered_endpoint (TAO_Endpoint *source) |
|
virtual void | remove_generic_endpoint (TAO_Endpoint *ep) |
|
virtual void | add_generic_endpoint (TAO_Endpoint *ep) |
|
CORBA::Boolean | is_equivalent (const TAO_Profile *other_profile) |
|
CORBA::Boolean | compare_key (const TAO_Profile *other) const |
|
This class defines the protocol specific attributes required for locating ORBs over a TCP/IP network.
This class defines the SCIOP profile as specified in the CORBA specification.
Head of this profile's list of endpoints. This endpoint is not dynamically allocated because a profile always contains at least one endpoint.
Currently, a profile contains more than one endpoint, i.e., list contains more than just the head, only for two cases (1) when RTCORBA is enabled and (2) the ORB is initialized with -ORBPreferredInterfaces option. However, in the near future, this will be used in for mode as well, e.g., to support TAG_ALTERNATE_IIOP_ADDRESS feature.
This is probably as good a place to discuss how the list of endpoints is used for #2. If the ORB is configured to use preferred interfaces for invocation, TAO creates an endpoint per preferred interface. To be clear, every tuple <destination:target> will have an endpoint. What TAO essentially does is that creates it multiple endpoints so that the invocation code path can use existing iterating techniques to try one preferred interface after another (if the first did not work). If the ORB is configured with -ORBEnforcePreferredInterface set to false in addition to the ORBPreferredInterfaces option , TAO creates another endpoint with the preferred bit set to null, so that the invocation code can fall back to a SCTP stack returned local address. Addressing info of the default endpoint, i.e., head of the list, is transmitted using standard SCIOP ProfileBody components. See <encode_endpoints> method documentation above for how the rest of the endpoint list is transmitted.