[routing] Cross mwm mix handling for iOS

This commit is contained in:
Добрый Ээх 2017-04-03 16:23:50 +03:00 committed by Vladimir Byko-Ianko
parent 57a5a27f74
commit 11164d70c3
3 changed files with 9 additions and 1 deletions

View file

@ -118,7 +118,7 @@ CGFloat const kAnimationDuration = .05;
auto const & s = GetFramework().GetStorage();
m_countries.erase(
remove_if(m_countries.begin(), m_countries.end(),
[&s](TCountryId const & countryId) { return s.IsNodeDownloaded(countryId); }),
[&s](TCountryId const & countryId) { return s.HasLatestVersion(countryId); }),
m_countries.end());
NSMutableArray<NSString *> * titles = [@[] mutableCopy];
TMwmSize totalSize = 0;

View file

@ -1252,6 +1252,11 @@ bool Storage::IsNodeDownloaded(TCountryId const & countryId) const
return false;
}
bool Storage::HasLatestVersion(TCountryId const & countryId) const
{
return CountryStatusEx(countryId) == Status::EOnDisk;
}
void Storage::DownloadNode(TCountryId const & countryId)
{
ASSERT_THREAD_CHECKER(m_threadChecker, ());

View file

@ -373,6 +373,9 @@ public:
/// and World.mwm and WorldCoasts.mwm.
bool IsNodeDownloaded(TCountryId const & countryId) const;
/// \brief Returns true if the last version of countryId has been downloaded.
bool HasLatestVersion(TCountryId const & countryId) const;
/// \brief Gets all the attributes for a node by its |countryId|.
/// \param |nodeAttrs| is filled with attributes in this method.
void GetNodeAttrs(TCountryId const & countryId, NodeAttrs & nodeAttrs) const;