org.openorb.notify.impl

Class StructuredProxyPushConsumerImpl

public class StructuredProxyPushConsumerImpl extends StructuredProxyPushConsumerPOA implements SupplierProxyManagement, PersistenceManagement

The FilterFactory interface defines operations for creating filter objects. This filter objects will be persistent if the connection reliability is set to persistent.

Author: Olivier Modica

Constructor Summary
StructuredProxyPushConsumerImpl(SupplierAdminImpl supplierAdmin, int pushConsumerId, int adminId, Property[] qosProperties, Logger logger)
Default constructor
StructuredProxyPushConsumerImpl(SupplierAdminImpl supplierAdmin, ProxyConsumer pssProxyConsumer, Logger logger)
Constructor -- used for recovery only
Method Summary
intadd_filter(Filter new_filter)
The add_filter operation accepts as input the reference to an object supporting the Filter interface.
voidconnect_structured_push_supplier(StructuredPushSupplier push_supplier)
The connect_structured_push_supplier operation accepts as an input parameter the reference to an object supporting the StructuredPushSupplier interface defined within the CosNotifyComm module.
voiddisconnect_structured_push_consumer()
The disconnect_structured_push_consumer operation is invoked to terminate a connection between the target StructuredPushConsumer, and its associated supplier.
StringgetId()
Get the ID ( ChannelID + SupplierAdminID + ProxyConsumerID ) of the proxy
byte[]getPid()
Returns the pid of the persistent/transient object
int[]get_all_filters()
The get_all_filters operation accepts no input parameters, and returns the list of unique identifiers which correspond to all of the filters currently associated with the target object.
Filterget_filter(int filter)
The get_filter operation accepts as input a numeric identifier that is intended to correspond to one of the filter objects currently associated with the target object.
Property[]get_qos()
The get_qos operation takes no input parameters, and returns a sequence of name-value pairs which encapsulates the current quality of service settings for the target object (which could be an Event Channel, Admin, or Proxy object).
SupplierAdminMyAdmin()
The MyAdmin attribute is a readonly attribute that should be set upon creation of each proxy consumer instance to maintain the reference of the instance supporting the SupplierAdmin interface that created it.
ProxyTypeMyType()
The MyType attribute is a readonly attribute that should be set upon creation of each proxy consumer instance to indicate the specific type of proxy consumer the instance represents.Enumerations are possible to distinguish the type of proxy consumer among the following possibilities: ProxyPushConsumer, ProxyPullConsumer, StructuredProxyPushConsumer, StructuredProxyPullConsumer, SequenceProxyPushConsumer, and SequenceProxyPullConsumer.
EventType[]obtain_subscription_types(ObtainInfoMode mode)
The obtain_subscription_types operation returns a list of event type names.
voidoffer_change(EventType[] added, EventType[] removed)
The offer_change operation takes as input two sequences of event type names: the first specifying those event types which the client of the operation (an event supplier) is informing the target consumer object that it is adding to the list of event types it plans to supply, and the second specifying those event types which the client no longer plans to supply.
voidpush_structured_event(StructuredEvent notification)
The push_structured_event operation takes as input a parameter of type StructuredEvent as defined in the CosNotification module.
voidremove_all_filters()
The remove_all_filters operation accepts no input parameters, and removes all filter objects from the list of those currently associated with the target object.
voidremove_filter(int filter)
The remove_filter operation accepts as input a numeric value that is intended to be the unique identifier of a filter object that is currently associated with the target object.
voidreportClientDisconnection()
This method is invoked when the client returns an unexpected Disconnected exception.
voidset_qos(Property[] qos)
The set_qos operation takes as an input parameter a sequence of name-value pairs which encapsulates quality of service property settings that a client is requesting that the target object (which could be an Event Channel, Admin, or Proxy object) support as its default quality of service.
voidvalidate_event_qos(Property[] required_qos, NamedPropertyRangeSeqHolder available_qos)
The validate_event_qos operation accepts as input a sequence of QoS property name-value pairs which specify a set of QoS settings that a client is interested in setting on a per-event basis.
voidvalidate_qos(Property[] required_qos, NamedPropertyRangeSeqHolder available_qos)
The validate_qos operation accepts as input a sequence of QoS property name-value pairs which specify a set of QoS settings that a client would like to know if the target object is capable of supporting.

Constructor Detail

StructuredProxyPushConsumerImpl

public StructuredProxyPushConsumerImpl(SupplierAdminImpl supplierAdmin, int pushConsumerId, int adminId, Property[] qosProperties, Logger logger)
Default constructor

StructuredProxyPushConsumerImpl

public StructuredProxyPushConsumerImpl(SupplierAdminImpl supplierAdmin, ProxyConsumer pssProxyConsumer, Logger logger)
Constructor -- used for recovery only

Method Detail

add_filter

public int add_filter(Filter new_filter)
The add_filter operation accepts as input the reference to an object supporting the Filter interface. The affect of this operation is that the input filter object is appended to the list of filter objects associated with the target object upon which the operation was invoked. The operation associates with the newly added filter object a numeric identifier that is unique among all filter objects currently associated with the target, and returns that value as the result of the operation.

