blob: 60bbe9b3d989faa5af352df5cfcac6676922ab10 [file] [log] [blame]
HIGUCHI Yuta60a10142013-06-14 15:50:10 -07001package net.onrc.onos.ofcontroller.flowmanager;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -08002
3import java.util.ArrayList;
4import java.util.Collection;
5import java.util.HashMap;
Masayoshi Kobayashic9da09e2013-03-26 20:52:02 +00006import java.util.LinkedList;
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -08007import java.util.List;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -08008import java.util.Map;
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +00009import java.util.Random;
Pavlin Radoslavov53219802013-12-06 11:02:04 -080010import java.util.SortedMap;
Pavlin Radoslavov584bd112013-11-21 20:59:33 -080011import java.util.concurrent.BlockingQueue;
Pavlin Radoslavov584bd112013-11-21 20:59:33 -080012import java.util.concurrent.LinkedBlockingQueue;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080013
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080014import net.floodlightcontroller.core.IFloodlightProviderService;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080015import net.floodlightcontroller.core.IOFSwitch;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080016import net.floodlightcontroller.core.module.FloodlightModuleContext;
17import net.floodlightcontroller.core.module.FloodlightModuleException;
18import net.floodlightcontroller.core.module.IFloodlightModule;
19import net.floodlightcontroller.core.module.IFloodlightService;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080020import net.floodlightcontroller.restserver.IRestApiService;
Pavlin Radoslavov05378272013-10-19 23:23:05 -070021import net.onrc.onos.datagrid.IDatagridService;
Pankaj Berde38646d62013-06-21 11:34:04 -070022import net.onrc.onos.graph.GraphDBOperation;
HIGUCHI Yuta20514902013-06-12 11:24:16 -070023import net.onrc.onos.ofcontroller.core.INetMapStorage;
Pavlin Radoslavove9a3ef92013-10-18 18:46:45 -070024import net.onrc.onos.ofcontroller.floodlightlistener.INetworkGraphService;
HIGUCHI Yuta60a10142013-06-14 15:50:10 -070025import net.onrc.onos.ofcontroller.flowmanager.web.FlowWebRoutable;
Brian O'Connor8c166a72013-11-14 18:41:48 -080026import net.onrc.onos.ofcontroller.flowprogrammer.IFlowPusherService;
Pavlin Radoslavovc0862662013-12-10 15:31:49 -080027import net.onrc.onos.ofcontroller.forwarding.IForwardingService;
Pavlin Radoslavov15954d42013-10-19 15:29:04 -070028import net.onrc.onos.ofcontroller.topology.Topology;
Pavlin Radoslavov63e42602013-12-12 12:54:05 -080029import net.onrc.onos.ofcontroller.util.Dpid;
30import net.onrc.onos.ofcontroller.util.FlowEntry;
31import net.onrc.onos.ofcontroller.util.FlowEntrySwitchState;
32import net.onrc.onos.ofcontroller.util.FlowEntryUserState;
33import net.onrc.onos.ofcontroller.util.FlowEntryId;
34import net.onrc.onos.ofcontroller.util.FlowId;
35import net.onrc.onos.ofcontroller.util.FlowPath;
36import net.onrc.onos.ofcontroller.util.FlowPathUserState;
37import net.onrc.onos.ofcontroller.util.Pair;
Pavlin Radoslavovda8d7232013-12-12 12:48:14 -080038import net.onrc.onos.ofcontroller.util.serializers.KryoFactory;
39
Pavlin Radoslavov262e6832013-12-18 14:37:35 -080040import com.thinkaurelius.titan.core.TitanException;
41
Pavlin Radoslavovda8d7232013-12-12 12:48:14 -080042import com.esotericsoftware.kryo2.Kryo;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080043
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080044import org.slf4j.Logger;
45import org.slf4j.LoggerFactory;
46
admin944ef4f2013-10-08 17:48:37 -070047/**
HIGUCHI Yutaeb567aa2013-10-08 19:27:35 -070048 * Flow Manager class for handling the network flows.
admin944ef4f2013-10-08 17:48:37 -070049 */
Pavlin Radoslavov5adf1522013-04-04 17:43:41 -070050public class FlowManager implements IFloodlightModule, IFlowService, INetMapStorage {
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -080051
Pavlin Radoslavovdb1f91c2014-01-08 16:04:17 -080052 private boolean enableOnrc2014MeasurementsFlows = true;
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -080053
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -080054 protected GraphDBOperation dbHandlerApi;
55 protected GraphDBOperation dbHandlerInner;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080056
Jonathan Hart50a94982013-04-10 14:49:51 -070057 protected volatile IFloodlightProviderService floodlightProvider;
Pavlin Radoslavov05378272013-10-19 23:23:05 -070058 protected volatile IDatagridService datagridService;
59 protected IRestApiService restApi;
Pavlin Radoslavov571cff92013-03-20 02:01:32 -070060 protected FloodlightModuleContext context;
Pavlin Radoslavov9a859022013-10-30 10:08:24 -070061 protected FlowEventHandler flowEventHandler;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080062
Brian O'Connor8c166a72013-11-14 18:41:48 -080063 protected IFlowPusherService pusher;
Pavlin Radoslavov7208e9a2013-12-11 14:31:07 -080064 protected IForwardingService forwardingService;
Pavlin Radoslavovda8d7232013-12-12 12:48:14 -080065
66 private KryoFactory kryoFactory = new KryoFactory();
67
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +000068 // Flow Entry ID generation state
69 private static Random randomGenerator = new Random();
70 private static int nextFlowEntryIdPrefix = 0;
71 private static int nextFlowEntryIdSuffix = 0;
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +000072
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -080073 /** The logger. */
Yuta HIGUCHI6ac8d182013-10-22 15:24:56 -070074 private final static Logger log = LoggerFactory.getLogger(FlowManager.class);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080075
Pavlin Radoslavov584bd112013-11-21 20:59:33 -080076 // The queue to write Flow Entries to the database
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -080077 private BlockingQueue<FlowPath> flowPathsToDatabaseQueue =
78 new LinkedBlockingQueue<FlowPath>();
Pavlin Radoslavov584bd112013-11-21 20:59:33 -080079 FlowDatabaseWriter flowDatabaseWriter;
80
admin944ef4f2013-10-08 17:48:37 -070081 /**
82 * Initialize the Flow Manager.
83 *
84 * @param conf the Graph Database configuration string.
85 */
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080086 @Override
87 public void init(String conf) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -080088 dbHandlerApi = new GraphDBOperation(conf);
89 dbHandlerInner = new GraphDBOperation(conf);
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080090 }
91
admin944ef4f2013-10-08 17:48:37 -070092 /**
93 * Shutdown the Flow Manager operation.
94 */
Yuta HIGUCHI3ab1fd02013-12-17 11:01:02 -080095 @Override
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -080096 protected void finalize() {
Toshio Koide9fe1cb22013-06-13 13:51:11 -070097 close();
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -080098 }
99
admin944ef4f2013-10-08 17:48:37 -0700100 /**
101 * Shutdown the Flow Manager operation.
102 */
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800103 @Override
104 public void close() {
Pavlin Radoslavovcc757162014-01-10 16:26:38 -0800105 floodlightProvider.removeOFSwitchListener(flowEventHandler);
Pavlin Radoslavov9a859022013-10-30 10:08:24 -0700106 datagridService.deregisterFlowEventHandlerService(flowEventHandler);
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800107 dbHandlerApi.close();
108 dbHandlerInner.close();
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800109 }
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800110
admin944ef4f2013-10-08 17:48:37 -0700111 /**
112 * Get the collection of offered module services.
113 *
114 * @return the collection of offered module services.
115 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800116 @Override
117 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
Yuta HIGUCHI3ab1fd02013-12-17 11:01:02 -0800118 Collection<Class<? extends IFloodlightService>> l =
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800119 new ArrayList<Class<? extends IFloodlightService>>();
120 l.add(IFlowService.class);
121 return l;
122 }
123
admin944ef4f2013-10-08 17:48:37 -0700124 /**
125 * Get the collection of implemented services.
126 *
127 * @return the collection of implemented services.
128 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800129 @Override
Yuta HIGUCHI3ab1fd02013-12-17 11:01:02 -0800130 public Map<Class<? extends IFloodlightService>, IFloodlightService>
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800131 getServiceImpls() {
132 Map<Class<? extends IFloodlightService>,
Pavlin Radoslavove9a3ef92013-10-18 18:46:45 -0700133 IFloodlightService> m =
134 new HashMap<Class<? extends IFloodlightService>,
135 IFloodlightService>();
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800136 m.put(IFlowService.class, this);
137 return m;
138 }
139
admin944ef4f2013-10-08 17:48:37 -0700140 /**
141 * Get the collection of modules this module depends on.
142 *
143 * @return the collection of modules this module depends on.
144 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800145 @Override
Yuta HIGUCHI3ab1fd02013-12-17 11:01:02 -0800146 public Collection<Class<? extends IFloodlightService>>
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700147 getModuleDependencies() {
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800148 Collection<Class<? extends IFloodlightService>> l =
149 new ArrayList<Class<? extends IFloodlightService>>();
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800150 l.add(IFloodlightProviderService.class);
Pavlin Radoslavove9a3ef92013-10-18 18:46:45 -0700151 l.add(INetworkGraphService.class);
Pavlin Radoslavov05378272013-10-19 23:23:05 -0700152 l.add(IDatagridService.class);
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800153 l.add(IRestApiService.class);
Pavlin Radoslavovc0862662013-12-10 15:31:49 -0800154 l.add(IFlowPusherService.class);
Pavlin Radoslavov63c2d052013-12-18 18:17:55 -0800155 //
156 // TODO: Comment-out the dependency on the IForwardingService,
157 // because it is an optional module. Apparently, adding the dependency
158 // here automatically enables the module.
159 //
160 // l.add(IForwardingService.class);
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800161 return l;
162 }
163
admin944ef4f2013-10-08 17:48:37 -0700164 /**
165 * Initialize the module.
166 *
167 * @param context the module context to use for the initialization.
168 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800169 @Override
170 public void init(FloodlightModuleContext context)
171 throws FloodlightModuleException {
Pavlin Radoslavov571cff92013-03-20 02:01:32 -0700172 this.context = context;
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800173 floodlightProvider = context.getServiceImpl(IFloodlightProviderService.class);
Pavlin Radoslavov05378272013-10-19 23:23:05 -0700174 datagridService = context.getServiceImpl(IDatagridService.class);
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800175 restApi = context.getServiceImpl(IRestApiService.class);
Pavlin Radoslavov939ca6b2013-12-03 12:35:37 -0800176 pusher = context.getServiceImpl(IFlowPusherService.class);
Pavlin Radoslavov7208e9a2013-12-11 14:31:07 -0800177 forwardingService = context.getServiceImpl(IForwardingService.class);
Brian O'Connor8c166a72013-11-14 18:41:48 -0800178
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700179 this.init("");
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800180 }
181
admin944ef4f2013-10-08 17:48:37 -0700182 /**
183 * Get the next Flow Entry ID to use.
184 *
185 * @return the next Flow Entry ID to use.
186 */
Naoki Shiota4e77de92013-11-18 17:29:54 -0800187 @Override
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700188 public synchronized long getNextFlowEntryId() {
Pavlin Radoslavov0b22d0e2013-04-02 01:12:46 +0000189 //
190 // Generate the next Flow Entry ID.
191 // NOTE: For now, the higher 32 bits are random, and
192 // the lower 32 bits are sequential.
193 // In the future, we need a better allocation mechanism.
194 //
195 if ((nextFlowEntryIdSuffix & 0xffffffffL) == 0xffffffffL) {
196 nextFlowEntryIdPrefix = randomGenerator.nextInt();
197 nextFlowEntryIdSuffix = 0;
198 } else {
199 nextFlowEntryIdSuffix++;
200 }
201 long result = (long)nextFlowEntryIdPrefix << 32;
202 result = result | (0xffffffffL & nextFlowEntryIdSuffix);
203 return result;
204 }
205
admin944ef4f2013-10-08 17:48:37 -0700206 /**
207 * Startup module operation.
208 *
209 * @param context the module context to use for the startup.
210 */
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800211 @Override
212 public void startUp(FloodlightModuleContext context) {
admin944ef4f2013-10-08 17:48:37 -0700213 restApi.addRestletRoutable(new FlowWebRoutable());
Pavlin Radoslavov50e532e2013-10-20 02:07:51 -0700214
admin944ef4f2013-10-08 17:48:37 -0700215 // Initialize the Flow Entry ID generator
216 nextFlowEntryIdPrefix = randomGenerator.nextInt();
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800217
218 //
219 // The thread to write to the database
220 //
221 flowDatabaseWriter = new FlowDatabaseWriter(this,
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800222 flowPathsToDatabaseQueue);
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800223 flowDatabaseWriter.start();
224
Pavlin Radoslavov6b79f2b2013-10-26 21:31:10 -0700225 //
Pavlin Radoslavovc9da5322013-11-22 11:59:46 -0800226 // The Flow Event Handler thread:
227 // - create
228 // - register with the Datagrid Service
229 // - startup
Pavlin Radoslavov6b79f2b2013-10-26 21:31:10 -0700230 //
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800231 flowEventHandler = new FlowEventHandler(this, datagridService);
Pavlin Radoslavovcc757162014-01-10 16:26:38 -0800232 floodlightProvider.addOFSwitchListener(flowEventHandler);
Pavlin Radoslavov9a859022013-10-30 10:08:24 -0700233 datagridService.registerFlowEventHandlerService(flowEventHandler);
Pavlin Radoslavov9a859022013-10-30 10:08:24 -0700234 flowEventHandler.start();
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800235 }
236
237 /**
238 * Add a flow.
239 *
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800240 * @param flowPath the Flow Path to install.
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800241 * @return the Flow ID on success, otherwise null.
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800242 */
243 @Override
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800244 public FlowId addFlow(FlowPath flowPath) {
245
246 // Allocate the Flow ID if necessary
Pavlin Radoslavov892dd182013-12-05 23:33:15 -0800247 if (! flowPath.isValidFlowId()) {
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800248 long id = getNextFlowEntryId();
249 flowPath.setFlowId(new FlowId(id));
250 }
251
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700252 //
Pavlin Radoslavov1c24f222013-10-30 13:56:46 -0700253 // NOTE: We need to explicitly initialize some of the state,
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700254 // in case the application didn't do it.
255 //
256 for (FlowEntry flowEntry : flowPath.flowEntries()) {
Pavlin Radoslavov07d22b42013-12-15 16:33:33 -0800257 // The Flow Entry switch state
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700258 if (flowEntry.flowEntrySwitchState() ==
259 FlowEntrySwitchState.FE_SWITCH_UNKNOWN) {
260 flowEntry.setFlowEntrySwitchState(FlowEntrySwitchState.FE_SWITCH_NOT_UPDATED);
261 }
Pavlin Radoslavov07d22b42013-12-15 16:33:33 -0800262 // The Flow Entry ID
263 if (! flowEntry.isValidFlowEntryId()) {
264 long id = getNextFlowEntryId();
265 flowEntry.setFlowEntryId(new FlowEntryId(id));
266 }
267 // The Flow ID
Pavlin Radoslavov1c24f222013-10-30 13:56:46 -0700268 if (! flowEntry.isValidFlowId())
269 flowEntry.setFlowId(new FlowId(flowPath.flowId().value()));
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700270 }
271
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800272 if (FlowDatabaseOperation.addFlow(dbHandlerApi, flowPath)) {
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800273 if (enableOnrc2014MeasurementsFlows) {
Pavlin Radoslavov2194d112014-01-10 13:36:00 -0800274 datagridService.notificationSendFlowIdAdded(flowPath.flowId(),
275 flowPath.dataPath().srcPort().dpid());
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800276 } else {
277 datagridService.notificationSendFlowAdded(flowPath);
278 }
279
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800280 return flowPath.flowId();
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700281 }
Pavlin Radoslavov051abb42013-12-05 17:24:50 -0800282 return null;
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800283 }
284
285 /**
Pavlin Radoslavovbaea9242013-05-08 00:20:09 +0000286 * Delete all previously added flows.
287 *
288 * @return true on success, otherwise false.
289 */
290 @Override
291 public boolean deleteAllFlows() {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800292 if (FlowDatabaseOperation.deleteAllFlows(dbHandlerApi)) {
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800293 if (enableOnrc2014MeasurementsFlows) {
294 datagridService.notificationSendAllFlowIdsRemoved();
295 } else {
296 datagridService.notificationSendAllFlowsRemoved();
297 }
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700298 return true;
299 }
300 return false;
Pavlin Radoslavovbaea9242013-05-08 00:20:09 +0000301 }
302
303 /**
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800304 * Delete a previously added flow.
305 *
306 * @param flowId the Flow ID of the flow to delete.
307 * @return true on success, otherwise false.
308 */
309 @Override
310 public boolean deleteFlow(FlowId flowId) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800311 if (FlowDatabaseOperation.deleteFlow(dbHandlerApi, flowId)) {
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800312 if (enableOnrc2014MeasurementsFlows) {
313 datagridService.notificationSendFlowIdRemoved(flowId);
314 } else {
315 datagridService.notificationSendFlowRemoved(flowId);
316 }
Pavlin Radoslavov1308dc62013-10-25 15:54:31 -0700317 return true;
318 }
319 return false;
Pavlin Radoslavov916832f2013-03-14 17:48:41 -0700320 }
321
322 /**
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800323 * Get a previously added flow.
324 *
325 * @param flowId the Flow ID of the flow to get.
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800326 * @return the Flow Path if found, otherwise null.
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800327 */
328 @Override
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800329 public FlowPath getFlow(FlowId flowId) {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800330 return FlowDatabaseOperation.getFlow(dbHandlerApi, flowId);
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700331 }
Pavlin Radoslavovb6f53542013-03-01 16:02:14 -0800332
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700333 /**
Pavlin Radoslavov52119fa2014-01-09 13:37:52 -0800334 * Get a previously added flow entry.
335 *
336 * @param flowEntryId the Flow Entry ID of the flow entry to get.
337 * @return the Flow Entry if found, otherwise null.
338 */
339 public FlowEntry getFlowEntry(FlowEntryId flowEntryId) {
340 return FlowDatabaseOperation.getFlowEntry(dbHandlerApi, flowEntryId);
341 }
342
343 /**
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800344 * Get the source switch DPID of a previously added flow.
345 *
346 * @param flowId the Flow ID of the flow to get.
347 * @return the source switch DPID if found, otherwise null.
348 */
349 public Dpid getFlowSourceDpid(FlowId flowId) {
350 return FlowDatabaseOperation.getFlowSourceDpid(dbHandlerApi, flowId);
351 }
352
353 /**
Pavlin Radoslavov661c86f2013-10-21 12:40:40 -0700354 * Get all installed flows by all installers.
355 *
356 * @return the Flow Paths if found, otherwise null.
357 */
358 @Override
359 public ArrayList<FlowPath> getAllFlows() {
Pavlin Radoslavovbc96ae12013-11-05 08:44:02 -0800360 return FlowDatabaseOperation.getAllFlows(dbHandlerApi);
Pavlin Radoslavov706df052013-03-06 10:49:07 -0800361 }
362
363 /**
Pavlin Radoslavov16b761d2014-01-08 09:47:14 -0800364 * Get all installed flows whose Source Switch is controlled by this
365 * instance.
366 *
367 * @param mySwitches the collection of the switches controlled by this
368 * instance.
369 * @return the Flow Paths if found, otherwise null.
370 */
371 public ArrayList<FlowPath> getAllMyFlows(Map<Long, IOFSwitch> mySwitches) {
372 return FlowDatabaseOperation.getAllMyFlows(dbHandlerApi, mySwitches);
373 }
374
375 /**
admin944ef4f2013-10-08 17:48:37 -0700376 * Get summary of all installed flows by all installers in a given range.
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700377 *
admin944ef4f2013-10-08 17:48:37 -0700378 * @param flowId the Flow ID of the first flow in the flow range to get.
HIGUCHI Yutaeb567aa2013-10-08 19:27:35 -0700379 * @param maxFlows the maximum number of flows to be returned.
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700380 * @return the Flow Paths if found, otherwise null.
381 */
382 @Override
Pavlin Radoslavov4ef6ba22013-11-22 19:32:58 -0800383 public ArrayList<FlowPath> getAllFlowsSummary(FlowId flowId,
384 int maxFlows) {
Pavlin Radoslavov53219802013-12-06 11:02:04 -0800385 ArrayList<FlowPath> flowPaths = new ArrayList<FlowPath>();
386 SortedMap<Long, FlowPath> sortedFlowPaths =
387 flowEventHandler.getAllFlowPathsCopy();
Pavlin Radoslavove79c19a2013-12-06 09:28:15 -0800388
Pavlin Radoslavov53219802013-12-06 11:02:04 -0800389 //
Pavlin Radoslavove79c19a2013-12-06 09:28:15 -0800390 // Truncate each Flow Path and Flow Entry
Pavlin Radoslavov53219802013-12-06 11:02:04 -0800391 //
392 for (FlowPath flowPath : sortedFlowPaths.values()) {
393 //
394 // TODO: Add only the Flow Paths that have been successfully
395 // installed.
396 //
Pavlin Radoslavove79c19a2013-12-06 09:28:15 -0800397 flowPath.setFlowEntryMatch(null);
398 flowPath.setFlowEntryActions(null);
399 for (FlowEntry flowEntry : flowPath.flowEntries()) {
400 flowEntry.setFlowEntryMatch(null);
401 flowEntry.setFlowEntryActions(null);
402 }
Pavlin Radoslavov53219802013-12-06 11:02:04 -0800403 flowPaths.add(flowPath);
Pavlin Radoslavove79c19a2013-12-06 09:28:15 -0800404 }
405
Pavlin Radoslavove79c19a2013-12-06 09:28:15 -0800406 return flowPaths;
Umesh Krishnaswamy57a32a92013-03-21 14:21:15 -0700407 }
Pavlin Radoslavovb9fe6b42013-03-27 16:25:05 -0700408
409 /**
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800410 * Get the collection of my switches.
411 *
412 * @return the collection of my switches.
413 */
414 public Map<Long, IOFSwitch> getMySwitches() {
415 return floodlightProvider.getSwitches();
416 }
417
418 /**
Pavlin Radoslavoved0f4a82013-11-04 16:38:36 -0800419 * Get the network topology.
420 *
421 * @return the network topology.
422 */
Yuta HIGUCHI3ab1fd02013-12-17 11:01:02 -0800423 @Override
Pavlin Radoslavoved0f4a82013-11-04 16:38:36 -0800424 public Topology getTopology() {
425 return flowEventHandler.getTopology();
426 }
427
428 /**
Pavlin Radoslavov4df85ae2013-11-26 14:48:32 -0800429 * Inform the Flow Manager that a Flow Entry on switch expired.
430 *
Pavlin Radoslavov3bd5ccf2013-11-26 15:10:21 -0800431 * @param sw the switch the Flow Entry expired on.
Pavlin Radoslavov4df85ae2013-11-26 14:48:32 -0800432 * @param flowEntryId the Flow Entry ID of the expired Flow Entry.
433 */
Yuta HIGUCHI3ab1fd02013-12-17 11:01:02 -0800434 @Override
Pavlin Radoslavovc5718e72013-12-10 15:47:10 -0800435 public void flowEntryOnSwitchExpired(IOFSwitch sw,
436 FlowEntryId flowEntryId) {
437 // Find the Flow Entry
438 FlowEntry flowEntry = datagridService.getFlowEntry(flowEntryId);
Pavlin Radoslavovac0fabc2013-12-13 10:47:56 -0800439 if (flowEntry == null)
Pavlin Radoslavovc5718e72013-12-10 15:47:10 -0800440 return; // Flow Entry not found
441
442 // Find the Flow Path
443 FlowPath flowPath = datagridService.getFlow(flowEntry.flowId());
444 if (flowPath == null)
445 return; // Flow Path not found
446
447 //
448 // Remove the Flow if the Flow Entry expired on the first switch
449 //
450 Dpid srcDpid = flowPath.dataPath().srcPort().dpid();
451 if (srcDpid.value() != sw.getId())
452 return;
453 deleteFlow(flowPath.flowId());
Pavlin Radoslavov4df85ae2013-11-26 14:48:32 -0800454 }
455
456 /**
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800457 * Inform the Flow Manager that a collection of Flow Entries have been
458 * pushed to a switch.
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800459 *
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800460 * @param entries the collection of <IOFSwitch, FlowEntry> pairs
461 * that have been pushed.
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800462 */
Yuta HIGUCHI3ab1fd02013-12-17 11:01:02 -0800463 @Override
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800464 public void flowEntriesPushedToSwitch(
465 Collection<Pair<IOFSwitch, FlowEntry>> entries) {
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800466
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800467 if (enableOnrc2014MeasurementsFlows)
468 return;
469
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800470 //
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800471 // Process all entries
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800472 //
Pavlin Radoslavov237fde72013-12-17 22:21:06 -0800473 // TODO: For now we have to create an explicit FlowEntry copy so
474 // we don't modify the original FlowEntry.
475 // This should go away after we start using the OpenFlow Barrier
476 // mechnanism in the FlowPusher.
477 //
478 Kryo kryo = kryoFactory.newKryo();
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800479 for (Pair<IOFSwitch, FlowEntry> entry : entries) {
Pavlin Radoslavov4535bc12013-12-05 10:43:49 -0800480 FlowEntry flowEntry = entry.second;
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800481
482 //
483 // Mark the Flow Entry that it has been pushed to the switch
484 //
Pavlin Radoslavov237fde72013-12-17 22:21:06 -0800485 FlowEntry copyFlowEntry = kryo.copy(flowEntry);
486 copyFlowEntry.setFlowEntrySwitchState(FlowEntrySwitchState.FE_SWITCH_UPDATED);
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800487
488 //
489 // Write the Flow Entry to the Datagrid
490 //
Pavlin Radoslavov237fde72013-12-17 22:21:06 -0800491 switch (copyFlowEntry.flowEntryUserState()) {
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800492 case FE_USER_ADD:
Pavlin Radoslavov237fde72013-12-17 22:21:06 -0800493 datagridService.notificationSendFlowEntryAdded(copyFlowEntry);
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800494 break;
495 case FE_USER_MODIFY:
Pavlin Radoslavov237fde72013-12-17 22:21:06 -0800496 datagridService.notificationSendFlowEntryUpdated(copyFlowEntry);
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800497 break;
498 case FE_USER_DELETE:
Pavlin Radoslavov237fde72013-12-17 22:21:06 -0800499 datagridService.notificationSendFlowEntryRemoved(copyFlowEntry.flowEntryId());
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800500 break;
Pavlin Radoslavov4839f6d2013-12-11 12:49:45 -0800501 case FE_USER_UNKNOWN:
502 assert(false);
503 break;
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800504 }
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800505 }
Pavlin Radoslavov237fde72013-12-17 22:21:06 -0800506 kryoFactory.deleteKryo(kryo);
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800507 }
508
509 /**
Pavlin Radoslavov7208e9a2013-12-11 14:31:07 -0800510 * Generate a notification that a collection of Flow Paths has been
511 * installed in the network.
512 *
513 * @param flowPaths the collection of installed Flow Paths.
514 */
515 void notificationFlowPathsInstalled(Collection<FlowPath> flowPaths) {
Pavlin Radoslavov63c2d052013-12-18 18:17:55 -0800516 //
517 // TODO: Add an explicit check for null pointer, because
518 // the IForwardingService is optional. Remove the "if" statement
519 // after hte Forwarding Module becomes mandatory.
520 //
521 if (forwardingService != null)
522 forwardingService.flowsInstalled(flowPaths);
Pavlin Radoslavov7208e9a2013-12-11 14:31:07 -0800523 }
524
525 /**
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800526 * Push modified Flow-related state as appropriate.
527 *
528 * @param modifiedFlowPaths the collection of modified Flow Paths.
529 * @param modifiedFlowEntries the collection of modified Flow Entries.
530 */
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800531 void pushModifiedFlowState(Collection<FlowPath> modifiedFlowPaths,
532 Collection<FlowEntry> modifiedFlowEntries) {
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800533 //
534 // Push the modified Flow state:
535 // - Flow Entries to switches and the datagrid
536 // - Flow Paths to the database
537 //
538 pushModifiedFlowEntriesToSwitches(modifiedFlowEntries);
Pavlin Radoslavov3a7cc902014-01-09 02:32:08 -0800539 if (enableOnrc2014MeasurementsFlows) {
540 writeModifiedFlowPathsToDatabase(modifiedFlowPaths);
541 } else {
542 pushModifiedFlowPathsToDatabase(modifiedFlowPaths);
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800543 cleanupDeletedFlowEntriesFromDatagrid(modifiedFlowEntries);
544 }
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800545 }
546
547 /**
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800548 * Push modified Flow Entries to switches.
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700549 *
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800550 * NOTE: Only the Flow Entries to switches controlled by this instance
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700551 * are pushed.
552 *
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800553 * @param modifiedFlowEntries the collection of modified Flow Entries.
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700554 */
Pavlin Radoslavov7847db72014-01-10 11:35:21 -0800555 void pushModifiedFlowEntriesToSwitches(
Pavlin Radoslavovafc4aa92013-12-04 12:44:23 -0800556 Collection<FlowEntry> modifiedFlowEntries) {
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800557 if (modifiedFlowEntries.isEmpty())
558 return;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700559
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800560 List<Pair<IOFSwitch, FlowEntry>> entries =
561 new LinkedList<Pair<IOFSwitch, FlowEntry>>();
562
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800563 Map<Long, IOFSwitch> mySwitches = getMySwitches();
564
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800565 //
566 // Create a collection of my Flow Entries to push
567 //
Pavlin Radoslavovafc4aa92013-12-04 12:44:23 -0800568 for (FlowEntry flowEntry : modifiedFlowEntries) {
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800569 IOFSwitch mySwitch = mySwitches.get(flowEntry.dpid().value());
570 if (mySwitch == null)
571 continue;
572
Pavlin Radoslavovd1b728c2013-12-18 21:39:58 -0800573 if (flowEntry.flowEntrySwitchState() ==
574 FlowEntrySwitchState.FE_SWITCH_UPDATED) {
575 //
576 // Don't push again Flow Entries that were already already
577 // installed into the switches.
578 //
579 continue;
580 }
581
Pavlin Radoslavovaca49d12013-12-04 19:49:17 -0800582 //
583 // Assign Flow Entry IDs if missing.
584 //
585 // NOTE: This is an additional safeguard, in case the
586 // mySwitches set has changed (after the Flow Entry IDs
587 // assignments by the caller).
588 //
589 if (! flowEntry.isValidFlowEntryId()) {
590 long id = getNextFlowEntryId();
591 flowEntry.setFlowEntryId(new FlowEntryId(id));
592 }
593
Yuta HIGUCHI5302ddf2014-01-06 12:53:35 -0800594 log.debug("Pushing Flow Entry To Switch: {}", flowEntry);
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800595 entries.add(new Pair<IOFSwitch, FlowEntry>(mySwitch, flowEntry));
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800596 }
Pavlin Radoslavovab3f8862013-12-04 18:35:53 -0800597
598 pusher.pushFlowEntries(entries);
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800599 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700600
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800601 /**
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800602 * Cleanup deleted Flow Entries from the datagrid.
603 *
604 * NOTE: We cleanup only the Flow Entries that are not for our switches.
605 * This is needed to handle the case a switch going down:
606 * It has no Master controller instance, hence no controller instance
607 * will cleanup its flow entries.
608 * This is sub-optimal: we need to elect a controller instance to handle
609 * the cleanup of such orphaned flow entries.
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800610 *
611 * @param modifiedFlowEntries the collection of modified Flow Entries.
612 */
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800613 private void cleanupDeletedFlowEntriesFromDatagrid(
Pavlin Radoslavovafc4aa92013-12-04 12:44:23 -0800614 Collection<FlowEntry> modifiedFlowEntries) {
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800615 if (modifiedFlowEntries.isEmpty())
616 return;
617
618 Map<Long, IOFSwitch> mySwitches = getMySwitches();
619
Pavlin Radoslavovafc4aa92013-12-04 12:44:23 -0800620 for (FlowEntry flowEntry : modifiedFlowEntries) {
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800621 //
622 // Process only Flow Entries that should be deleted and have
623 // a valid Flow Entry ID.
624 //
Pavlin Radoslavov426a8532013-12-02 17:32:21 -0800625 if (! flowEntry.isValidFlowEntryId())
626 continue;
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800627 if (flowEntry.flowEntryUserState() !=
628 FlowEntryUserState.FE_USER_DELETE) {
629 continue;
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800630 }
631
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800632 //
633 // NOTE: The deletion of Flow Entries for my switches is handled
634 // elsewhere.
635 //
636 IOFSwitch mySwitch = mySwitches.get(flowEntry.dpid().value());
637 if (mySwitch != null)
638 continue;
639
Yuta HIGUCHI5302ddf2014-01-06 12:53:35 -0800640 log.debug("Pushing cleanup of Flow Entry To Datagrid: {}", flowEntry);
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800641
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800642 //
643 // Write the Flow Entry to the Datagrid
644 //
Pavlin Radoslavovda0ab442013-12-04 14:08:58 -0800645 datagridService.notificationSendFlowEntryRemoved(flowEntry.flowEntryId());
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800646 }
647 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700648
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800649 /**
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800650 * Class to implement writing to the database in a separate thread.
651 */
652 class FlowDatabaseWriter extends Thread {
653 private FlowManager flowManager;
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800654 private BlockingQueue<FlowPath> blockingQueue;
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800655
656 /**
657 * Constructor.
658 *
659 * @param flowManager the Flow Manager to use.
660 * @param blockingQueue the blocking queue to use.
661 */
662 FlowDatabaseWriter(FlowManager flowManager,
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800663 BlockingQueue<FlowPath> blockingQueue) {
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800664 this.flowManager = flowManager;
665 this.blockingQueue = blockingQueue;
666 }
667
668 /**
669 * Run the thread.
670 */
671 @Override
672 public void run() {
673 //
674 // The main loop
675 //
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800676 Collection<FlowPath> collection = new LinkedList<FlowPath>();
Yuta HIGUCHI61509a42013-12-17 10:41:04 -0800677 this.setName("FlowDatabaseWriter " + this.getId() );
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800678 try {
679 while (true) {
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800680 FlowPath flowPath = blockingQueue.take();
681 collection.add(flowPath);
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800682 blockingQueue.drainTo(collection);
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800683 flowManager.writeModifiedFlowPathsToDatabase(collection);
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800684 collection.clear();
685 }
686 } catch (Exception exception) {
687 log.debug("Exception writing to the Database: ", exception);
688 }
689 }
690 }
691
692 /**
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800693 * Push Flow Paths to the Network MAP.
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800694 *
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800695 * NOTE: The complete Flow Paths are pushed only on the instance
696 * responsible for the first switch. This is to avoid database errors
697 * when multiple instances are writing Flow Entries for the same Flow Path.
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800698 *
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800699 * @param modifiedFlowPaths the collection of Flow Paths to push.
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800700 */
Pavlin Radoslavova0c16362013-12-04 13:18:08 -0800701 private void pushModifiedFlowPathsToDatabase(
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800702 Collection<FlowPath> modifiedFlowPaths) {
Pavlin Radoslavovda8d7232013-12-12 12:48:14 -0800703 List<FlowPath> copiedFlowPaths = new LinkedList<FlowPath>();
704
705 //
706 // Create a copy of the Flow Paths to push, because the pushing
707 // itself will happen on a separate thread.
708 //
709 Kryo kryo = kryoFactory.newKryo();
710 for (FlowPath flowPath : modifiedFlowPaths) {
711 FlowPath copyFlowPath = kryo.copy(flowPath);
712 copiedFlowPaths.add(copyFlowPath);
713 }
714 kryoFactory.deleteKryo(kryo);
715
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800716 //
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800717 // We only add the Flow Paths to the Database Queue.
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800718 // The FlowDatabaseWriter thread is responsible for the actual writing.
719 //
Pavlin Radoslavovda8d7232013-12-12 12:48:14 -0800720 flowPathsToDatabaseQueue.addAll(copiedFlowPaths);
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800721 }
722
723 /**
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800724 * Write Flow Paths to the Network MAP.
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800725 *
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800726 * NOTE: The complete Flow Paths are pushed only on the instance
727 * responsible for the first switch. This is to avoid database errors
728 * when multiple instances are writing Flow Entries for the same Flow Path.
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800729 *
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800730 * @param modifiedFlowPaths the collection of Flow Paths to write.
Pavlin Radoslavov584bd112013-11-21 20:59:33 -0800731 */
Pavlin Radoslavov417398f2014-01-10 13:04:33 -0800732 void writeModifiedFlowPathsToDatabase(
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800733 Collection<FlowPath> modifiedFlowPaths) {
734 if (modifiedFlowPaths.isEmpty())
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800735 return;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700736
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800737 Map<Long, IOFSwitch> mySwitches = getMySwitches();
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700738
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800739 for (FlowPath flowPath : modifiedFlowPaths) {
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800740 //
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800741 // Push the changes only on the instance responsible for the
742 // first switch.
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800743 //
Pavlin Radoslavov63117172013-11-07 02:18:37 -0800744 Dpid srcDpid = flowPath.dataPath().srcPort().dpid();
745 IOFSwitch mySrcSwitch = mySwitches.get(srcDpid.value());
746 if (mySrcSwitch == null)
747 continue;
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800748
749 //
Pavlin Radoslavovef545052013-12-05 15:17:25 -0800750 // Delete the Flow Path from the Network Map
751 //
752 if (flowPath.flowPathUserState() ==
753 FlowPathUserState.FP_USER_DELETE) {
Yuta HIGUCHI5302ddf2014-01-06 12:53:35 -0800754 log.debug("Deleting Flow Path From Database: {}", flowPath);
Pavlin Radoslavovef545052013-12-05 15:17:25 -0800755
Pavlin Radoslavov262e6832013-12-18 14:37:35 -0800756 boolean retry = false;
757 do {
758 retry = false;
759 try {
760 if (! FlowDatabaseOperation.deleteFlow(
761 dbHandlerInner,
762 flowPath.flowId())) {
763 log.error("Cannot delete Flow Path {} from Network Map",
764 flowPath.flowId());
765 retry = true;
766 }
767 } catch (TitanException te) {
768 log.error("Titan Exception deleting Flow Path from Network MAP: {}", te);
769 retry = true;
770 } catch (Exception e) {
771 log.error("Exception deleting Flow Path from Network MAP: {}", e);
Yuta HIGUCHI67a7a3e2014-01-03 14:51:34 -0800772 }
Pavlin Radoslavov262e6832013-12-18 14:37:35 -0800773 } while (retry);
774
Pavlin Radoslavovef545052013-12-05 15:17:25 -0800775 continue;
776 }
777
778 //
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800779 // Test whether all Flow Entries are valid
Pavlin Radoslavov9f33edb2013-11-06 18:24:37 -0800780 //
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800781 boolean allValid = true;
782 for (FlowEntry flowEntry : flowPath.flowEntries()) {
783 if (flowEntry.flowEntryUserState() ==
784 FlowEntryUserState.FE_USER_DELETE) {
785 continue;
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700786 }
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800787 if (! flowEntry.isValidFlowEntryId()) {
788 allValid = false;
789 break;
790 }
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800791 if (! enableOnrc2014MeasurementsFlows) {
792 if (flowEntry.flowEntrySwitchState() !=
793 FlowEntrySwitchState.FE_SWITCH_UPDATED) {
794 allValid = false;
795 break;
796 }
Pavlin Radoslavov237fde72013-12-17 22:21:06 -0800797 }
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800798 }
799 if (! allValid)
800 continue;
801
Yuta HIGUCHI5302ddf2014-01-06 12:53:35 -0800802 log.debug("Pushing Flow Path To Database: {}", flowPath);
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800803
804 //
805 // Write the Flow Path to the Network Map
806 //
Pavlin Radoslavov262e6832013-12-18 14:37:35 -0800807 boolean retry = false;
808 do {
809 retry = false;
810 try {
811 if (! FlowDatabaseOperation.addFlow(dbHandlerInner, flowPath)) {
Yuta HIGUCHI5302ddf2014-01-06 12:53:35 -0800812 log.error("Cannot write to Network Map Flow Path {}", flowPath.flowId());
Pavlin Radoslavov262e6832013-12-18 14:37:35 -0800813 retry = true;
814 }
815 } catch (TitanException te) {
816 log.error("Titan Exception writing Flow Path to Network MAP: ", te);
817 retry = true;
818 } catch (Exception e) {
819 log.error("Exception writing Flow Path to Network MAP: ", e);
Pavlin Radoslavov2fca8d12013-12-04 09:39:06 -0800820 }
Pavlin Radoslavov262e6832013-12-18 14:37:35 -0800821 } while (retry);
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800822
823 if (enableOnrc2014MeasurementsFlows) {
Pavlin Radoslavovf4bdf262014-01-09 13:51:40 -0800824 // Send the notifications
Pavlin Radoslavov7847db72014-01-10 11:35:21 -0800825
Pavlin Radoslavovf4bdf262014-01-09 13:51:40 -0800826 for (FlowEntry flowEntry : flowPath.flowEntries()) {
Pavlin Radoslavov8edd4412014-01-10 11:37:32 -0800827 if (flowEntry.flowEntrySwitchState() !=
Pavlin Radoslavovf4bdf262014-01-09 13:51:40 -0800828 FlowEntrySwitchState.FE_SWITCH_NOT_UPDATED) {
Pavlin Radoslavov8edd4412014-01-10 11:37:32 -0800829 continue;
Pavlin Radoslavovf4bdf262014-01-09 13:51:40 -0800830 }
Pavlin Radoslavov8edd4412014-01-10 11:37:32 -0800831 // datagridService.notificationSendFlowEntryIdAdded(flowEntry.flowEntryId(), flowEntry.dpid());
Pavlin Radoslavov7847db72014-01-10 11:35:21 -0800832
833 //
834 // Write the Flow Entry to the Datagrid
835 //
836 switch (flowEntry.flowEntryUserState()) {
837 case FE_USER_ADD:
838 datagridService.notificationSendFlowEntryAdded(flowEntry);
839 break;
840 case FE_USER_MODIFY:
841 datagridService.notificationSendFlowEntryUpdated(flowEntry);
842 break;
843 case FE_USER_DELETE:
844 datagridService.notificationSendFlowEntryRemoved(flowEntry.flowEntryId());
845 break;
846 case FE_USER_UNKNOWN:
847 assert(false);
848 break;
849 }
Pavlin Radoslavovf4bdf262014-01-09 13:51:40 -0800850 }
Pavlin Radoslavov8252fee2014-01-07 17:24:29 -0800851 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700852 }
Pavlin Radoslavovebc8b192013-10-29 15:35:35 -0700853 }
Pavlin Radoslavov9e5344c2013-02-18 09:58:30 -0800854}