Class SdcRemoteDevicesConnectorImpl
-
- All Implemented Interfaces:
-
com.google.common.util.concurrent.Service,org.somda.sdc.glue.consumer.SdcRemoteDevicesConnector,org.somda.sdc.glue.consumer.WatchdogObserver
public class SdcRemoteDevicesConnectorImpl extends AbstractIdleService implements SdcRemoteDevicesConnector, WatchdogObserver
-
-
Method Summary
Modifier and Type Method Description ListenableFuture<SdcRemoteDevice>connect(HostingServiceProxy hostingServiceProxy, ConnectConfiguration connectConfiguration)Tries to establish an SDC client connection to the given hosting service proxy (i.e., remote SDC device). ListenableFuture<SdcRemoteDevice>connect(HostingServiceProxy hostingServiceProxy, ConnectConfiguration connectConfiguration, @Nullable() MdibAccessObserver mdibAccessObserver)Tries to establish an SDC client connection to the given hosting service proxy (i.e., remote SDC device). ListenableFuture<out Object>disconnect(String eprAddress)Disconnects a device. Collection<SdcRemoteDevice>getConnectedDevices()Gets a copy of all connected devices at a certain point in time. Optional<SdcRemoteDevice>getConnectedDevice(String eprAddress)Gets a connected device. voidregisterObserver(SdcRemoteDevicesObserver observer)voidunregisterObserver(SdcRemoteDevicesObserver observer)-
Methods inherited from class com.google.common.util.concurrent.AbstractIdleService
addListener, awaitRunning, awaitTerminated, failureCause, isRunning, startAsync, state, stopAsync, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
connect
ListenableFuture<SdcRemoteDevice> connect(HostingServiceProxy hostingServiceProxy, ConnectConfiguration connectConfiguration)
Tries to establish an SDC client connection to the given hosting service proxy (i.e., remote SDC device).
The client connection will pass only if the host is reachable and provides the mandatory BICEPS Get service. After this function is triggered, the following process is conducted:
- If there is at least one action in the set of available actions, then the connector subscribes to those actions.
- The connector starts a watchdog and either uses WS-Eventing Renew requests in case of an existing subscription or DirectedProbe requests in case of no existing subscriptions in order to keep track of the connection to the remote node.
- The connector collects and buffers all incoming reports.
- The MDIB is requested from the remote node.
- Reports are applied on the MDIB.
- An SdcRemoteDevice is supplied.
Connections can be triggered only once per device per time. As reports are applied on the received MDIB there are no gaps as long as every subscription has been subscribed during connection.
- Parameters:
hostingServiceProxy- the hosted service to connect toconnectConfiguration- options for the connection process.- Returns:
a future that contains the SdcRemoteDevice if connection succeeds. It will immediately return if there is an existing connection already.
-
connect
ListenableFuture<SdcRemoteDevice> connect(HostingServiceProxy hostingServiceProxy, ConnectConfiguration connectConfiguration, @Nullable() MdibAccessObserver mdibAccessObserver)
Tries to establish an SDC client connection to the given hosting service proxy (i.e., remote SDC device).
The client connection will pass only if the host is reachable and provides the mandatory BICEPS Get service. After this function is triggered, the following process is conducted:
- If there is at least one action in the set of available actions, then the connector subscribes to those actions.
- The connector starts a watchdog and either uses WS-Eventing Renew requests in case of an existing subscription or DirectedProbe requests in case of no existing subscriptions in order to keep track of the connection to the remote node.
- The connector collects and buffers all incoming reports.
- The MDIB is requested from the remote node.
- Reports are applied on the MDIB.
- An SdcRemoteDevice is supplied.
Connections can be triggered only once per device per time. As reports are applied on the received MDIB there are no gaps as long as every subscription has been subscribed during connection.
- Parameters:
hostingServiceProxy- the hosted service to connect toconnectConfiguration- options for the connection process.mdibAccessObserver- observer that is registered before the initial MDIB is fetched from the device- Returns:
a future that contains the SdcRemoteDevice if connection succeeds. It will immediately return if there is an existing connection already.
-
disconnect
ListenableFuture<out Object> disconnect(String eprAddress)
Disconnects a device.
This function is non-blocking. Right after it returns the disconnected device can be re-connected (while the former device is still disconnecting).
- Parameters:
eprAddress- the endpoint reference address of the remote device to disconnect.- Returns:
a listenable future that finishes once the remote device is disconnected (i.e., subscriptions are unsubscribed). If there is no device to disconnect, an immediate cancelled future is returned.
-
getConnectedDevices
Collection<SdcRemoteDevice> getConnectedDevices()
Gets a copy of all connected devices at a certain point in time.
- Returns:
a collection of all connected devices. Please note that this creates a copy on every call.
-
getConnectedDevice
Optional<SdcRemoteDevice> getConnectedDevice(String eprAddress)
Gets a connected device.
- Parameters:
eprAddress- the endpoint reference address of the remote device to get.- Returns:
an SdcRemoteDevice instance if connected, otherwise empty.
-
registerObserver
void registerObserver(SdcRemoteDevicesObserver observer)
-
unregisterObserver
void unregisterObserver(SdcRemoteDevicesObserver observer)
-
-
-
-