Make sure RequestContext has a constant XID
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / device / DeviceContext.java
index 0ff3d737c805731485157342fff2c2cbde5ede98..63a5951696964003b99f357cb44ce1f4e5e2ba99 100644 (file)
@@ -8,12 +8,30 @@
 
 package org.opendaylight.openflowplugin.api.openflow.device;
 
-import org.opendaylight.controller.md.sal.common.api.data.TransactionChain;
+import io.netty.util.Timeout;
+import java.math.BigInteger;
+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.openflowplugin.api.openflow.OpenFlowPluginTimer;
 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
+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.yang.gen.v1.urn.opendaylight.table.types.rev131026.TableFeatures;
+import org.opendaylight.openflowplugin.api.openflow.device.handlers.MultiMsgCollector;
+import org.opendaylight.openflowplugin.api.openflow.device.handlers.OutstandingMessageExtractor;
+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.statistics.ofpspecific.MessageSpy;
+import org.opendaylight.openflowplugin.api.openflow.translator.TranslatorLibrarian;
+import org.opendaylight.yangtools.yang.binding.DataObject;
+import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
 
 /**
+ * <p>
  * The central entity of OFP is the Device Context, which encapsulate the logical state of a switch
  * as seen by the controller. Each OpenFlow session is tracked by a Connection Context.
  * These attach to a particular Device Context in such a way, that there is at most one primary
@@ -26,10 +44,16 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.table.types.rev131026.Table
  * which is enforced by keeping a cap on the number of outstanding requests a particular Request
  * Context can have at any point in time. Should this quota be exceeded, any further attempt to make
  * a request to the switch will fail immediately, with proper error indication.
- * <p/>
- * Created by Martin Bobak <mbobak@cisco.com> on 25.2.2015.
+ * </p>
+ * Created by Martin Bobak &lt;mbobak@cisco.com&gt; on 25.2.2015.
  */
-public interface DeviceContext extends MessageHandler {
+public interface DeviceContext extends AutoCloseable,
+        OpenFlowPluginTimer,
+        MessageHandler,
+        TranslatorLibrarian,
+        OutstandingMessageExtractor,
+        DeviceReplyProcessor,
+        DeviceDisconnectedHandler {
 
 
     /**
@@ -55,25 +79,123 @@ public interface DeviceContext extends MessageHandler {
     DeviceState getDeviceState();
 
     /**
-     * Method sets transaction chain used for all data store operations on device
-     * represented by this context. This transaction chain is write only.
-     *
-     * @param transactionChain
+     * Method creates put operation using provided data in underlying transaction chain.
+     */
+    <T extends DataObject> void writeToTransaction(final LogicalDatastoreType store, final InstanceIdentifier<T> path, final T data);
+
+    /**
+     * Method creates delete operation for provided path in underlying transaction chain.
      */
-    void setTransactionChain(TransactionChain transactionChain);
+    <T extends DataObject> void addDeleteToTxChain(final LogicalDatastoreType store, final InstanceIdentifier<T> path);
 
     /**
      * Method exposes transaction created for device
-     * represented by this context. This should be used as write only.
+     * represented by this context. This read only transaction has a fresh dataStore snapshot.
+     * There is a possibility to get different data set from  DataStore
+     * as write transaction in this context.
+     */
+    ReadTransaction getReadTransaction();
+
+
+    /**
+     * Method provides current devices connection context.
+     *
+     * @return
      */
-    TransactionChain getTransactionChain();
+    ConnectionContext getPrimaryConnectionContext();
 
     /**
-     * Method provides capabilities of connected device.
+     * Method provides current devices auxiliary connection contexts.
      *
      * @return
      */
-    TableFeatures getCapabilities();
+    ConnectionContext getAuxiliaryConnectiobContexts(BigInteger cookie);
+
+
+    /**
+     * @param xid key
+     * @return request by xid
+     */
+    RequestContext lookupRequest(Xid xid);
+
+    /**
+     * @return number of outstanding requests in map
+     */
+    int getNumberOfOutstandingRequests();
+
+    /**
+     * Method writes request context into request context map. This method
+     * is ment to be used by org.opendaylight.openflowplugin.impl.services.OFJResult2RequestCtxFuture#processResultFromOfJava.
+     *
+     * @param xid
+     * @param requestFutureContext
+     */
+    void hookRequestCtx(Xid xid, RequestContext requestFutureContext);
+
+    /**
+     * Method removes request context from request context map.
+     *
+     * @param xid
+     */
+    RequestContext unhookRequestCtx(Xid xid);
+
+    /**
+     * Method exposes flow registry used for storing flow ids identified by calculated flow hash.
+     *
+     * @return
+     */
+    DeviceFlowRegistry getDeviceFlowRegistry();
+
+    /**
+     * Method exposes device group registry used for storing group ids.
+     *
+     * @return
+     */
+    DeviceGroupRegistry getDeviceGroupRegistry();
+
+    /**
+     * Method exposes device meter registry used for storing meter ids.
+     *
+     * @return
+     */
+    DeviceMeterRegistry getDeviceMeterRegistry();
+
+
+    /**
+     * store cancellable timeout handler of currently running barrier task
+     */
+    void setCurrentBarrierTimeout(Timeout timeout);
+
+    /**
+     * @return cancellable timeout handle of currently running barrier task
+     */
+    Timeout getBarrierTaskTimeout();
+
+    /**
+     * Sets notification service
+     *
+     * @param notificationService
+     */
+    void setNotificationService(NotificationService notificationService);
+
+    void setNotificationPublishService(NotificationPublishService notificationPublishService);
+
+    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();
+
+    Long getReservedXid();
 
 }