[storage] Removing the deleted country from DiffManager.

Suppose that a user has one mwm and the app has been updated.
It now offers to download the diff, however instead
the user deletes the map and tries to download it again.
The download fails because according to the DiffManager it's
not the mwm but the mwmdiff that should be downloaded which
results in a size mismatch. Moreover, if the download is retried,
the diff is downloaded (because the MapOptions are correct now)
but it cannot be applied because the old mwm has already been removed.

The problem is that we do not account for the change in mwm status
since the start of the application (and, in particular, the DiffManager)
when taking the decision whether to download a diff or a full mwm.
This commit is contained in:
Maxim Pimenov 2019-02-12 18:07:45 +03:00 committed by Vlad Mihaylenko
parent 6e096f6106
commit f328e875d9
3 changed files with 9 additions and 0 deletions

View file

@ -173,6 +173,12 @@ void Manager::RemoveAppliedDiffs()
m_status = Status::NotAvailable;
}
void Manager::RemoveDiffForCountry(storage::CountryId const & countryId)
{
std::lock_guard<std::mutex> lock(m_mutex);
m_diffs.erase(countryId);
}
void Manager::AbortDiffScheme()
{
std::lock_guard<std::mutex> lock(m_mutex);

View file

@ -61,6 +61,7 @@ public:
bool HasDiffFor(storage::CountryId const & countryId) const;
void RemoveAppliedDiffs();
void RemoveDiffForCountry(storage::CountryId const & countryId);
void AbortDiffScheme();
Status GetStatus() const;

View file

@ -571,6 +571,8 @@ void Storage::DeleteCountry(CountryId const & countryId, MapOptions opt)
bool const deferredDelete = m_willDelete(countryId, localFile);
DeleteCountryFiles(countryId, opt, deferredDelete);
DeleteCountryFilesFromDownloader(countryId);
m_diffManager.RemoveDiffForCountry(countryId);
NotifyStatusChangedForHierarchy(countryId);
}