Bug 6465 Controller goes into slave mode
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / lifecycle / LifecycleServiceImpl.java
1 /**
2  * Copyright (c) 2016 Pantheon Technologies s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.openflowplugin.impl.lifecycle;
9
10 import com.google.common.base.Optional;
11 import com.google.common.util.concurrent.FutureCallback;
12 import com.google.common.util.concurrent.Futures;
13 import com.google.common.util.concurrent.ListenableFuture;
14 import java.util.Collection;
15 import java.util.List;
16 import java.util.Objects;
17 import javax.annotation.Nullable;
18 import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceProvider;
19 import org.opendaylight.mdsal.singleton.common.api.ClusterSingletonServiceRegistration;
20 import org.opendaylight.mdsal.singleton.common.api.ServiceGroupIdentifier;
21 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
22 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
23 import org.opendaylight.openflowplugin.api.openflow.device.handlers.ClusterInitializationPhaseHandler;
24 import org.opendaylight.openflowplugin.api.openflow.lifecycle.LifecycleService;
25 import org.opendaylight.openflowplugin.api.openflow.role.RoleContext;
26 import org.opendaylight.openflowplugin.api.openflow.rpc.RpcContext;
27 import org.opendaylight.openflowplugin.api.openflow.statistics.StatisticsContext;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31
32 public class LifecycleServiceImpl implements LifecycleService {
33
34     private static final Logger LOG = LoggerFactory.getLogger(LifecycleServiceImpl.class);
35
36     private DeviceContext deviceContext;
37     private RpcContext rpcContext;
38     private RoleContext roleContext;
39     private StatisticsContext statContext;
40     private ClusterSingletonServiceRegistration registration;
41     private ClusterInitializationPhaseHandler clusterInitializationPhaseHandler;
42
43
44     @Override
45     public void instantiateServiceInstance() {
46
47         LOG.info("========== Starting clustering MASTER services for node {} ==========", this.deviceContext.getDeviceInfo().getLOGValue());
48
49         if (this.clusterInitializationPhaseHandler.onContextInstantiateService(null)) {
50             LOG.info("========== Start-up clustering MASTER services for node {} was SUCCESSFUL ==========", this.deviceContext.getDeviceInfo().getLOGValue());
51         } else {
52             LOG.warn("========== Start-up clustering MASTER services for node {} was UN-SUCCESSFUL ==========", this.deviceContext.getDeviceInfo().getLOGValue());
53             this.closeConnection();
54         }
55
56     }
57
58     @Override
59     public ListenableFuture<Void> closeServiceInstance() {
60         if (LOG.isDebugEnabled()) {
61             LOG.debug("========== Stopping clustering MASTER services for node {} ==========", this.deviceContext.getDeviceInfo().getLOGValue());
62         }
63
64         final boolean connectionInterrupted =
65                 this.deviceContext
66                         .getPrimaryConnectionContext()
67                         .getConnectionState()
68                         .equals(ConnectionContext.CONNECTION_STATE.RIP);
69
70         LOG.info("Stopping role context cluster services for node {}", getIdentifier());
71         roleContext.stopClusterServices(connectionInterrupted);
72
73         LOG.info("Stopping statistics context cluster services for node {}", getIdentifier());
74         statContext.stopClusterServices(connectionInterrupted);
75
76         LOG.info("Stopping rpc context cluster services for node {}", getIdentifier());
77         rpcContext.stopClusterServices(connectionInterrupted);
78
79         LOG.info("Stopping device context cluster services for node {}", getIdentifier());
80         return deviceContext.stopClusterServices(connectionInterrupted);
81     }
82
83     @Override
84     public ServiceGroupIdentifier getIdentifier() {
85         return deviceContext.getServiceIdentifier();
86     }
87
88
89     @Override
90     public void close() throws Exception {
91         if (registration != null) {
92             registration.close();
93             registration = null;
94         }
95     }
96
97     @Override
98     public void registerService(final ClusterSingletonServiceProvider singletonServiceProvider) {
99         //lifecycle service -> device context -> statistics context -> rpc context -> role context -> lifecycle service
100         this.clusterInitializationPhaseHandler = deviceContext;
101         this.deviceContext.setLifecycleInitializationPhaseHandler(this.statContext);
102         this.statContext.setLifecycleInitializationPhaseHandler(this.rpcContext);
103         this.rpcContext.setLifecycleInitializationPhaseHandler(this.roleContext);
104         this.roleContext.setLifecycleInitializationPhaseHandler(this);
105         //Set initial submit handler
106         this.statContext.setInitialSubmitHandler(this.deviceContext);
107         //Register cluster singleton service
108         this.registration = singletonServiceProvider.registerClusterSingletonService(this);
109     }
110
111     @Override
112     public void setDeviceContext(final DeviceContext deviceContext) {
113         this.deviceContext = deviceContext;
114     }
115
116     @Override
117     public void setRpcContext(final RpcContext rpcContext) {
118         this.rpcContext = rpcContext;
119     }
120
121     @Override
122     public void setRoleContext(final RoleContext roleContext) {
123         this.roleContext = roleContext;
124     }
125
126     @Override
127     public void setStatContext(final StatisticsContext statContext) {
128         this.statContext = statContext;
129     }
130
131     @Override
132     public DeviceContext getDeviceContext() {
133         return this.deviceContext;
134     }
135
136     @Override
137     public void closeConnection() {
138         this.deviceContext.shutdownConnection();
139     }
140
141     private void fillDeviceFlowRegistry() {
142         // Fill device flow registry with flows from datastore
143         final ListenableFuture<List<Optional<FlowCapableNode>>> deviceFlowRegistryFill = deviceContext.getDeviceFlowRegistry().fill();
144
145         // Start statistics scheduling only after we finished initializing device flow registry
146         Futures.addCallback(deviceFlowRegistryFill, new FutureCallback<List<Optional<FlowCapableNode>>>() {
147             @Override
148             public void onSuccess(@Nullable List<Optional<FlowCapableNode>> result) {
149                 if (LOG.isDebugEnabled()) {
150                     // Count all flows we read from datastore for debugging purposes.
151                     // This number do not always represent how many flows were actually added
152                     // to DeviceFlowRegistry, because of possible duplicates.
153                     long flowCount = Optional.fromNullable(result).asSet().stream()
154                             .flatMap(Collection::stream)
155                             .filter(Objects::nonNull)
156                             .flatMap(flowCapableNodeOptional -> flowCapableNodeOptional.asSet().stream())
157                             .filter(Objects::nonNull)
158                             .filter(flowCapableNode -> Objects.nonNull(flowCapableNode.getTable()))
159                             .flatMap(flowCapableNode -> flowCapableNode.getTable().stream())
160                             .filter(Objects::nonNull)
161                             .filter(table -> Objects.nonNull(table.getFlow()))
162                             .flatMap(table -> table.getFlow().stream())
163                             .filter(Objects::nonNull)
164                             .count();
165
166                     LOG.debug("Finished filling flow registry with {} flows for node: {}", flowCount, deviceContext.getDeviceInfo().getLOGValue());
167                 }
168             }
169
170             @Override
171             public void onFailure(Throwable t) {
172                 if (deviceFlowRegistryFill.isCancelled()) {
173                     LOG.debug("Cancelled filling flow registry with flows for node: {}", deviceContext.getDeviceInfo().getLOGValue());
174                 } else {
175                     LOG.warn("Failed filling flow registry with flows for node: {} with exception: {}", deviceContext.getDeviceInfo().getLOGValue(), t);
176                 }
177             }
178         });
179     }
180
181     @Override
182     public void setLifecycleInitializationPhaseHandler(final ClusterInitializationPhaseHandler handler) {
183         this.clusterInitializationPhaseHandler = handler;
184     }
185
186     @Override
187     public boolean onContextInstantiateService(final ConnectionContext connectionContext) {
188
189         if (ConnectionContext.CONNECTION_STATE.RIP.equals(connectionContext.getConnectionState())) {
190             if (LOG.isDebugEnabled()) {
191                 LOG.debug("Connection to the device {} was interrupted.", this.deviceContext.getDeviceInfo().getLOGValue());
192             }
193             return false;
194         }
195
196         LOG.info("Caching flows IDs ...");
197         fillDeviceFlowRegistry();
198         return true;
199     }
200 }