blob: 087e503fd0e37d5df53a7eb453e090dac8b13b67 [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;
Brian O'Connor5518d282014-02-25 22:25:58 -0800103 if (pathIntent.getState().equals(IntentState.INST_ACK) && // XXX: path intents in flight
104 !reroutingOperation.contains(pathIntent.getParentIntent())) {
Toshio Koide982c81f2014-02-23 16:53:10 -0800105 reroutingOperation.add(Operator.ADD, pathIntent.getParentIntent());
106 }
Toshio Koide0c9106d2014-02-19 15:26:38 -0800107 }
Toshio Koide8315d7d2014-02-21 22:58:32 -0800108 executeIntentOperations(reroutingOperation);
Toshio Koidea94060f2014-02-21 22:58:32 -0800109 }
110
Toshio Koide27ffd412014-02-18 19:15:27 -0800111
Toshio Koide798bc1b2014-02-20 14:02:40 -0800112 // ================================================================================
113 // IFloodlightModule implementations
114 // ================================================================================
115
Toshio Koide4f308732014-02-18 15:19:48 -0800116 @Override
117 public Collection<Class<? extends IFloodlightService>> getModuleServices() {
118 Collection<Class<? extends IFloodlightService>> l = new ArrayList<>(1);
Toshio Koideeb90d912014-02-18 21:30:22 -0800119 l.add(IPathCalcRuntimeService.class);
Toshio Koide4f308732014-02-18 15:19:48 -0800120 return l;
121 }
122
123 @Override
124 public Map<Class<? extends IFloodlightService>, IFloodlightService> getServiceImpls() {
Toshio Koidea9078af2014-02-21 16:57:04 -0800125 Map<Class<? extends IFloodlightService>, IFloodlightService> m = new HashMap<>();
Toshio Koide27ffd412014-02-18 19:15:27 -0800126 m.put(IPathCalcRuntimeService.class, this);
Toshio Koide4f308732014-02-18 15:19:48 -0800127 return m;
128 }
129
130 @Override
131 public Collection<Class<? extends IFloodlightService>> getModuleDependencies() {
Toshio Koidea9078af2014-02-21 16:57:04 -0800132 Collection<Class<? extends IFloodlightService>> l = new ArrayList<>(2);
Toshio Koide4f308732014-02-18 15:19:48 -0800133 l.add(IDatagridService.class);
Toshio Koide27ffd412014-02-18 19:15:27 -0800134 l.add(INetworkGraphService.class);
Toshio Koide4f308732014-02-18 15:19:48 -0800135 return l;
136 }
137
138 @Override
139 public void init(FloodlightModuleContext context) throws FloodlightModuleException {
140 datagridService = context.getServiceImpl(IDatagridService.class);
Toshio Koided9fa2a82014-02-19 17:35:18 -0800141 networkGraphService = context.getServiceImpl(INetworkGraphService.class);
Toshio Koide798bc1b2014-02-20 14:02:40 -0800142 controllerRegistry = context.getServiceImpl(IControllerRegistryService.class);
Toshio Koide4f308732014-02-18 15:19:48 -0800143 }
144
145 @Override
146 public void startUp(FloodlightModuleContext context) {
Toshio Koideeb90d912014-02-18 21:30:22 -0800147 highLevelIntents = new IntentMap();
148 runtime = new PathCalcRuntime(networkGraphService.getNetworkGraph());
Toshio Koide0c9106d2014-02-19 15:26:38 -0800149 pathIntents = new PathIntentMap();
Toshio Koide066506e2014-02-20 19:52:09 -0800150 opEventChannel = datagridService.createChannel(INTENT_OP_EVENT_CHANNEL_NAME, Long.class, IntentOperationList.class);
151 datagridService.addListener(INTENT_STATE_EVENT_CHANNEL_NAME, this, Long.class, IntentStateList.class);
Toshio Koide0c9106d2014-02-19 15:26:38 -0800152 networkGraphService.registerNetworkGraphListener(this);
Toshio Koide798bc1b2014-02-20 14:02:40 -0800153 persistIntent = new PersistIntent(controllerRegistry, networkGraphService);
Toshio Koide4f308732014-02-18 15:19:48 -0800154 }
Toshio Koide27ffd412014-02-18 19:15:27 -0800155
Toshio Koide798bc1b2014-02-20 14:02:40 -0800156 // ================================================================================
157 // IPathCalcRuntimeService implementations
158 // ================================================================================
159
Toshio Koide27ffd412014-02-18 19:15:27 -0800160 @Override
161 public IntentOperationList executeIntentOperations(IntentOperationList list) {
Toshio Koidebf875662014-02-24 12:19:15 -0800162 if (list == null || list.size() == 0)
163 return null;
164 PerfLogger p = new PerfLogger("executeIntentOperations_" + list.get(0).operator);
Toshio Koide275d8142014-02-24 16:41:52 -0800165
166 lock.lock(); // TODO optimize locking using smaller steps
Toshio Koide93be5d62014-02-23 19:30:57 -0800167 try {
168 // update the map of high-level intents
Toshio Koidebf875662014-02-24 12:19:15 -0800169 p.log("begin_updateInMemoryIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800170 highLevelIntents.executeOperations(list);
Toshio Koidedf2eab92014-02-20 11:24:59 -0800171
Toshio Koide93be5d62014-02-23 19:30:57 -0800172 // change states of high-level intents
173 IntentStateList states = new IntentStateList();
174 for (IntentOperation op : list) {
175 if (op.intent.getState().equals(IntentState.INST_ACK))
176 states.put(op.intent.getId(), IntentState.REROUTE_REQ);
Toshio Koidedf2eab92014-02-20 11:24:59 -0800177 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800178 highLevelIntents.changeStates(states);
Toshio Koidebf875662014-02-24 12:19:15 -0800179 p.log("end_updateInMemoryIntents");
Toshio Koidedf2eab92014-02-20 11:24:59 -0800180
Toshio Koide93be5d62014-02-23 19:30:57 -0800181 // calculate path-intents (low-level operations)
Toshio Koidebf875662014-02-24 12:19:15 -0800182 p.log("begin_calcPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800183 IntentOperationList pathIntentOperations = runtime.calcPathIntents(list, highLevelIntents, pathIntents);
Toshio Koidebf875662014-02-24 12:19:15 -0800184 p.log("end_calcPathIntents");
Toshio Koide600ae5f2014-02-20 18:42:00 -0800185
Toshio Koide93be5d62014-02-23 19:30:57 -0800186 // persist calculated low-level operations into data store
Toshio Koidebf875662014-02-24 12:19:15 -0800187 p.log("begin_persistPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800188 long key = persistIntent.getKey();
189 persistIntent.persistIfLeader(key, pathIntentOperations);
Toshio Koidebf875662014-02-24 12:19:15 -0800190 p.log("end_persistPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800191
192 // remove error-intents and reflect them to high-level intents
Toshio Koidebf875662014-02-24 12:19:15 -0800193 p.log("begin_removeErrorIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800194 states.clear();
195 Iterator<IntentOperation> i = pathIntentOperations.iterator();
196 while (i.hasNext()) {
197 IntentOperation op = i.next();
198 if (op.operator.equals(Operator.ERROR)) {
199 states.put(op.intent.getId(), IntentState.INST_NACK);
200 i.remove();
201 }
Toshio Koide600ae5f2014-02-20 18:42:00 -0800202 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800203 highLevelIntents.changeStates(states);
Toshio Koidebf875662014-02-24 12:19:15 -0800204 p.log("end_removeErrorIntents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800205
Toshio Koide93be5d62014-02-23 19:30:57 -0800206 // update the map of path intents and publish the path operations
Toshio Koidebf875662014-02-24 12:19:15 -0800207 p.log("begin_updateInMemoryPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800208 pathIntents.executeOperations(pathIntentOperations);
Toshio Koidebf875662014-02-24 12:19:15 -0800209 p.log("end_updateInMemoryPathIntents");
Toshio Koide93be5d62014-02-23 19:30:57 -0800210
211 // Demo special: add a complete path to remove operation
Toshio Koidebf875662014-02-24 12:19:15 -0800212 p.log("begin_addPathToRemoveOperation");
Toshio Koide93be5d62014-02-23 19:30:57 -0800213 for (IntentOperation op: pathIntentOperations) {
214 if(op.operator.equals(Operator.REMOVE)) {
215 op.intent = pathIntents.getIntent(op.intent.getId());
216 }
217 if (op.intent instanceof PathIntent) {
218 log.debug("operation: {}, intent:{}", op.operator, op.intent);
219 }
220 }
Toshio Koidebf875662014-02-24 12:19:15 -0800221 p.log("end_addPathToRemoveOperation");
Toshio Koide93be5d62014-02-23 19:30:57 -0800222
223 // send notification
Toshio Koidebf875662014-02-24 12:19:15 -0800224 p.log("begin_sendNotification");
Toshio Koide93be5d62014-02-23 19:30:57 -0800225 opEventChannel.addEntry(key, pathIntentOperations);
Toshio Koidebf875662014-02-24 12:19:15 -0800226 p.log("end_sendNotification");
227 opEventChannel.removeEntry(key);
Toshio Koide93be5d62014-02-23 19:30:57 -0800228 return pathIntentOperations;
229 }
230 finally {
Toshio Koidebf875662014-02-24 12:19:15 -0800231 p.flushLog();
Toshio Koide93be5d62014-02-23 19:30:57 -0800232 lock.unlock();
233 }
Toshio Koide27ffd412014-02-18 19:15:27 -0800234 }
235
236 @Override
237 public IntentMap getHighLevelIntents() {
Toshio Koide4f308732014-02-18 15:19:48 -0800238 return highLevelIntents;
239 }
Toshio Koide27ffd412014-02-18 19:15:27 -0800240
241 @Override
242 public IntentMap getPathIntents() {
243 return pathIntents;
244 }
245
246 @Override
Toshio Koide4f308732014-02-18 15:19:48 -0800247 public void purgeIntents() {
248 highLevelIntents.purge();
Toshio Koide27ffd412014-02-18 19:15:27 -0800249 pathIntents.purge();
Toshio Koide4f308732014-02-18 15:19:48 -0800250 }
Toshio Koide0c9106d2014-02-19 15:26:38 -0800251
Toshio Koide798bc1b2014-02-20 14:02:40 -0800252 // ================================================================================
253 // INetworkGraphListener implementations
254 // ================================================================================
255
Toshio Koide0c9106d2014-02-19 15:26:38 -0800256 @Override
Toshio Koide798bc1b2014-02-20 14:02:40 -0800257 public void networkGraphEvents(Collection<SwitchEvent> addedSwitchEvents,
258 Collection<SwitchEvent> removedSwitchEvents,
259 Collection<PortEvent> addedPortEvents,
260 Collection<PortEvent> removedPortEvents,
261 Collection<LinkEvent> addedLinkEvents,
262 Collection<LinkEvent> removedLinkEvents,
263 Collection<DeviceEvent> addedDeviceEvents,
264 Collection<DeviceEvent> removedDeviceEvents) {
Toshio Koidea9078af2014-02-21 16:57:04 -0800265
Toshio Koidebf875662014-02-24 12:19:15 -0800266 PerfLogger p = new PerfLogger("networkGraphEvents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800267 HashSet<Intent> affectedPaths = new HashSet<>();
Brian O'Connor5518d282014-02-25 22:25:58 -0800268
269 boolean rerouteAll = false;
270 for(LinkEvent le : addedLinkEvents) {
271 LinkEvent rev = new LinkEvent(le.getDst().getDpid(), le.getDst().getNumber(), le.getSrc().getDpid(), le.getSrc().getNumber());
272 if(unmatchedLinkEvents.contains(rev)) {
273 rerouteAll = true;
274 unmatchedLinkEvents.remove(rev);
275 log.debug("Found matched LinkEvent: {} {}", rev, le);
276 }
277 else {
278 unmatchedLinkEvents.add(le);
279 log.debug("Adding unmatched LinkEvent: {}", le);
280 }
281 }
282 for(LinkEvent le : removedLinkEvents) {
283 if (unmatchedLinkEvents.contains(le)) {
284 unmatchedLinkEvents.remove(le);
285 log.debug("Removing LinkEvent: {}", le);
286 }
287 }
288 if(unmatchedLinkEvents.size() > 0) {
289 log.debug("Unmatched link events: {} events", unmatchedLinkEvents.size());
290 }
Toshio Koidea9078af2014-02-21 16:57:04 -0800291
Brian O'Connor5518d282014-02-25 22:25:58 -0800292 if ( rerouteAll ) {//addedLinkEvents.size() > 0) { // ||
Toshio Koidebf875662014-02-24 12:19:15 -0800293// addedPortEvents.size() > 0 ||
294// addedSwitchEvents.size() > 0) {
295 p.log("begin_getAllIntents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800296 affectedPaths.addAll(getPathIntents().getAllIntents());
Toshio Koidebf875662014-02-24 12:19:15 -0800297 p.log("end_getAllIntents");
Toshio Koidea94060f2014-02-21 22:58:32 -0800298 }
Brian O'Connor5518d282014-02-25 22:25:58 -0800299 else if (removedSwitchEvents.size() > 0 ||
300 removedLinkEvents.size() > 0 ||
301 removedPortEvents.size() > 0) {
Toshio Koidebf875662014-02-24 12:19:15 -0800302 p.log("begin_getIntentsByLink");
Toshio Koidea94060f2014-02-21 22:58:32 -0800303 for (LinkEvent linkEvent: removedLinkEvents)
304 affectedPaths.addAll(pathIntents.getIntentsByLink(linkEvent));
Toshio Koidebf875662014-02-24 12:19:15 -0800305 p.log("end_getIntentsByLink");
Toshio Koidea9078af2014-02-21 16:57:04 -0800306
Toshio Koidebf875662014-02-24 12:19:15 -0800307 p.log("begin_getIntentsByPort");
Toshio Koidea94060f2014-02-21 22:58:32 -0800308 for (PortEvent portEvent: removedPortEvents)
309 affectedPaths.addAll(pathIntents.getIntentsByPort(portEvent.getDpid(), portEvent.getNumber()));
Toshio Koidebf875662014-02-24 12:19:15 -0800310 p.log("end_getIntentsByPort");
Toshio Koidea9078af2014-02-21 16:57:04 -0800311
Toshio Koidebf875662014-02-24 12:19:15 -0800312 p.log("begin_getIntentsByDpid");
Toshio Koidea94060f2014-02-21 22:58:32 -0800313 for (SwitchEvent switchEvent: removedSwitchEvents)
314 affectedPaths.addAll(pathIntents.getIntentsByDpid(switchEvent.getDpid()));
Toshio Koidebf875662014-02-24 12:19:15 -0800315 p.log("end_getIntentsByDpid");
Toshio Koidea94060f2014-02-21 22:58:32 -0800316 }
Toshio Koidea9078af2014-02-21 16:57:04 -0800317 reroutePaths(affectedPaths);
Toshio Koidebf875662014-02-24 12:19:15 -0800318 p.flushLog();
Toshio Koide0c9106d2014-02-19 15:26:38 -0800319 }
Toshio Koide066506e2014-02-20 19:52:09 -0800320
321 // ================================================================================
322 // IEventChannelListener implementations
323 // ================================================================================
324
325 @Override
326 public void entryAdded(IntentStateList value) {
327 entryUpdated(value);
328 }
329
330 @Override
331 public void entryRemoved(IntentStateList value) {
332 // do nothing
333 }
334
335 @Override
336 public void entryUpdated(IntentStateList value) {
Toshio Koide8315d7d2014-02-21 22:58:32 -0800337 // TODO draw state transition diagram in multiple ONOS instances and update this method
Toshio Koidebf875662014-02-24 12:19:15 -0800338 PerfLogger p = new PerfLogger("entryUpdated");
Toshio Koide93be5d62014-02-23 19:30:57 -0800339 lock.lock(); // TODO optimize locking using smaller steps
340 try {
Toshio Koide93be5d62014-02-23 19:30:57 -0800341 // reflect state changes of path-level intent into application-level intents
Toshio Koidebf875662014-02-24 12:19:15 -0800342 p.log("begin_changeStateByNotification");
Toshio Koide93be5d62014-02-23 19:30:57 -0800343 IntentStateList parentStates = new IntentStateList();
344 for (Entry<String, IntentState> entry: value.entrySet()) {
345 PathIntent pathIntent = (PathIntent) pathIntents.getIntent(entry.getKey());
346 if (pathIntent == null) continue;
Toshio Koide8315d7d2014-02-21 22:58:32 -0800347
Toshio Koide93be5d62014-02-23 19:30:57 -0800348 Intent parentIntent = pathIntent.getParentIntent();
349 if (parentIntent == null ||
350 !(parentIntent instanceof ShortestPathIntent) ||
351 !((ShortestPathIntent) parentIntent).getPathIntentId().equals(pathIntent.getId()))
352 continue;
Toshio Koide066506e2014-02-20 19:52:09 -0800353
Toshio Koide93be5d62014-02-23 19:30:57 -0800354 IntentState state = entry.getValue();
355 switch (state) {
356 case INST_REQ:
357 case INST_ACK:
358 case INST_NACK:
359 case DEL_REQ:
360 case DEL_ACK:
361 case DEL_PENDING:
362 parentStates.put(parentIntent.getId(), state);
363 break;
364 default:
365 break;
366 }
Toshio Koide066506e2014-02-20 19:52:09 -0800367 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800368 highLevelIntents.changeStates(parentStates);
369 pathIntents.changeStates(value);
Toshio Koidebf875662014-02-24 12:19:15 -0800370 p.log("end_changeStateByNotification");
Toshio Koide066506e2014-02-20 19:52:09 -0800371 }
Toshio Koide93be5d62014-02-23 19:30:57 -0800372 finally {
Toshio Koidebf875662014-02-24 12:19:15 -0800373 p.flushLog();
Toshio Koide93be5d62014-02-23 19:30:57 -0800374 lock.unlock();
375 }
Toshio Koide066506e2014-02-20 19:52:09 -0800376 }
Toshio Koidea9078af2014-02-21 16:57:04 -0800377}