blob: 88a1352428309b499605270b65e8f57dd9d8c0a7 [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 Koide500431f2014-02-28 02:02:25 -0800179 if (op.intent.getState().equals(IntentState.CREATED))
180 states.put(op.intent.getId(), IntentState.INST_REQ); // XXX
Toshio Koidedf2eab92014-02-20 11:24:59 -0800181 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800182 highLevelIntents.changeStates(states);
Toshio Koidebf875662014-02-24 12:19:15 -0800183 p.log("end_updateInMemoryIntents");
Toshio Koidedf2eab92014-02-20 11:24:59 -0800184
Toshio Koide93be5d62014-02-23 19:30:57 -0800185 // calculate path-intents (low-level operations)
Toshio Koidebf875662014-02-24 12:19:15 -0800186 p.log("begin_calcPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800187 IntentOperationList pathIntentOperations = runtime.calcPathIntents(list, highLevelIntents, pathIntents);
Toshio Koidebf875662014-02-24 12:19:15 -0800188 p.log("end_calcPathIntents");
Toshio Koide600ae5f2014-02-20 18:42:00 -0800189
Toshio Koide93be5d62014-02-23 19:30:57 -0800190 // persist calculated low-level operations into data store
Toshio Koidebf875662014-02-24 12:19:15 -0800191 p.log("begin_persistPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800192 long key = persistIntent.getKey();
193 persistIntent.persistIfLeader(key, pathIntentOperations);
Toshio Koidebf875662014-02-24 12:19:15 -0800194 p.log("end_persistPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800195
196 // remove error-intents and reflect them to high-level intents
Toshio Koidebf875662014-02-24 12:19:15 -0800197 p.log("begin_removeErrorIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800198 states.clear();
199 Iterator<IntentOperation> i = pathIntentOperations.iterator();
200 while (i.hasNext()) {
201 IntentOperation op = i.next();
202 if (op.operator.equals(Operator.ERROR)) {
203 states.put(op.intent.getId(), IntentState.INST_NACK);
204 i.remove();
205 }
Toshio Koide600ae5f2014-02-20 18:42:00 -0800206 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800207 highLevelIntents.changeStates(states);
Toshio Koidebf875662014-02-24 12:19:15 -0800208 p.log("end_removeErrorIntents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800209
Toshio Koide93be5d62014-02-23 19:30:57 -0800210 // update the map of path intents and publish the path operations
Toshio Koidebf875662014-02-24 12:19:15 -0800211 p.log("begin_updateInMemoryPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800212 pathIntents.executeOperations(pathIntentOperations);
Toshio Koidebf875662014-02-24 12:19:15 -0800213 p.log("end_updateInMemoryPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800214
Toshio Koide500431f2014-02-28 02:02:25 -0800215 // XXX Demo special: add a complete path to remove operation
Toshio Koidebf875662014-02-24 12:19:15 -0800216 p.log("begin_addPathToRemoveOperation");
Toshio Koide93be5d62014-02-23 19:30:57 -0800217 for (IntentOperation op: pathIntentOperations) {
218 if(op.operator.equals(Operator.REMOVE)) {
219 op.intent = pathIntents.getIntent(op.intent.getId());
220 }
221 if (op.intent instanceof PathIntent) {
222 log.debug("operation: {}, intent:{}", op.operator, op.intent);
223 }
224 }
Toshio Koidebf875662014-02-24 12:19:15 -0800225 p.log("end_addPathToRemoveOperation");
Toshio Koide93be5d62014-02-23 19:30:57 -0800226
227 // send notification
Toshio Koidebf875662014-02-24 12:19:15 -0800228 p.log("begin_sendNotification");
Toshio Koide93be5d62014-02-23 19:30:57 -0800229 opEventChannel.addEntry(key, pathIntentOperations);
Toshio Koidebf875662014-02-24 12:19:15 -0800230 p.log("end_sendNotification");
231 opEventChannel.removeEntry(key);
Toshio Koide93be5d62014-02-23 19:30:57 -0800232 return pathIntentOperations;
233 }
234 finally {
Toshio Koidebf875662014-02-24 12:19:15 -0800235 p.flushLog();
Toshio Koide93be5d62014-02-23 19:30:57 -0800236 lock.unlock();
237 }
Toshio Koide27ffd412014-02-18 19:15:27 -0800238 }
239
240 @Override
241 public IntentMap getHighLevelIntents() {
Toshio Koide4f308732014-02-18 15:19:48 -0800242 return highLevelIntents;
243 }
Toshio Koide27ffd412014-02-18 19:15:27 -0800244
245 @Override
246 public IntentMap getPathIntents() {
247 return pathIntents;
248 }
249
250 @Override
Toshio Koide4f308732014-02-18 15:19:48 -0800251 public void purgeIntents() {
252 highLevelIntents.purge();
Toshio Koide27ffd412014-02-18 19:15:27 -0800253 pathIntents.purge();
Toshio Koide4f308732014-02-18 15:19:48 -0800254 }
Toshio Koide0c9106d2014-02-19 15:26:38 -0800255
Toshio Koide798bc1b2014-02-20 14:02:40 -0800256 // ================================================================================
257 // INetworkGraphListener implementations
258 // ================================================================================
259
Toshio Koide0c9106d2014-02-19 15:26:38 -0800260 @Override
Toshio Koide798bc1b2014-02-20 14:02:40 -0800261 public void networkGraphEvents(Collection<SwitchEvent> addedSwitchEvents,
262 Collection<SwitchEvent> removedSwitchEvents,
263 Collection<PortEvent> addedPortEvents,
264 Collection<PortEvent> removedPortEvents,
265 Collection<LinkEvent> addedLinkEvents,
266 Collection<LinkEvent> removedLinkEvents,
267 Collection<DeviceEvent> addedDeviceEvents,
268 Collection<DeviceEvent> removedDeviceEvents) {
Toshio Koidea9078af2014-02-21 16:57:04 -0800269
Toshio Koidebf875662014-02-24 12:19:15 -0800270 PerfLogger p = new PerfLogger("networkGraphEvents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800271 HashSet<Intent> affectedPaths = new HashSet<>();
Toshio Koide93797dc2014-02-27 23:54:26 -0800272
Brian O'Connor5518d282014-02-25 22:25:58 -0800273 boolean rerouteAll = false;
274 for(LinkEvent le : addedLinkEvents) {
275 LinkEvent rev = new LinkEvent(le.getDst().getDpid(), le.getDst().getNumber(), le.getSrc().getDpid(), le.getSrc().getNumber());
276 if(unmatchedLinkEvents.contains(rev)) {
277 rerouteAll = true;
278 unmatchedLinkEvents.remove(rev);
279 log.debug("Found matched LinkEvent: {} {}", rev, le);
280 }
281 else {
282 unmatchedLinkEvents.add(le);
283 log.debug("Adding unmatched LinkEvent: {}", le);
284 }
285 }
286 for(LinkEvent le : removedLinkEvents) {
287 if (unmatchedLinkEvents.contains(le)) {
288 unmatchedLinkEvents.remove(le);
289 log.debug("Removing LinkEvent: {}", le);
290 }
291 }
292 if(unmatchedLinkEvents.size() > 0) {
293 log.debug("Unmatched link events: {} events", unmatchedLinkEvents.size());
294 }
Toshio Koidea9078af2014-02-21 16:57:04 -0800295
Brian O'Connor5518d282014-02-25 22:25:58 -0800296 if ( rerouteAll ) {//addedLinkEvents.size() > 0) { // ||
Toshio Koidebf875662014-02-24 12:19:15 -0800297// addedPortEvents.size() > 0 ||
298// addedSwitchEvents.size() > 0) {
299 p.log("begin_getAllIntents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800300 affectedPaths.addAll(getPathIntents().getAllIntents());
Toshio Koidebf875662014-02-24 12:19:15 -0800301 p.log("end_getAllIntents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800302 }
Brian O'Connor5518d282014-02-25 22:25:58 -0800303 else if (removedSwitchEvents.size() > 0 ||
304 removedLinkEvents.size() > 0 ||
305 removedPortEvents.size() > 0) {
Toshio Koidebf875662014-02-24 12:19:15 -0800306 p.log("begin_getIntentsByLink");
Toshio Koidea94060f2014-02-21 22:58:32 -0800307 for (LinkEvent linkEvent: removedLinkEvents)
308 affectedPaths.addAll(pathIntents.getIntentsByLink(linkEvent));
Toshio Koidebf875662014-02-24 12:19:15 -0800309 p.log("end_getIntentsByLink");
Toshio Koidea9078af2014-02-21 16:57:04 -0800310
Toshio Koidebf875662014-02-24 12:19:15 -0800311 p.log("begin_getIntentsByPort");
Toshio Koidea94060f2014-02-21 22:58:32 -0800312 for (PortEvent portEvent: removedPortEvents)
313 affectedPaths.addAll(pathIntents.getIntentsByPort(portEvent.getDpid(), portEvent.getNumber()));
Toshio Koidebf875662014-02-24 12:19:15 -0800314 p.log("end_getIntentsByPort");
Toshio Koidea9078af2014-02-21 16:57:04 -0800315
Toshio Koidebf875662014-02-24 12:19:15 -0800316 p.log("begin_getIntentsByDpid");
Toshio Koidea94060f2014-02-21 22:58:32 -0800317 for (SwitchEvent switchEvent: removedSwitchEvents)
318 affectedPaths.addAll(pathIntents.getIntentsByDpid(switchEvent.getDpid()));
Toshio Koidebf875662014-02-24 12:19:15 -0800319 p.log("end_getIntentsByDpid");
Toshio Koidea94060f2014-02-21 22:58:32 -0800320 }
Toshio Koide240b1302014-02-26 20:08:41 -0800321 p.log("begin_reroutePaths");
Toshio Koidea9078af2014-02-21 16:57:04 -0800322 reroutePaths(affectedPaths);
Toshio Koide240b1302014-02-26 20:08:41 -0800323 p.log("end_reroutePaths");
Toshio Koidebf875662014-02-24 12:19:15 -0800324 p.flushLog();
Toshio Koide0c9106d2014-02-19 15:26:38 -0800325 }
Toshio Koide066506e2014-02-20 19:52:09 -0800326
327 // ================================================================================
328 // IEventChannelListener implementations
329 // ================================================================================
330
331 @Override
332 public void entryAdded(IntentStateList value) {
333 entryUpdated(value);
334 }
335
336 @Override
337 public void entryRemoved(IntentStateList value) {
338 // do nothing
339 }
340
341 @Override
342 public void entryUpdated(IntentStateList value) {
Toshio Koide8315d7d2014-02-21 22:58:32 -0800343 // TODO draw state transition diagram in multiple ONOS instances and update this method
Toshio Koidebf875662014-02-24 12:19:15 -0800344 PerfLogger p = new PerfLogger("entryUpdated");
Toshio Koide93be5d62014-02-23 19:30:57 -0800345 lock.lock(); // TODO optimize locking using smaller steps
346 try {
Toshio Koide93be5d62014-02-23 19:30:57 -0800347 // reflect state changes of path-level intent into application-level intents
Toshio Koidebf875662014-02-24 12:19:15 -0800348 p.log("begin_changeStateByNotification");
Toshio Koide500431f2014-02-28 02:02:25 -0800349 IntentStateList highLevelIntentStates = new IntentStateList();
350 IntentStateList pathIntentStates = new IntentStateList();
Toshio Koide93be5d62014-02-23 19:30:57 -0800351 for (Entry<String, IntentState> entry: value.entrySet()) {
352 PathIntent pathIntent = (PathIntent) pathIntents.getIntent(entry.getKey());
353 if (pathIntent == null) continue;
Toshio Koide8315d7d2014-02-21 22:58:32 -0800354
Toshio Koide93be5d62014-02-23 19:30:57 -0800355 Intent parentIntent = pathIntent.getParentIntent();
356 if (parentIntent == null ||
357 !(parentIntent instanceof ShortestPathIntent) ||
358 !((ShortestPathIntent) parentIntent).getPathIntentId().equals(pathIntent.getId()))
359 continue;
Toshio Koide066506e2014-02-20 19:52:09 -0800360
Toshio Koide93be5d62014-02-23 19:30:57 -0800361 IntentState state = entry.getValue();
362 switch (state) {
Toshio Koide500431f2014-02-28 02:02:25 -0800363 //case INST_REQ:
Toshio Koide93be5d62014-02-23 19:30:57 -0800364 case INST_ACK:
365 case INST_NACK:
Toshio Koide500431f2014-02-28 02:02:25 -0800366 //case DEL_REQ:
Toshio Koide93be5d62014-02-23 19:30:57 -0800367 case DEL_ACK:
368 case DEL_PENDING:
Toshio Koide500431f2014-02-28 02:02:25 -0800369 highLevelIntentStates.put(parentIntent.getId(), state);
370 pathIntentStates.put(entry.getKey(), entry.getValue());
Toshio Koide93be5d62014-02-23 19:30:57 -0800371 break;
372 default:
373 break;
374 }
Toshio Koide066506e2014-02-20 19:52:09 -0800375 }
Toshio Koide500431f2014-02-28 02:02:25 -0800376 highLevelIntents.changeStates(highLevelIntentStates);
377 pathIntents.changeStates(pathIntentStates);
Toshio Koidebf875662014-02-24 12:19:15 -0800378 p.log("end_changeStateByNotification");
Toshio Koide066506e2014-02-20 19:52:09 -0800379 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800380 finally {
Toshio Koidebf875662014-02-24 12:19:15 -0800381 p.flushLog();
Toshio Koide93be5d62014-02-23 19:30:57 -0800382 lock.unlock();
383 }
Toshio Koide066506e2014-02-20 19:52:09 -0800384 }
Toshio Koidea9078af2014-02-21 16:57:04 -0800385}