[traffic] Inhibit perodic traffic updates during route calculation

Signed-off-by: mvglasow <michael -at- vonglasow.com>
This commit is contained in:
mvglasow
2025-08-29 22:12:33 +03:00
parent ac87e3c585
commit 3ed31a575f
2 changed files with 29 additions and 2 deletions

View File

@@ -205,6 +205,10 @@ void TrafficManager::OnChangeRoutingSessionState(routing::SessionState previous,
// TODO assert were running on the UI thread
LOG(LINFO, ("Routing session state changed from", previous, "to", current));
LOG(LINFO, ("Running on thread", std::this_thread::get_id()));
m_observerInhibited = ((current == routing::SessionState::RouteBuilding)
|| (current == routing::SessionState::RouteRebuilding));
/*
* Filter based on session state (see routing_callbacks.hpp for states and transitions).
*
@@ -796,11 +800,21 @@ void TrafficManager::OnTrafficDataUpdate()
{
auto const currentTime = steady_clock::now();
auto const drapeAge = currentTime - m_lastDrapeUpdate;
auto const observerAge = currentTime - m_lastObserverUpdate;
auto const storageAge = currentTime - m_lastStorageUpdate;
notifyDrape = (drapeAge >= kDrapeUpdateInterval);
notifyObserver = (observerAge >= kObserverUpdateInterval);
updateStorage = (storageAge >= kStorageUpdateInterval);
if (!m_observerInhibited)
{
/*
* To avoid resetting the route over and over again while building, inhibit periodic updates
* to the router while a route is being built. Periodic updates will resume once the route is
* fully built. During route calculation, traffic updates are sent only if the queue is empty.
* TODO test this with TMC, where messages arrive one by one, or in short bursts, and the
* queue may run empty multiple times while a route is being calculated.
*/
auto const observerAge = currentTime - m_lastObserverUpdate;
notifyObserver = (observerAge >= kObserverUpdateInterval);
}
}
if (!m_storage || IsTestMode())

View File

@@ -654,6 +654,19 @@ private:
*/
std::chrono::time_point<std::chrono::steady_clock> m_lastObserverUpdate;
/**
* @brief Whether updates to the observer are currently inhibited.
*
* Updates are inhibited while a route calculation is in progress. In this state, the observer
* receives traffic updates only if the queue has run empty, not if nore locations are waiting
* to be decoded.
*
* Inhibtiting the observer is necessary as traffic updates during route calculation will cause
* it to restart from scratch. Once the route has been calculated, updates will trigger a
* recalculation, which is much faster (seconds or less).
*/
bool m_observerInhibited = false;
/**
* @brief When the cache file was last updated.
*/