Parameters: new_filter filter to add

Returns: filter id

connect_structured_push_supplier

public void connect_structured_push_supplier(StructuredPushSupplier push_supplier)
The connect_structured_push_supplier operation accepts as an input parameter the reference to an object supporting the StructuredPushSupplier interface defined within the CosNotifyComm module. This reference is that of a supplier which plans to push events to the channel with which the target object is associated in the form of Structured Events. This operation is thus invoked in order to establish a connection between a push-style supplier of events in the form of Structured Events, and the notification channel. Once established, the supplier can proceed to send events to the channel by invoking the push_structured_event operation supported by the target StructuredProxyPushConsumer instance. If the target object of this operation is already connected to a push supplier object, the AlreadyConnected exception will be raised.

Parameters: push_supplier Push supplier to connect to the proxy.

Throws: org.omg.CosEventChannelAdmin.AlreadyConnected The proxy is already connected.

disconnect_structured_push_consumer

public void disconnect_structured_push_consumer()
The disconnect_structured_push_consumer operation is invoked to terminate a connection between the target StructuredPushConsumer, and its associated supplier. This operation takes no input parameters and returns no values. The result of this operation is that the target StructuredPushConsumer will release all resources it had allocated to support the connection, and dispose its own object reference.

getId

public String getId()
Get the ID ( ChannelID + SupplierAdminID + ProxyConsumerID ) of the proxy

getPid

public byte[] getPid()
Returns the pid of the persistent/transient object

get_all_filters

public int[] get_all_filters()
The get_all_filters operation accepts no input parameters, and returns the list of unique identifiers which correspond to all of the filters currently associated with the target object.

Returns: Array of all filters's id

get_filter

public Filter get_filter(int filter)
The get_filter operation accepts as input a numeric identifier that is intended to correspond to one of the filter objects currently associated with the target object. If this is the case, the object reference of the corresponding filter object is returned. Otherwise, the FilterNotFound exception is raised.

Parameters: filter Id of the filter to get

Returns: The filter object

Throws: org.omg.CosNotifyFilter.FilterNotFound Id doesn't match to any filter

get_qos

public Property[] get_qos()
The get_qos operation takes no input parameters, and returns a sequence of name-value pairs which encapsulates the current quality of service settings for the target object (which could be an Event Channel, Admin, or Proxy object).

Returns: Object QosProperties

MyAdmin

public SupplierAdmin MyAdmin()
The MyAdmin attribute is a readonly attribute that should be set upon creation of each proxy consumer instance to maintain the reference of the instance supporting the SupplierAdmin interface that created it.

MyType

public ProxyType MyType()
The MyType attribute is a readonly attribute that should be set upon creation of each proxy consumer instance to indicate the specific type of proxy consumer the instance represents.Enumerations are possible to distinguish the type of proxy consumer among the following possibilities: ProxyPushConsumer, ProxyPullConsumer, StructuredProxyPushConsumer, StructuredProxyPullConsumer, SequenceProxyPushConsumer, and SequenceProxyPullConsumer.

obtain_subscription_types

public EventType[] obtain_subscription_types(ObtainInfoMode mode)
The obtain_subscription_types operation returns a list of event type names. This returned list represents the names of event types which consumers connected to the channel are interested in receiving. Consumers express their interest in receiving particular types of events by configuring filters associated with the proxy suppliers to which they are connected to encapsulate constraints which express subscriptions to specific event instances. Such subscriptions could be based on the types and/or contents of events. The proxy suppliers extract the event type information from these subscriptions, and share it with the proxy consumer objects connected to the same channel. Supplier objects can thus obtain this information from the channel by invoking the obtain_subscription_types operation on the proxy consumer object to which they are connected. This information enables suppliers to suppress sending types of events to the channel in which no consumer is currently interested. Note that suppliers can also receive updates to subscription information automatically by enabling the channel to invoke the subscription_change operation they support through inheritence of the CosNotifyComm::NotifySubscribe interface each time a new type of event is added or removed through modification of filters. The obtain_subscription_types operation accepts as input a flag that enables synchronization between the subscription information obtain through these automatic updates, and that obtained through invocation of obtain_subscription_types. The table below summarizes the possible values and associated meanings this flag can take on:

Parameters: mode Mode of recuperation

Returns: All subscription types

offer_change

public void offer_change(EventType[] added, EventType[] removed)
The offer_change operation takes as input two sequences of event type names: the first specifying those event types which the client of the operation (an event supplier) is informing the target consumer object that it is adding to the list of event types it plans to supply, and the second specifying those event types which the client no longer plans to supply. This operation raises the InvalidEventType exception if one of the event type names supplied in either input parameter is syntactically invalid. In this case, the invalid name is returned in the type field of the exception. Note that each event type name is comprised of two components: the name of the domain in which the event type has meaning, and the name of the actual event type. Also note that either component of a type name may specify a complete domain/event type name, a domain/event type name containing the wildcard ?? character, or the special event type name ?%ALL? described in section 2.6.5 if the specification

push_structured_event

