Bug 4957 Role lifecycle support for TxChainManager in DeviceContext
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / device / DeviceContext.java
index e5de49b17297b163764ca03e3bf1bb6c6c755f29..ac5e920df4a25aa339e775301dd6e831e741ffc0 100644 (file)
@@ -8,26 +8,29 @@
 
 package org.opendaylight.openflowplugin.api.openflow.device;
 
-import io.netty.util.Timeout;
+import javax.annotation.CheckForNull;
 import java.math.BigInteger;
+import java.util.List;
+
+import io.netty.util.Timeout;
 import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
 import org.opendaylight.controller.md.sal.binding.api.NotificationService;
 import org.opendaylight.controller.md.sal.binding.api.ReadTransaction;
 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
-import org.opendaylight.openflowjava.protocol.api.connection.OutboundQueueHandlerRegistration;
 import org.opendaylight.openflowplugin.api.openflow.OpenFlowPluginTimer;
 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
-import org.opendaylight.openflowplugin.api.openflow.connection.OutboundQueueProvider;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceContextClosedHandler;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceDisconnectedHandler;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceReplyProcessor;
-import org.opendaylight.openflowplugin.api.openflow.device.handlers.MessageHandler;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.MultiMsgCollector;
+import org.opendaylight.openflowplugin.api.openflow.registry.ItemLifeCycleRegistry;
 import org.opendaylight.openflowplugin.api.openflow.registry.flow.DeviceFlowRegistry;
 import org.opendaylight.openflowplugin.api.openflow.registry.group.DeviceGroupRegistry;
 import org.opendaylight.openflowplugin.api.openflow.registry.meter.DeviceMeterRegistry;
+import org.opendaylight.openflowplugin.api.openflow.rpc.RpcContext;
 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy;
-import org.opendaylight.openflowplugin.api.openflow.translator.TranslatorLibrarian;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MultipartReply;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.role.service.rev150727.OfpRole;
 import org.opendaylight.yangtools.yang.binding.DataObject;
 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
@@ -50,10 +53,9 @@ import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
  */
 public interface DeviceContext extends AutoCloseable,
         OpenFlowPluginTimer,
-        MessageHandler,
-        TranslatorLibrarian,
         DeviceReplyProcessor,
-        DeviceDisconnectedHandler {
+        DeviceDisconnectedHandler,
+        PortNumberCache {
 
 
     /**
@@ -78,6 +80,24 @@ public interface DeviceContext extends AutoCloseable,
      */
     DeviceState getDeviceState();
 
+    /**
+     * Method has to activate (MASTER) or deactivate (SLAVE) TransactionChainManager.
+     * TransactionChainManager represents possibility to write or delete Node subtree data
+     * for actual Controller Cluster Node. We are able to have an active TxManager only if
+     * newRole is {@link OfpRole#BECOMESLAVE}.
+     * Parameters are used as marker to be sure it is change to SLAVE from MASTER or from
+     * MASTER to SLAVE and the last parameter "cleanDataStore" is used for validation only.
+     * @param role - NewRole expect to be {@link OfpRole#BECOMESLAVE} or {@link OfpRole#BECOMEMASTER}
+     */
+    void onClusterRoleChange(@CheckForNull OfpRole role);
+
+    /**
+     * Same as {@link DeviceContext#onClusterRoleChange(OfpRole)} but it should be call for new
+     * connection initialization only, because submit transaction is not active in this time.
+     * @param role - NewRole expect to be {@link OfpRole#BECOMESLAVE} or {@link OfpRole#BECOMEMASTER}
+     */
+    void onInitClusterRoleChange(@CheckForNull final OfpRole role);
+
     /**
      * Method creates put operation using provided data in underlying transaction chain.
      */
@@ -88,6 +108,12 @@ public interface DeviceContext extends AutoCloseable,
      */
     <T extends DataObject> void addDeleteToTxChain(final LogicalDatastoreType store, final InstanceIdentifier<T> path);
 
+    /**
+     * Method submits Transaction to DataStore.
+     * @return transaction is submitted successfully
+     */
+    boolean submitTransaction();
+
     /**
      * Method exposes transaction created for device
      * represented by this context. This read only transaction has a fresh dataStore snapshot.
@@ -133,6 +159,11 @@ public interface DeviceContext extends AutoCloseable,
     DeviceMeterRegistry getDeviceMeterRegistry();
 
 
+    /**
+     * @return translator library
+     */
+    TranslatorLibrary oook();
+
     /**
      * store cancellable timeout handler of currently running barrier task
      */
@@ -154,18 +185,12 @@ public interface DeviceContext extends AutoCloseable,
 
     MessageSpy getMessageSpy();
 
-    void setDeviceDisconnectedHandler(DeviceDisconnectedHandler deviceDisconnectedHandler);
-
     /**
      * Method sets reference to handler used for cleanup after device context about to be closed.
      */
     void addDeviceContextClosedHandler(DeviceContextClosedHandler deviceContextClosedHandler);
 
-    void startGatheringOperationsToOneTransaction();
-
-    void commitOperationsGatheredInOneTransaction();
-
-    MultiMsgCollector getMultiMsgCollector();
+    MultiMsgCollector getMultiMsgCollector(final RequestContext<List<MultipartReply>> requestContext);
 
     Long getReservedXid();
 
@@ -174,16 +199,25 @@ public interface DeviceContext extends AutoCloseable,
      */
     void onPublished();
 
-
     /**
-     * Method registers outbound queue provider into current device context's primary connection adapter.
+     * change packetIn rate limiter borders
      *
-     * @param outboundQueueProvider
-     * @param maxQueueDepth
-     * @param barrierNanos
+     * @param upperBound max amount of outstanding packetIns
+     */
+    void updatePacketInRateLimit(long upperBound);
+
+    /**
+     * @return registry point for item life cycle sources of device
      */
-    void registerOutboundQueueProvider(OutboundQueueProvider outboundQueueProvider, int maxQueueDepth, long barrierNanos);
+    ItemLifeCycleRegistry getItemLifeCycleSourceRegistry();
+
+    void setRpcContext(RpcContext rpcContext);
 
+    RpcContext getRpcContext();
 
+    /**
+     * Callback when confirmed that device is disconnected from cluster
+      */
+    void onDeviceDisconnectedFromCluster(final boolean removeNodeFromDS);
 }