(svn r25424) -Fix: keep old flows around in an invalidated state to continue routing cargo if necessary

This commit is contained in:
fonsinchen
2013-06-17 20:38:11 +00:00
parent b923eb31a8
commit f0119308f6
3 changed files with 38 additions and 1 deletions

View File

@@ -72,7 +72,19 @@ LinkGraphJob::~LinkGraphJob()
}
}
ge.flows.swap(flows);
/* Swap shares and invalidate ones that are completely deleted. Don't
* really delete them as we could then end up with unroutable cargo
* somewhere. */
for (FlowStatMap::iterator it(ge.flows.begin()); it != ge.flows.end(); ++it) {
FlowStatMap::iterator new_it = flows.find(it->first);
if (new_it == flows.end()) {
it->second.Invalidate();
} else {
it->second.SwapShares(new_it->second);
flows.erase(new_it);
}
}
ge.flows.insert(flows.begin(), flows.end());
InvalidateWindowData(WC_STATION_VIEW, st->index, this->Cargo());
}
}