Interface Wire
-
public interface Wire
A connection between a Producer service and a Consumer service.A
Wire
object connects a Producer service to a Consumer service. Both the Producer and Consumer services are identified by their uniqueservice.pid
values. The Producer and Consumer services may communicate with each other viaWire
objects that connect them. The Producer service may send updated values to the Consumer service by calling theupdate(Object)
method. The Consumer service may request an updated value from the Producer service by calling thepoll()
method.A Producer service and a Consumer service may be connected through multiple
Wire
objects.Security Considerations.
Wire
objects are available to Producer and Consumer services connected to a givenWire
object and to bundles which can access theWireAdmin
service. A bundle must haveServicePermission[WireAdmin,GET]
to get theWireAdmin
service to access allWire
objects. A bundle registering a Producer service or a Consumer service must have the appropriateServicePermission[Consumer|Producer,REGISTER]
to register the service and will be passedWire
objects when the service object'sconsumersConnected
orproducersConnected
method is called.Scope. Each Wire object can have a scope set with the
setScope
method. This method should be called by a Consumer service when it assumes a Producer service that is composite (supports multiple information items). The names in the scope must be verified by theWire
object before it is used in communication. The semantics of the names depend on the Producer service and must not be interpreted by the Wire Admin service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>[]
getFlavors()
Return the list of data types understood by the Consumer service connected to thisWire
object.java.lang.Object
getLastValue()
Return the last value sent through thisWire
object.java.util.Dictionary<java.lang.String,java.lang.Object>
getProperties()
Return the wire properties for thisWire
object.java.lang.String[]
getScope()
Return the calculated scope of thisWire
object.boolean
hasScope(java.lang.String name)
Return true if the given name is in thisWire
object's scope.boolean
isConnected()
Return the connection state of thisWire
object.boolean
isValid()
Return the state of thisWire
object.java.lang.Object
poll()
Poll for an updated value.void
update(java.lang.Object value)
Update the value.
-
-
-
Method Detail
-
isValid
boolean isValid()
Return the state of thisWire
object.A connected
Wire
must always be disconnected before becoming invalid.- Returns:
false
if thisWire
object is invalid because it has been deleted viaWireAdmin.deleteWire(Wire)
;true
otherwise.
-
isConnected
boolean isConnected()
Return the connection state of thisWire
object.A
Wire
is connected after the Wire Admin service receives notification that the Producer service and the Consumer service for thisWire
object are both registered. This method will returntrue
prior to notifying the Producer and Consumer services via calls to their respectiveconsumersConnected
andproducersConnected
methods.A
WireAdminEvent
of typeWireAdminEvent.WIRE_CONNECTED
must be broadcast by the Wire Admin service when theWire
becomes connected.A
Wire
object is disconnected when either the Consumer or Producer service is unregistered or theWire
object is deleted.A
WireAdminEvent
of typeWireAdminEvent.WIRE_DISCONNECTED
must be broadcast by the Wire Admin service when theWire
becomes disconnected.- Returns:
true
if both the Producer and Consumer for thisWire
object are connected to theWire
object;false
otherwise.
-
getFlavors
java.lang.Class<?>[] getFlavors()
Return the list of data types understood by the Consumer service connected to thisWire
object. Note that subclasses of the classes in this list are acceptable data types as well.The list is the value of the
WireConstants.WIREADMIN_CONSUMER_FLAVORS
service property of the Consumer service object connected to this object. If no such property was registered or the type of the property value is notClass[]
, this method must returnnull
.- Returns:
- An array containing the list of classes understood by the
Consumer service or
null
if theWire
is not connected, or the consumer did not register aWireConstants.WIREADMIN_CONSUMER_FLAVORS
property or the value of the property is not of typeClass[]
.
-
update
void update(java.lang.Object value)
Update the value.This methods is called by the Producer service to notify the Consumer service connected to this
Wire
object of an updated value.If the properties of this
Wire
object contain aWireConstants.WIREADMIN_FILTER
property, then filtering is performed. If the Producer service connected to thisWire
object was registered with the service propertyWireConstants.WIREADMIN_PRODUCER_FILTERS
, the Producer service will perform the filtering according to the rules specified for the filter. Otherwise, thisWire
object will perform the filtering of the value.If no filtering is done, or the filter indicates the updated value should be delivered to the Consumer service, then this
Wire
object must call theConsumer.updated(Wire, Object)
method with the updated value. If thisWire
object is not connected, then the Consumer service must not be called and the value is ignored.If the value is an
Envelope
object, and the scope name is not permitted, then theWire
object must ignore this call and not transfer the object to the Consumer service.A
WireAdminEvent
of typeWireAdminEvent.WIRE_TRACE
must be broadcast by the Wire Admin service after the Consumer service has been successfully called.- Parameters:
value
- The updated value. The value should be an instance of one of the types returned bygetFlavors()
.- See Also:
WireConstants.WIREADMIN_FILTER
-
poll
java.lang.Object poll()
Poll for an updated value.This methods is normally called by the Consumer service to request an updated value from the Producer service connected to this
Wire
object. ThisWire
object will call theProducer.polled(Wire)
method to obtain an updated value. If thisWire
object is not connected, then the Producer service must not be called.If this
Wire
object has a scope, then this method must return an array ofEnvelope
objects. The objects returned must match the scope of this object. TheWire
object must remove allEnvelope
objects with a scope name that is not in theWire
object's scope. Thus, the list of objects returned must only containEnvelope
objects with a permitted scope name. If the array becomes empty,null
must be returned.A
WireAdminEvent
of typeWireAdminEvent.WIRE_TRACE
must be broadcast by the Wire Admin service after the Producer service has been successfully called.- Returns:
- A value whose type should be one of the types returned by
getFlavors()
,Envelope[]
, ornull
if theWire
object is not connected, the Producer service threw an exception, or the Producer service returned a value which is not an instance of one of the types returned bygetFlavors()
.
-
getLastValue
java.lang.Object getLastValue()
Return the last value sent through thisWire
object.The returned value is the most recent, valid value passed to the
update(Object)
method or returned by thepoll()
method of this object. If filtering is performed by thisWire
object, this methods returns the last value provided by the Producer service. This value may be anEnvelope[]
when the Producer service uses scoping. If the return value is an Envelope object (or array), it must be verified that the Consumer service has the proper WirePermission to see it.- Returns:
- The last value passed though this
Wire
object ornull
if no valid values have been passed or the Consumer service has no permission.
-
getProperties
java.util.Dictionary<java.lang.String,java.lang.Object> getProperties()
Return the wire properties for thisWire
object.- Returns:
- The properties for this
Wire
object. The returnedDictionary
must be read only.
-
getScope
java.lang.String[] getScope()
Return the calculated scope of thisWire
object. The purpose of theWire
object's scope is to allow a Producer and/or Consumer service to produce/consume different types over a singleWire
object (this was deemed necessary for efficiency reasons). Both the Consumer service and the Producer service must set an array of scope names (their scope) with the service registration propertyWIREADMIN_PRODUCER_SCOPE
, orWIREADMIN_CONSUMER_SCOPE
when they can produce multiple types. If a Producer service can produce different types, it should set this property to the array of scope names it can produce, the Consumer service must set the array of scope names it can consume. The scope of aWire
object is defined as the intersection of permitted scope names of the Producer service and Consumer service.If neither the Consumer, or the Producer service registers scope names with its service registration, then the
Wire
object's scope must benull
.The
Wire
object's scope must not change when a Producer or Consumer services modifies its scope.A scope name is permitted for a Producer service when the registering bundle has
WirePermission[name,PRODUCE]
, and for a Consumer service when the registering bundle hasWirePermission[name,CONSUME]
.If either Consumer service or Producer service has not set a
WIREADMIN_*_SCOPE
property, then the returned value must benull
.If the scope is set, the
Wire
object must enforce the scope names whenEnvelope
objects are used as a parameter to update or returned from thepoll
method. TheWire
object must then remove allEnvelope
objects with a scope name that is not permitted.- Returns:
- A list of permitted scope names or null if the Produce or Consumer service has set no scope names.
-
hasScope
boolean hasScope(java.lang.String name)
Return true if the given name is in thisWire
object's scope.- Parameters:
name
- The scope name- Returns:
- true if the name is listed in the permitted scope names
-
-