public void push_structured_event(StructuredEvent notification)
The push_structured_event operation takes as input a parameter of type StructuredEvent as defined in the CosNotification module. Upon invocation, this parameter will contain an instance of a Structured Event being delivered to the consumer by the supplier to which it is connected. If this operation is invoked upon a StructuredPushConsumer instance that is not currently connected to the supplier of the event, the Disconnected exception will be raised. In reality there are two types of objects that will support the StructuredPushConsumer interface: an object representing an application which receives Structured Events, and a StructuredProxyPushConsumer (defined in the CosNotifyChannelAdmin module) associated with an event channel which receives structured events from a supplier on behalf of the channel. For the first type of object, the implementation of the push_structured_event operation is application specific, and is intended to be supplied by application developers. For the second type of object, the behavior of the operation is tightly linked to the implementation of the event channel. Basically, it is responsible for applying any filters that have been registered by with the StructuredProxyPushConsumer, then either discarding the event or forwarding it to each proxy supplier within the channel depending on whether or not the event passed the filter.

remove_all_filters

public void remove_all_filters()
The remove_all_filters operation accepts no input parameters, and removes all filter objects from the list of those currently associated with the target object.

remove_filter

public void remove_filter(int filter)
The remove_filter operation accepts as input a numeric value that is intended to be the unique identifier of a filter object that is currently associated with the target object. If identifier supplied does correspond to a filter object currently associated with the target object, then the corresponding filter object will be removed from the list of filters associated with the target object. Otherwise, the FilterNotFound exception will be raised.

Parameters: filter Id of the filter

Throws: org.omg.CosNotifyFilter.FilterNotFound Id doesn't match to any filter

reportClientDisconnection

public void reportClientDisconnection()
This method is invoked when the client returns an unexpected Disconnected exception. Then the proxy should invoke disconnect on itself and release all resources.

set_qos

public void set_qos(Property[] qos)
The set_qos operation takes as an input parameter a sequence of name-value pairs which encapsulates quality of service property settings that a client is requesting that the target object (which could be an Event Channel, Admin, or Proxy object) support as its default quality of service. If the implementation of the target object is not capable of supporting any of the requested quality of service settings, or if any of the requested settings would be in conflict with a QoS property defined at a higher level of the object hierarchy with respect to QoS , the UnsupportedQoS exception is raised. This exception contains as data a sequence of data structures, each of which identifies the name of a QoS property in the input list whose requested setting could not be satisfied, along with an error code and a range of settings for the property which could be satisfied. The meanings of the error codes which might be returned are described in Table 2-5 of CosNotification Service specification

Parameters: qos QosProperties to assign to object

Throws: org.omg.CosNotification.UnsupportedQoS

validate_event_qos

public void validate_event_qos(Property[] required_qos, NamedPropertyRangeSeqHolder available_qos)
The validate_event_qos operation accepts as input a sequence of QoS property name-value pairs which specify a set of QoS settings that a client is interested in setting on a per-event basis. Note that the QoS property settings contained in the optional header fields of a Structured Event may differ from those that are configured on a given proxy object. This operation is essentially a check to see if the target proxy object will honor the setting of a set of QoS properties on a per-event basis to values that may conflict with those set on the proxy itself. If any of the requested settings would not be honored by the target object on a per-event basis, the operation raises the UnsupportedQoS exception. This exception contains as data a sequence of data structures, each of which identifies the name of a QoS property in the input list whose requested setting could not be satisfied, along with an error code and a range of settings for the property which could be satisfied. The meanings of the error codes which might be returned are described in Table 2-5. If all requested QoS property value settings could be satisfied by the target object, the operation returns successfully with an output parameter that contains a sequence of PropertyRange data structures. Each element in this sequence includes the name of a an additional QoS property whose setting is supported by the target object on a per-event basis and which could have been included on the input list while still resulting in a successful return from the operation. Each element also includes the range of values that would have been acceptable for each such property.

Parameters: required_qos available_qos

Throws: org.omg.CosNotification.UnsupportedQoS Qos Property was not supported in this implementation

validate_qos

public void validate_qos(Property[] required_qos, NamedPropertyRangeSeqHolder available_qos)
The validate_qos operation accepts as input a sequence of QoS property name-value pairs which specify a set of QoS settings that a client would like to know if the target object is capable of supporting. If the any of the requested settings could not be satisfied by the target object, the operation raises the UnsupportedQoS exception. This exception contains as data a sequence of data structures, each of which identifies the name of a QoS property in the input list whose requested setting could not be satisfied, along with an error code and a range of settings for the property which could be satisfied. The meanings of the error codes which might be returned are described in Table 2-5. If all requested QoS property value settings could be satisfied by the target object, the operation returns successfully (without actually setting the QoS properties on the target object) with an output parameter that contains a sequence of PropertyRange data structures. Each element in this sequence includes the name of a an additional QoS property supported by the target object which could have been included on the input list and resulted in a successful return from the operation., along with the range of values that would have been acceptable for each such property.

Parameters: required_qos available_qos

Throws: org.omg.CosNotification.UnsupportedQoS