[generator] Fix possible crash.

This commit is contained in:
vng 2013-06-04 16:09:54 +03:00 committed by Alex Zolotarev
parent a9558def54
commit 63f0b3f5a0
5 changed files with 22 additions and 8 deletions

View file

@ -54,10 +54,11 @@ public:
/// Clear name if it's not visible in scale range [minS, maxS].
void RemoveNameIfInvisible(int minS = 0, int maxS = 1000);
template <class FnT> void RemoveTypesIf(FnT fn)
template <class FnT> bool RemoveTypesIf(FnT fn)
{
m_Params.m_Types.erase(remove_if(m_Params.m_Types.begin(), m_Params.m_Types.end(), fn),
m_Params.m_Types.end());
return m_Params.m_Types.empty();
}
typedef vector<char> buffer_t;

View file

@ -303,7 +303,11 @@ MergedFeatureBuilder1 * FeatureTypesProcessor::operator() (FeatureBuilder1 const
p->ForEachChangeTypes(do_change_types(*this));
// do preprocessing after types correction
feature::PreprocessForWorldMap(*p);
if (!feature::PreprocessForWorldMap(*p))
{
delete p;
return 0;
}
// zero all additional params for world merged features (names, ranks, ...)
p->ZeroParams();
@ -328,13 +332,16 @@ public:
}
};
void PreprocessForWorldMap(FeatureBuilder1 & fb)
bool PreprocessForWorldMap(FeatureBuilder1 & fb)
{
int const upperScale = scales::GetUpperWorldScale();
fb.RemoveTypesIf(IsInvisibleFn(upperScale));
if (fb.RemoveTypesIf(IsInvisibleFn(upperScale)))
return false;
fb.RemoveNameIfInvisible(0, upperScale);
return true;
}
}

View file

@ -118,5 +118,6 @@ public:
namespace feature
{
void PreprocessForWorldMap(FeatureBuilder1 & fb);
/// @return false If fb became invalid (no any suitable types).
bool PreprocessForWorldMap(FeatureBuilder1 & fb);
}

View file

@ -92,11 +92,15 @@ public:
if (m_worldBucket.NeedPushToWorld(fb))
{
if (fb.GetGeomType() == feature::GEOM_LINE)
m_merger(m_typesCorrector(fb));
{
MergedFeatureBuilder1 * p = m_typesCorrector(fb);
if (p)
m_merger(p);
}
else
{
feature::PreprocessForWorldMap(fb);
m_worldBucket.PushSure(fb);
if (feature::PreprocessForWorldMap(fb));
m_worldBucket.PushSure(fb);
}
}
}

View file

@ -179,6 +179,7 @@ void FeatureParams::SetType(uint32_t t)
bool FeatureParams::PopAnyType(uint32_t & t)
{
CHECK(!m_Types.empty(), ());
t = m_Types.back();
m_Types.pop_back();
return m_Types.empty();