[map] clear the gps tracker on save

The prev solution was to clean up the tracker points before the new track recording starting.
It was not fully correct solution because:
1. it causes the bug, when if we starts a recording, the `TrackRecordingUpdateHandler` is called by subscribers but receives the old `track info` from the previous track. It happens because the starting is an async call and it cleans up the gps collection a little bit later.
2. when the user finishes the track recording the collection is not properly cleared. The data will stay in the memory `forewer` until the next recording is started. And this data will be recovered on the next app launch too. There are no reason to store all the recorded data in memory until the new recording begins. This approach was Ok for the `previous path` feature (removed) but not for the TR. The data lifecycle for the both feature should be handled separately.

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-12-26 18:04:43 +04:00 committed by Roman Tsisyk
parent 0687642095
commit 34510b8f1c
3 changed files with 7 additions and 0 deletions

View file

@ -1752,6 +1752,7 @@ void Framework::StopTrackRecording()
void Framework::SaveTrackRecordingWithName(std::string const & name)
{
GetBookmarkManager().SaveTrackRecording(name);
GpsTracker::Instance().Clear();
if (m_drapeEngine)
m_drapeEngine->ClearGpsTrackPoints();
}

View file

@ -60,6 +60,11 @@ void GpsTracker::SetEnabled(bool enabled)
m_track.Clear();
}
void GpsTracker::Clear()
{
m_track.Clear();
}
bool GpsTracker::IsEnabled() const
{
return m_enabled;

View file

@ -14,6 +14,7 @@ public:
bool IsEnabled() const;
void SetEnabled(bool enabled);
void Clear();
bool IsEmpty() const;
size_t GetTrackSize() const;