blob: c5fc660f6fb69028c8505e363e4205fe96ea4314 [file] [log] [blame]
Toshio Koide4f308732014-02-18 15:19:48 -08001package net.onrc.onos.intent.runtime;
2
3import java.util.ArrayList;
4import java.util.Collection;
5import java.util.HashMap;
Toshio Koide798bc1b2014-02-20 14:02:40 -08006import java.util.HashSet;
Toshio Koidedf2eab92014-02-20 11:24:59 -08007import java.util.Iterator;
Toshio Koidebf875662014-02-24 12:19:15 -08008import java.util.LinkedList;
Toshio Koide4f308732014-02-18 15:19:48 -08009import java.util.Map;
Toshio Koide066506e2014-02-20 19:52:09 -080010import java.util.Map.Entry;
Toshio Koide93be5d62014-02-23 19:30:57 -080011import java.util.concurrent.locks.ReentrantLock;
Toshio Koide4f308732014-02-18 15:19:48 -080012
Toshio Koidea94060f2014-02-21 22:58:32 -080013import org.slf4j.Logger;
14import org.slf4j.LoggerFactory;
15
Toshio Koide4f308732014-02-18 15:19:48 -080016import net.floodlightcontroller.core.module.FloodlightModuleContext;
17import net.floodlightcontroller.core.module.FloodlightModuleException;
18import net.floodlightcontroller.core.module.IFloodlightModule;
19import net.floodlightcontroller.core.module.IFloodlightService;
20import net.onrc.onos.datagrid.IDatagridService;
21import net.onrc.onos.datagrid.IEventChannel;
Toshio Koide066506e2014-02-20 19:52:09 -080022import net.onrc.onos.datagrid.IEventChannelListener;
23import net.onrc.onos.intent.Intent;
Toshio Koidedf2eab92014-02-20 11:24:59 -080024import net.onrc.onos.intent.Intent.IntentState;
Toshio Koide4f308732014-02-18 15:19:48 -080025import net.onrc.onos.intent.IntentMap;
Toshio Koidedf2eab92014-02-20 11:24:59 -080026import net.onrc.onos.intent.IntentOperation;
Toshio Koide0c9106d2014-02-19 15:26:38 -080027import net.onrc.onos.intent.IntentOperation.Operator;
Toshio Koide4f308732014-02-18 15:19:48 -080028import net.onrc.onos.intent.IntentOperationList;
Toshio Koide0c9106d2014-02-19 15:26:38 -080029import net.onrc.onos.intent.PathIntent;
Toshio Koide4f308732014-02-18 15:19:48 -080030import net.onrc.onos.intent.PathIntentMap;
Toshio Koide066506e2014-02-20 19:52:09 -080031import net.onrc.onos.intent.ShortestPathIntent;
Toshio Koidedf2eab92014-02-20 11:24:59 -080032import net.onrc.onos.intent.persist.PersistIntent;
Toshio Koide0c9106d2014-02-19 15:26:38 -080033import net.onrc.onos.ofcontroller.networkgraph.DeviceEvent;
34import net.onrc.onos.ofcontroller.networkgraph.INetworkGraphListener;
Toshio Koide27ffd412014-02-18 19:15:27 -080035import net.onrc.onos.ofcontroller.networkgraph.INetworkGraphService;
Toshio Koide0c9106d2014-02-19 15:26:38 -080036import net.onrc.onos.ofcontroller.networkgraph.LinkEvent;
37import net.onrc.onos.ofcontroller.networkgraph.PortEvent;
38import net.onrc.onos.ofcontroller.networkgraph.SwitchEvent;
Nick Karanatsios8abe7172014-02-19 20:31:48 -080039import net.onrc.onos.registry.controller.IControllerRegistryService;
Toshio Koide4f308732014-02-18 15:19:48 -080040
Toshio Koide0c9106d2014-02-19 15:26:38 -080041/**
42 * @author Toshio Koide (t-koide@onlab.us)
43 */
Toshio Koide066506e2014-02-20 19:52:09 -080044public class PathCalcRuntimeModule implements IFloodlightModule, IPathCalcRuntimeService, INetworkGraphListener, IEventChannelListener<Long, IntentStateList> {
Toshio Koidebf875662014-02-24 12:19:15 -080045 class PerfLog {
46 private String step;
47 private long time;
48
49 public PerfLog(String step) {
50 this.step = step;
51 this.time = System.nanoTime();
52 }
53
54 public void logThis() {
55 log.error("Time:{}, Step:{}", time, step);
56 }
57 }
58 class PerfLogger {
59 private LinkedList<PerfLog> logData = new LinkedList<>();
60
61 public PerfLogger(String logPhase) {
62 log("start_" + logPhase);
63 }
64
65 public void log(String step) {
66 logData.add(new PerfLog(step));
67 }
68
69 public void flushLog() {
70 log("finish");
71 for (PerfLog log: logData) {
72 log.logThis();
73 }
74 logData.clear();
75 }
76 }
Toshio Koide4f308732014-02-18 15:19:48 -080077 private PathCalcRuntime runtime;
78 private IDatagridService datagridService;
Toshio Koide27ffd412014-02-18 19:15:27 -080079 private INetworkGraphService networkGraphService;
Toshio Koide4f308732014-02-18 15:19:48 -080080 private IntentMap highLevelIntents;
Toshio Koide27ffd412014-02-18 19:15:27 -080081 private PathIntentMap pathIntents;
Toshio Koide798bc1b2014-02-20 14:02:40 -080082 private IControllerRegistryService controllerRegistry;
83 private PersistIntent persistIntent;
Toshio Koide27ffd412014-02-18 19:15:27 -080084
Toshio Koide066506e2014-02-20 19:52:09 -080085 private IEventChannel<Long, IntentOperationList> opEventChannel;
Toshio Koide93be5d62014-02-23 19:30:57 -080086 private final ReentrantLock lock = new ReentrantLock();
Brian O'Connor5518d282014-02-25 22:25:58 -080087 private HashSet<LinkEvent> unmatchedLinkEvents = new HashSet<>();
Toshio Koide066506e2014-02-20 19:52:09 -080088 private static final String INTENT_OP_EVENT_CHANNEL_NAME = "onos.pathintent";
89 private static final String INTENT_STATE_EVENT_CHANNEL_NAME = "onos.pathintent_state";
Toshio Koidea94060f2014-02-21 22:58:32 -080090 private static final Logger log = LoggerFactory.getLogger(PathCalcRuntimeModule.class);
Toshio Koide4f308732014-02-18 15:19:48 -080091
Toshio Koide798bc1b2014-02-20 14:02:40 -080092 // ================================================================================
93 // private methods
94 // ================================================================================
95
Toshio Koidea94060f2014-02-21 22:58:32 -080096 private void reroutePaths(Collection<Intent> oldPaths) {
Toshio Koidea9078af2014-02-21 16:57:04 -080097 if (oldPaths == null || oldPaths.isEmpty())
Toshio Koide798bc1b2014-02-20 14:02:40 -080098 return;
Toshio Koidea10c0372014-02-20 17:28:10 -080099
Toshio Koide0c9106d2014-02-19 15:26:38 -0800100 IntentOperationList reroutingOperation = new IntentOperationList();
Toshio Koide982c81f2014-02-23 16:53:10 -0800101 for (Intent intent : oldPaths) {
102 PathIntent pathIntent = (PathIntent) intent;
Toshio Koide93797dc2014-02-27 23:54:26 -0800103 if (pathIntent.getId().startsWith("1:F")) // XXX: demo special, the intent start with "F" is skipped
104 continue;
Brian O'Connor5518d282014-02-25 22:25:58 -0800105 if (pathIntent.getState().equals(IntentState.INST_ACK) && // XXX: path intents in flight
Toshio Koide93797dc2014-02-27 23:54:26 -0800106 !reroutingOperation.contains(pathIntent.getParentIntent())) {
Toshio Koide982c81f2014-02-23 16:53:10 -0800107 reroutingOperation.add(Operator.ADD, pathIntent.getParentIntent());
108 }
Toshio Koide0c9106d2014-02-19 15:26:38 -0800109 }
Toshio Koide8315d7d2014-02-21 22:58:32 -0800110 executeIntentOperations(reroutingOperation);
Toshio Koidea94060f2014-02-21 22:58:32 -0800111 }
112
Toshio Koide27ffd412014-02-18 19:15:27 -0800113
Toshio Koide798bc1b2014-02-20 14:02:40 -0800114 // ================================================================================
115 // IFloodlightModule implementations
116 // ================================================================================
117
Toshio Koide4f308732014-02-18 15:19:48 -0800118 @Override
119 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
120 Collection<Class<? extends IFloodlightService>> l = new ArrayList<>(1);
Toshio Koideeb90d912014-02-18 21:30:22 -0800121 l.add(IPathCalcRuntimeService.class);
Toshio Koide4f308732014-02-18 15:19:48 -0800122 return l;
123 }
124
125 @Override
126 public Map<Class<? extends IFloodlightService>, IFloodlightService> getServiceImpls() {
Toshio Koidea9078af2014-02-21 16:57:04 -0800127 Map<Class<? extends IFloodlightService>, IFloodlightService> m = new HashMap<>();
Toshio Koide27ffd412014-02-18 19:15:27 -0800128 m.put(IPathCalcRuntimeService.class, this);
Toshio Koide4f308732014-02-18 15:19:48 -0800129 return m;
130 }
131
132 @Override
133 public Collection<Class<? extends IFloodlightService>> getModuleDependencies() {
Toshio Koidea9078af2014-02-21 16:57:04 -0800134 Collection<Class<? extends IFloodlightService>> l = new ArrayList<>(2);
Toshio Koide4f308732014-02-18 15:19:48 -0800135 l.add(IDatagridService.class);
Toshio Koide27ffd412014-02-18 19:15:27 -0800136 l.add(INetworkGraphService.class);
Toshio Koide4f308732014-02-18 15:19:48 -0800137 return l;
138 }
139
140 @Override
141 public void init(FloodlightModuleContext context) throws FloodlightModuleException {
142 datagridService = context.getServiceImpl(IDatagridService.class);
Toshio Koided9fa2a82014-02-19 17:35:18 -0800143 networkGraphService = context.getServiceImpl(INetworkGraphService.class);
Toshio Koide798bc1b2014-02-20 14:02:40 -0800144 controllerRegistry = context.getServiceImpl(IControllerRegistryService.class);
Toshio Koide4f308732014-02-18 15:19:48 -0800145 }
146
147 @Override
148 public void startUp(FloodlightModuleContext context) {
Toshio Koideeb90d912014-02-18 21:30:22 -0800149 highLevelIntents = new IntentMap();
150 runtime = new PathCalcRuntime(networkGraphService.getNetworkGraph());
Toshio Koide0c9106d2014-02-19 15:26:38 -0800151 pathIntents = new PathIntentMap();
Toshio Koide066506e2014-02-20 19:52:09 -0800152 opEventChannel = datagridService.createChannel(INTENT_OP_EVENT_CHANNEL_NAME, Long.class, IntentOperationList.class);
153 datagridService.addListener(INTENT_STATE_EVENT_CHANNEL_NAME, this, Long.class, IntentStateList.class);
Toshio Koide0c9106d2014-02-19 15:26:38 -0800154 networkGraphService.registerNetworkGraphListener(this);
Toshio Koide798bc1b2014-02-20 14:02:40 -0800155 persistIntent = new PersistIntent(controllerRegistry, networkGraphService);
Toshio Koide4f308732014-02-18 15:19:48 -0800156 }
Toshio Koide27ffd412014-02-18 19:15:27 -0800157
Toshio Koide798bc1b2014-02-20 14:02:40 -0800158 // ================================================================================
159 // IPathCalcRuntimeService implementations
160 // ================================================================================
161
Toshio Koide27ffd412014-02-18 19:15:27 -0800162 @Override
163 public IntentOperationList executeIntentOperations(IntentOperationList list) {
Toshio Koidebf875662014-02-24 12:19:15 -0800164 if (list == null || list.size() == 0)
165 return null;
166 PerfLogger p = new PerfLogger("executeIntentOperations_" + list.get(0).operator);
Toshio Koide275d8142014-02-24 16:41:52 -0800167
168 lock.lock(); // TODO optimize locking using smaller steps
Toshio Koide93be5d62014-02-23 19:30:57 -0800169 try {
170 // update the map of high-level intents
Toshio Koidebf875662014-02-24 12:19:15 -0800171 p.log("begin_updateInMemoryIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800172 highLevelIntents.executeOperations(list);
Toshio Koidedf2eab92014-02-20 11:24:59 -0800173
Toshio Koide93be5d62014-02-23 19:30:57 -0800174 // change states of high-level intents
175 IntentStateList states = new IntentStateList();
176 for (IntentOperation op : list) {
177 if (op.intent.getState().equals(IntentState.INST_ACK))
178 states.put(op.intent.getId(), IntentState.REROUTE_REQ);
Toshio Koidedf2eab92014-02-20 11:24:59 -0800179 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800180 highLevelIntents.changeStates(states);
Toshio Koidebf875662014-02-24 12:19:15 -0800181 p.log("end_updateInMemoryIntents");
Toshio Koidedf2eab92014-02-20 11:24:59 -0800182
Toshio Koide93be5d62014-02-23 19:30:57 -0800183 // calculate path-intents (low-level operations)
Toshio Koidebf875662014-02-24 12:19:15 -0800184 p.log("begin_calcPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800185 IntentOperationList pathIntentOperations = runtime.calcPathIntents(list, highLevelIntents, pathIntents);
Toshio Koidebf875662014-02-24 12:19:15 -0800186 p.log("end_calcPathIntents");
Toshio Koide600ae5f2014-02-20 18:42:00 -0800187
Toshio Koide93be5d62014-02-23 19:30:57 -0800188 // persist calculated low-level operations into data store
Toshio Koidebf875662014-02-24 12:19:15 -0800189 p.log("begin_persistPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800190 long key = persistIntent.getKey();
191 persistIntent.persistIfLeader(key, pathIntentOperations);
Toshio Koidebf875662014-02-24 12:19:15 -0800192 p.log("end_persistPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800193
194 // remove error-intents and reflect them to high-level intents
Toshio Koidebf875662014-02-24 12:19:15 -0800195 p.log("begin_removeErrorIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800196 states.clear();
197 Iterator<IntentOperation> i = pathIntentOperations.iterator();
198 while (i.hasNext()) {
199 IntentOperation op = i.next();
200 if (op.operator.equals(Operator.ERROR)) {
201 states.put(op.intent.getId(), IntentState.INST_NACK);
202 i.remove();
203 }
Toshio Koide600ae5f2014-02-20 18:42:00 -0800204 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800205 highLevelIntents.changeStates(states);
Toshio Koidebf875662014-02-24 12:19:15 -0800206 p.log("end_removeErrorIntents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800207
Toshio Koide93be5d62014-02-23 19:30:57 -0800208 // update the map of path intents and publish the path operations
Toshio Koidebf875662014-02-24 12:19:15 -0800209 p.log("begin_updateInMemoryPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800210 pathIntents.executeOperations(pathIntentOperations);
Toshio Koidebf875662014-02-24 12:19:15 -0800211 p.log("end_updateInMemoryPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800212
213 // Demo special: add a complete path to remove operation
Toshio Koidebf875662014-02-24 12:19:15 -0800214 p.log("begin_addPathToRemoveOperation");
Toshio Koide93be5d62014-02-23 19:30:57 -0800215 for (IntentOperation op: pathIntentOperations) {
216 if(op.operator.equals(Operator.REMOVE)) {
217 op.intent = pathIntents.getIntent(op.intent.getId());
218 }
219 if (op.intent instanceof PathIntent) {
220 log.debug("operation: {}, intent:{}", op.operator, op.intent);
221 }
222 }
Toshio Koidebf875662014-02-24 12:19:15 -0800223 p.log("end_addPathToRemoveOperation");
Toshio Koide93be5d62014-02-23 19:30:57 -0800224
225 // send notification
Toshio Koidebf875662014-02-24 12:19:15 -0800226 p.log("begin_sendNotification");
Toshio Koide93be5d62014-02-23 19:30:57 -0800227 opEventChannel.addEntry(key, pathIntentOperations);
Toshio Koidebf875662014-02-24 12:19:15 -0800228 p.log("end_sendNotification");
229 opEventChannel.removeEntry(key);
Toshio Koide93be5d62014-02-23 19:30:57 -0800230 return pathIntentOperations;
231 }
232 finally {
Toshio Koidebf875662014-02-24 12:19:15 -0800233 p.flushLog();
Toshio Koide93be5d62014-02-23 19:30:57 -0800234 lock.unlock();
235 }
Toshio Koide27ffd412014-02-18 19:15:27 -0800236 }
237
238 @Override
239 public IntentMap getHighLevelIntents() {
Toshio Koide4f308732014-02-18 15:19:48 -0800240 return highLevelIntents;
241 }
Toshio Koide27ffd412014-02-18 19:15:27 -0800242
243 @Override
244 public IntentMap getPathIntents() {
245 return pathIntents;
246 }
247
248 @Override
Toshio Koide4f308732014-02-18 15:19:48 -0800249 public void purgeIntents() {
250 highLevelIntents.purge();
Toshio Koide27ffd412014-02-18 19:15:27 -0800251 pathIntents.purge();
Toshio Koide4f308732014-02-18 15:19:48 -0800252 }
Toshio Koide0c9106d2014-02-19 15:26:38 -0800253
Toshio Koide798bc1b2014-02-20 14:02:40 -0800254 // ================================================================================
255 // INetworkGraphListener implementations
256 // ================================================================================
257
Toshio Koide0c9106d2014-02-19 15:26:38 -0800258 @Override
Toshio Koide798bc1b2014-02-20 14:02:40 -0800259 public void networkGraphEvents(Collection<SwitchEvent> addedSwitchEvents,
260 Collection<SwitchEvent> removedSwitchEvents,
261 Collection<PortEvent> addedPortEvents,
262 Collection<PortEvent> removedPortEvents,
263 Collection<LinkEvent> addedLinkEvents,
264 Collection<LinkEvent> removedLinkEvents,
265 Collection<DeviceEvent> addedDeviceEvents,
266 Collection<DeviceEvent> removedDeviceEvents) {
Toshio Koidea9078af2014-02-21 16:57:04 -0800267
Toshio Koidebf875662014-02-24 12:19:15 -0800268 PerfLogger p = new PerfLogger("networkGraphEvents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800269 HashSet<Intent> affectedPaths = new HashSet<>();
Toshio Koide93797dc2014-02-27 23:54:26 -0800270
Brian O'Connor5518d282014-02-25 22:25:58 -0800271 boolean rerouteAll = false;
272 for(LinkEvent le : addedLinkEvents) {
273 LinkEvent rev = new LinkEvent(le.getDst().getDpid(), le.getDst().getNumber(), le.getSrc().getDpid(), le.getSrc().getNumber());
274 if(unmatchedLinkEvents.contains(rev)) {
275 rerouteAll = true;
276 unmatchedLinkEvents.remove(rev);
277 log.debug("Found matched LinkEvent: {} {}", rev, le);
278 }
279 else {
280 unmatchedLinkEvents.add(le);
281 log.debug("Adding unmatched LinkEvent: {}", le);
282 }
283 }
284 for(LinkEvent le : removedLinkEvents) {
285 if (unmatchedLinkEvents.contains(le)) {
286 unmatchedLinkEvents.remove(le);
287 log.debug("Removing LinkEvent: {}", le);
288 }
289 }
290 if(unmatchedLinkEvents.size() > 0) {
291 log.debug("Unmatched link events: {} events", unmatchedLinkEvents.size());
292 }
Toshio Koidea9078af2014-02-21 16:57:04 -0800293
Brian O'Connor5518d282014-02-25 22:25:58 -0800294 if ( rerouteAll ) {//addedLinkEvents.size() > 0) { // ||
Toshio Koidebf875662014-02-24 12:19:15 -0800295// addedPortEvents.size() > 0 ||
296// addedSwitchEvents.size() > 0) {
297 p.log("begin_getAllIntents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800298 affectedPaths.addAll(getPathIntents().getAllIntents());
Toshio Koidebf875662014-02-24 12:19:15 -0800299 p.log("end_getAllIntents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800300 }
Brian O'Connor5518d282014-02-25 22:25:58 -0800301 else if (removedSwitchEvents.size() > 0 ||
302 removedLinkEvents.size() > 0 ||
303 removedPortEvents.size() > 0) {
Toshio Koidebf875662014-02-24 12:19:15 -0800304 p.log("begin_getIntentsByLink");
Toshio Koidea94060f2014-02-21 22:58:32 -0800305 for (LinkEvent linkEvent: removedLinkEvents)
306 affectedPaths.addAll(pathIntents.getIntentsByLink(linkEvent));
Toshio Koidebf875662014-02-24 12:19:15 -0800307 p.log("end_getIntentsByLink");
Toshio Koidea9078af2014-02-21 16:57:04 -0800308
Toshio Koidebf875662014-02-24 12:19:15 -0800309 p.log("begin_getIntentsByPort");
Toshio Koidea94060f2014-02-21 22:58:32 -0800310 for (PortEvent portEvent: removedPortEvents)
311 affectedPaths.addAll(pathIntents.getIntentsByPort(portEvent.getDpid(), portEvent.getNumber()));
Toshio Koidebf875662014-02-24 12:19:15 -0800312 p.log("end_getIntentsByPort");
Toshio Koidea9078af2014-02-21 16:57:04 -0800313
Toshio Koidebf875662014-02-24 12:19:15 -0800314 p.log("begin_getIntentsByDpid");
Toshio Koidea94060f2014-02-21 22:58:32 -0800315 for (SwitchEvent switchEvent: removedSwitchEvents)
316 affectedPaths.addAll(pathIntents.getIntentsByDpid(switchEvent.getDpid()));
Toshio Koidebf875662014-02-24 12:19:15 -0800317 p.log("end_getIntentsByDpid");
Toshio Koidea94060f2014-02-21 22:58:32 -0800318 }
Toshio Koide240b1302014-02-26 20:08:41 -0800319 p.log("begin_reroutePaths");
Toshio Koidea9078af2014-02-21 16:57:04 -0800320 reroutePaths(affectedPaths);
Toshio Koide240b1302014-02-26 20:08:41 -0800321 p.log("end_reroutePaths");
Toshio Koidebf875662014-02-24 12:19:15 -0800322 p.flushLog();
Toshio Koide0c9106d2014-02-19 15:26:38 -0800323 }
Toshio Koide066506e2014-02-20 19:52:09 -0800324
325 // ================================================================================
326 // IEventChannelListener implementations
327 // ================================================================================
328
329 @Override
330 public void entryAdded(IntentStateList value) {
331 entryUpdated(value);
332 }
333
334 @Override
335 public void entryRemoved(IntentStateList value) {
336 // do nothing
337 }
338
339 @Override
340 public void entryUpdated(IntentStateList value) {
Toshio Koide8315d7d2014-02-21 22:58:32 -0800341 // TODO draw state transition diagram in multiple ONOS instances and update this method
Toshio Koidebf875662014-02-24 12:19:15 -0800342 PerfLogger p = new PerfLogger("entryUpdated");
Toshio Koide93be5d62014-02-23 19:30:57 -0800343 lock.lock(); // TODO optimize locking using smaller steps
344 try {
Toshio Koide93be5d62014-02-23 19:30:57 -0800345 // reflect state changes of path-level intent into application-level intents
Toshio Koidebf875662014-02-24 12:19:15 -0800346 p.log("begin_changeStateByNotification");
Toshio Koide93be5d62014-02-23 19:30:57 -0800347 IntentStateList parentStates = new IntentStateList();
348 for (Entry<String, IntentState> entry: value.entrySet()) {
349 PathIntent pathIntent = (PathIntent) pathIntents.getIntent(entry.getKey());
350 if (pathIntent == null) continue;
Toshio Koide8315d7d2014-02-21 22:58:32 -0800351
Toshio Koide93be5d62014-02-23 19:30:57 -0800352 Intent parentIntent = pathIntent.getParentIntent();
353 if (parentIntent == null ||
354 !(parentIntent instanceof ShortestPathIntent) ||
355 !((ShortestPathIntent) parentIntent).getPathIntentId().equals(pathIntent.getId()))
356 continue;
Toshio Koide066506e2014-02-20 19:52:09 -0800357
Toshio Koide93be5d62014-02-23 19:30:57 -0800358 IntentState state = entry.getValue();
359 switch (state) {
360 case INST_REQ:
361 case INST_ACK:
362 case INST_NACK:
363 case DEL_REQ:
364 case DEL_ACK:
365 case DEL_PENDING:
366 parentStates.put(parentIntent.getId(), state);
367 break;
368 default:
369 break;
370 }
Toshio Koide066506e2014-02-20 19:52:09 -0800371 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800372 highLevelIntents.changeStates(parentStates);
373 pathIntents.changeStates(value);
Toshio Koidebf875662014-02-24 12:19:15 -0800374 p.log("end_changeStateByNotification");
Toshio Koide066506e2014-02-20 19:52:09 -0800375 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800376 finally {
Toshio Koidebf875662014-02-24 12:19:15 -0800377 p.flushLog();
Toshio Koide93be5d62014-02-23 19:30:57 -0800378 lock.unlock();
379 }
Toshio Koide066506e2014-02-20 19:52:09 -0800380 }
Toshio Koidea9078af2014-02-21 16:57:04 -0800381}