Fix bug in empty geometry feature processing during indexing.

This commit is contained in:
vng 2011-01-07 12:19:10 +02:00 committed by Alex Zolotarev
parent 1d0cfa888e
commit e60b1f07cc
7 changed files with 34 additions and 20 deletions

Binary file not shown.

View file

@ -514,8 +514,7 @@ namespace
string FeatureType::DebugString(int scale) const
{
// force to load all geometry
(void)GetLimitRect(scale);
ParseAll(scale);
string s = base_type::DebugString();
@ -528,13 +527,23 @@ string FeatureType::DebugString(int scale) const
return s;
}
bool FeatureType::IsEmptyGeometry(int scale) const
{
ParseAll(scale);
switch (GetFeatureType())
{
case FEATURE_TYPE_AREA: return m_Triangles.empty();
case FEATURE_TYPE_LINE: return m_Geometry.empty();
default:
ASSERT ( Header() & HEADER_HAS_POINT, () );
return false;
}
}
m2::RectD FeatureType::GetLimitRect(int scale) const
{
if (!m_bGeometryParsed)
ParseGeometry(scale);
if (!m_bTrianglesParsed)
ParseTriangles(scale);
ParseAll(scale);
if (m_Triangles.empty() && m_Geometry.empty() && (Header() & HEADER_HAS_POINT) == 0)
{
@ -622,3 +631,12 @@ void FeatureType::ParseOffsets() const
m_bOffsetsParsed = true;
}
void FeatureType::ParseAll(int scale) const
{
if (!m_bGeometryParsed)
ParseGeometry(scale);
if (!m_bTrianglesParsed)
ParseTriangles(scale);
}

View file

@ -169,8 +169,7 @@ public:
{
FEATURE_TYPE_POINT = 0,
FEATURE_TYPE_LINE = 1,
FEATURE_TYPE_AREA = 2,
FEATURE_TYPE_UNKNOWN = 17
FEATURE_TYPE_AREA = 2
};
FeatureBase() : m_Offset(0) {}
@ -330,6 +329,8 @@ public:
//@{
m2::RectD GetLimitRect(int scale) const;
bool IsEmptyGeometry(int scale) const;
template <typename FunctorT>
void ForEachPointRef(FunctorT & f, int scale) const
{
@ -338,6 +339,7 @@ public:
if (m_Geometry.empty())
{
CHECK ( Header() & HEADER_HAS_POINT, ("Call ForEachPoint for empty geometry") );
f(CoordPointT(m_Center.x, m_Center.y));
}
else
@ -383,6 +385,8 @@ private:
void ParseGeometry(int scale) const;
void ParseTriangles(int scale) const;
void ParseAll(int scale) const;
mutable vector<m2::PointD> m_Geometry;
mutable vector<m2::PointD> m_Triangles;

View file

@ -115,11 +115,6 @@ namespace
int GetDrawRule(FeatureBase const & f, int level, vector<drule::Key> & keys, string & names)
{
FeatureBase::FeatureType const geoType = f.GetFeatureType();
if (geoType == FeatureBase::FEATURE_TYPE_UNKNOWN)
{
ASSERT ( false, ("Logic Error! Unknown feature type.") );
return FeatureBase::FEATURE_TYPE_UNKNOWN;
}
FeatureBase::GetTypesFn types;
f.ForEachTypeRef(types);

View file

@ -75,8 +75,8 @@ public:
template <class TFeature>
bool FeatureShouldBeIndexed(TFeature const & f) const
{
// Call this to force TFeature::ParseGeometry
f.GetLimitRect(m_ScaleRange.second);
if (f.IsEmptyGeometry(m_ScaleRange.second-1))
return false;
uint32_t const minScale = feature::MinDrawableScaleForFeature(f);
return (m_ScaleRange.first <= minScale && minScale < m_ScaleRange.second);

View file

@ -141,9 +141,6 @@ namespace fwork
case FeatureBase::FEATURE_TYPE_LINE:
GET_POINTS(filter_screenpts_adapter<path_points>, ForEachPointRef, assign_path)
break;
case FeatureBase::FEATURE_TYPE_UNKNOWN:
ASSERT(0, ("Feature type is unknown"));
}
// nothing to draw

View file

@ -38,7 +38,7 @@ protected:
CHECK(m_dbgString == f.DebugString(m_scale), ());
// Feature that hasn't any geometry for m_scale returns empty DebugString().
return (!m_dbgString.empty() && feature::IsDrawableForIndex(f, m_scale));
return (!f.IsEmptyGeometry(m_scale) && feature::IsDrawableForIndex(f, m_scale));
}
void add(FeatureType const & f) const