X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflowplugin-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fapi%2Fopenflow%2Fdevice%2FDeviceContext.java;h=e0c936a4408fbada7e660b663234545329c321e8;hb=39633bcebf3b3eb1bd1c92d37ba3c8b510916027;hp=8114ff0dbcff7f57352650bfe3e3304c5cfdd9b4;hpb=597d6bb29686e4b574966813cb476a5bc9b3ec53;p=openflowplugin.git diff --git a/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/device/DeviceContext.java b/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/device/DeviceContext.java index 8114ff0dbc..e0c936a440 100644 --- a/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/device/DeviceContext.java +++ b/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/api/openflow/device/DeviceContext.java @@ -10,20 +10,22 @@ package org.opendaylight.openflowplugin.api.openflow.device; import com.google.common.util.concurrent.ListenableFuture; import io.netty.util.Timeout; -import java.math.BigInteger; import java.util.List; +import javax.annotation.Nonnull; import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService; import org.opendaylight.openflowplugin.api.openflow.OFPContext; import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext; import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceReplyProcessor; import org.opendaylight.openflowplugin.api.openflow.device.handlers.MultiMsgCollector; -import org.opendaylight.openflowplugin.api.openflow.lifecycle.LifecycleService; +import org.opendaylight.openflowplugin.api.openflow.lifecycle.ContextChainStateListener; import org.opendaylight.openflowplugin.api.openflow.registry.ItemLifeCycleRegistry; import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.MessageSpy; -import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MultipartReply; +import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.OfHeader; +import org.opendaylight.yang.gen.v1.urn.opendaylight.role.service.rev150727.SalRoleService; +import org.opendaylight.yang.gen.v1.urn.opendaylight.role.service.rev150727.SetRoleOutput; +import org.opendaylight.yangtools.yang.common.RpcResult; /** - *

* 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 @@ -36,36 +38,14 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731 * 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. - *

*/ public interface DeviceContext extends OFPContext, - AutoCloseable, DeviceReplyProcessor, TxFacade, - DeviceRegistry{ - - /** - * Method close all auxiliary connections and primary connection. - */ - void shutdownConnection(); - - /** - * Initial submit transaction - */ - void initialSubmitTransaction(); - - /** - * Method add auxiliary connection contexts to this context representing single device connection. - * @param connectionContext new connection context - */ - void addAuxiliaryConnectionContext(ConnectionContext connectionContext); - - /** - * Method removes auxiliary connection context from this context representing single device connection. - * @param connectionContext connection which need to be removed - */ - void removeAuxiliaryConnectionContext(ConnectionContext connectionContext); + DeviceRegistry, + RequestContextStack, + ContextChainStateListener { /** * Method provides state of device represented by this device context. @@ -75,33 +55,24 @@ public interface DeviceContext extends DeviceState getDeviceState(); /** - * Method has to close TxManager ASAP we are notified about Closed Connection - * @return sync. future for Slave and MD-SAL completition for Master - */ - ListenableFuture shuttingDownDataStoreTransactions(); - - /** + * Getter. * @return current devices connection context */ ConnectionContext getPrimaryConnectionContext(); /** - * @return current devices auxiliary connection contexts - */ - ConnectionContext getAuxiliaryConnectiobContexts(BigInteger cookie); - - - /** + * Getter. * @return translator library */ TranslatorLibrary oook(); /** - * store cancellable timeout handler of currently running barrier task + * store cancellable timeout handler of currently running barrier task. */ void setCurrentBarrierTimeout(Timeout timeout); /** + * Getter. * @return cancellable timeout handle of currently running barrier task */ Timeout getBarrierTaskTimeout(); @@ -110,32 +81,39 @@ public interface DeviceContext extends MessageSpy getMessageSpy(); - MultiMsgCollector getMultiMsgCollector(final RequestContext> requestContext); + MultiMsgCollector getMultiMsgCollector(RequestContext> requestContext); /** - * indicates that device context is fully published (e.g.: packetIn messages should be passed) + * indicates that device context is fully published (e.g.: packetIn messages should be passed). */ void onPublished(); /** - * change packetIn rate limiter borders - * + * change packetIn rate limiter borders. * @param upperBound max amount of outstanding packetIns */ void updatePacketInRateLimit(long upperBound); /** + * Getter. * @return registry point for item life cycle sources of device */ ItemLifeCycleRegistry getItemLifeCycleSourceRegistry(); - @Override - void close(); - void setSwitchFeaturesMandatory(boolean switchFeaturesMandatory); - void putLifecycleServiceIntoTxChainManager(LifecycleService lifecycleService); + /** + * Setter for sal role service. + * @param salRoleService Role Service + */ + void setSalRoleService(@Nonnull SalRoleService salRoleService); + + /** + * Make device slave. + * @return listenable future from sal role service + */ + ListenableFuture> makeDeviceSlave(); - void replaceConnectionContext(ConnectionContext connectionContext); + boolean canUseSingleLayerSerialization(); }