[routing] Pull request #5734 review fixes

This commit is contained in:
Добрый Ээх 2017-04-03 12:47:29 +03:00 committed by Vladimir Byko-Ianko
parent 11164d70c3
commit d076d15df3
2 changed files with 21 additions and 21 deletions

View file

@ -21,7 +21,8 @@ enum class Format
v6, // October 2015 (offsets vector is in mwm now).
v7, // November 2015 (supply different search index formats).
v8, // February 2016 (long strings in metadata; store seconds since epoch in MwmVersion).
v9, // April 2017 (OSRM sections are deleted and replaced by cross mwm section.
// December 2016 (index graph section was added in version 161206, between v8 and v9).
v9, // April 2017 (OSRM sections are deleted and replaced by cross mwm section).
lastFormat = v9
};

View file

@ -241,7 +241,7 @@ IRouter::ResultCode FindSingleOsrmRoute(FeatureGraphNode const & source,
}
template <typename ToDo>
void ForEachCountryInfo(Index & index, ToDo && toDo)
bool ForEachCountryInfo(Index & index, ToDo && toDo)
{
vector<shared_ptr<MwmInfo>> infos;
index.GetMwmsInfo(infos);
@ -249,8 +249,13 @@ void ForEachCountryInfo(Index & index, ToDo && toDo)
for (auto const & info : infos)
{
if (info->GetType() == MwmInfo::COUNTRY)
toDo(*info);
{
if (!toDo(*info))
return false;
}
}
return true;
}
} // namespace
@ -600,43 +605,37 @@ bool CarRouter::DoesEdgeIndexExist(Index::MwmId const & mwmId)
bool CarRouter::AllMwmsHaveRoutingIndex() const
{
bool result = true;
ForEachCountryInfo(m_index, [&](MwmInfo const & info) {
if (!version::MwmTraits(info.m_version).HasRoutingIndex())
result = false;
return ForEachCountryInfo(m_index, [&](MwmInfo const & info) {
return version::MwmTraits(info.m_version).HasRoutingIndex();
});
return result;
}
bool CarRouter::ThereIsCrossMwmMix(Route & route) const
{
bool oldMwmExists = false;
bool newMwmExists = false;
bool osrmMwmExists = false;
bool crossMwmExists = false;
vector<string> oldMwms;
ForEachCountryInfo(m_index, [&](MwmInfo const & info) {
if (version::MwmTraits(info.m_version).HasCrossMwmSection())
{
newMwmExists = true;
crossMwmExists = true;
}
else
{
oldMwmExists = true;
osrmMwmExists = true;
oldMwms.push_back(info.GetCountryName());
}
return true;
});
if (oldMwmExists && newMwmExists)
{
for (auto const & oldMwm : oldMwms)
route.AddAbsentCountry(oldMwm);
if (!osrmMwmExists || !crossMwmExists)
return false;
return true;
}
for (auto const & oldMwm : oldMwms)
route.AddAbsentCountry(oldMwm);
return false;
return true;
}
IRouter::ResultCode CarRouter::FindSingleRouteDispatcher(FeatureGraphNode const & source,