Disconnection improvements.
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / lifecycle / ContextChainImpl.java
index dfc6d67c0558418a1c9907424a6049f44ed4e225..c43e759e77b19c064cd04cdf6fa1afaad01f591b 100644 (file)
@@ -7,22 +7,41 @@
  */
 package org.opendaylight.openflowplugin.impl.lifecycle;
 
+import com.google.common.base.Function;
+import com.google.common.util.concurrent.Futures;
+import com.google.common.util.concurrent.ListenableFuture;
+import java.util.ArrayList;
 import java.util.HashSet;
+import java.util.List;
 import java.util.Set;
-import java.util.concurrent.Future;
+import javax.annotation.Nullable;
+import org.eclipse.jdt.annotation.NonNull;
+import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider;
 import org.opendaylight.openflowplugin.api.openflow.OFPContext;
 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
+import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
 import org.opendaylight.openflowplugin.api.openflow.lifecycle.ContextChain;
+import org.opendaylight.openflowplugin.api.openflow.lifecycle.LifecycleService;
+import org.opendaylight.openflowplugin.api.openflow.rpc.RpcContext;
+import org.opendaylight.openflowplugin.api.openflow.statistics.StatisticsContext;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflow.provider.config.rev160510.ContextChainState;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 public class ContextChainImpl implements ContextChain {
 
+    private static final Logger LOG = LoggerFactory.getLogger(ContextChainImpl.class);
+
     private Set<OFPContext> contexts = new HashSet<>();
-    private final ContextChainState contextChainState;
+    private StatisticsContext statisticsContext;
+    private DeviceContext deviceContext;
+    private RpcContext rpcContext;
+    private volatile ContextChainState contextChainState;
+    private LifecycleService lifecycleService;
     private ConnectionContext primaryConnectionContext;
 
-    public ContextChainImpl(final ContextChainState contextChainState) {
-        this.contextChainState = contextChainState;
+    public ContextChainImpl() {
+        this.contextChainState = ContextChainState.INITIALIZED;
     }
 
     @Override
@@ -32,17 +51,59 @@ public class ContextChainImpl implements ContextChain {
 
     @Override
     public <T extends OFPContext> void addContext(final T context) {
+        if (context instanceof StatisticsContext) {
+            this.statisticsContext = (StatisticsContext) context;
+        } else {
+            if (context instanceof DeviceContext) {
+                this.deviceContext = (DeviceContext) context;
+            } else {
+                if (context instanceof RpcContext) {
+                    this.rpcContext = (RpcContext) context;
+                }
+            }
+        }
+        contexts.add(context);
+    }
 
+    @Override
+    public void addLifecycleService(final LifecycleService lifecycleService) {
+        this.lifecycleService = lifecycleService;
     }
 
     @Override
-    public Future<Void> stopChain() {
-        return null;
+    public ListenableFuture<Void> stopChain(boolean connectionDropped) {
+        //TODO: stopClusterServices change parameter
+        final List<ListenableFuture<Void>> futureList = new ArrayList<>();
+        futureList.add(statisticsContext.stopClusterServices());
+        futureList.add(rpcContext.stopClusterServices());
+        futureList.add(deviceContext.stopClusterServices(connectionDropped));
+
+        return Futures.transform(Futures.successfulAsList(futureList), new Function<List<Void>, Void>() {
+            @Nullable
+            @Override
+            public Void apply(@Nullable List<Void> input) {
+                LOG.debug("Closed clustering MASTER services for node {}", deviceContext.getDeviceInfo().getLOGValue());
+                contextChainState = ContextChainState.WORKINGSLAVE;
+                return null;
+            }
+        });
     }
 
     @Override
-    public Future<Void> startChain() {
-        return null;
+    public ListenableFuture<Void> startChain() {
+        if (ContextChainState.INITIALIZED.equals(this.contextChainState)) {
+            return Futures.transform(this.statisticsContext.initialGatherDynamicData(), new Function<Boolean, Void>() {
+                @Nullable
+                @Override
+                public Void apply(@Nullable Boolean aBoolean) {
+                    contextChainState = ContextChainState.WORKINGMASTER;
+                    return null;
+                }
+            });
+        } else {
+            this.contextChainState = ContextChainState.WORKINGMASTER;
+        }
+        return Futures.immediateFuture(null);
     }
 
     @Override
@@ -53,5 +114,60 @@ public class ContextChainImpl implements ContextChain {
     @Override
     public void changePrimaryConnection(final ConnectionContext connectionContext) {
         this.primaryConnectionContext = connectionContext;
+        this.contextChainState = ContextChainState.INITIALIZED;
+        for (OFPContext context : contexts) {
+            context.replaceConnection(connectionContext);
+        }
+    }
+
+    @Override
+    public ContextChainState getContextChainState() {
+        return contextChainState;
+    }
+
+    @Override
+    public ListenableFuture<Void> connectionDropped() {
+        ContextChainState oldState = this.contextChainState;
+        this.contextChainState = ContextChainState.SLEEPING;
+        if (oldState.equals(ContextChainState.WORKINGMASTER)) {
+            return this.stopChain(true);
+        }
+        return Futures.immediateFuture(null);
+    }
+
+    @Override
+    public ConnectionContext getPrimaryConnectionContext() {
+        return primaryConnectionContext;
+    }
+
+    @Override
+    public void sleepTheChainAndDropConnection() {
+        this.contextChainState = ContextChainState.SLEEPING;
+        this.primaryConnectionContext.closeConnection(true);
+    }
+
+    @Override
+    public void registerServices(@NonNull final ClusterSingletonServiceProvider clusterSingletonServiceProvider) {
+        this.contextChainState = ContextChainState.WORKINGSLAVE;
+        this.lifecycleService.registerService(
+                clusterSingletonServiceProvider,
+                this.deviceContext,
+                this.deviceContext.getServiceIdentifier(),
+                this.deviceContext.getDeviceInfo());
+    }
+
+    @Override
+    public void makeDeviceSlave() {
+        this.lifecycleService.makeDeviceSlave(this.deviceContext);
+    }
+
+    @Override
+    public void closePrimaryConnection() {
+        this.primaryConnectionContext.closeConnection(true);
+    }
+
+    @Override
+    public DeviceContext provideDeviceContext() {
+        return this.deviceContext;
     }
 }