Dumper also counts features and names count

This commit is contained in:
Alex Zolotarev 2011-05-17 14:32:11 +02:00 committed by Alex Zolotarev
parent cd9242df50
commit 3007d09c6f

View file

@ -16,9 +16,17 @@ namespace feature
public:
typedef unordered_map<vector<uint32_t>, size_t> value_type;
value_type m_stats;
size_t m_namesCount;
size_t m_totalCount;
TypesCollector() : m_namesCount(0), m_totalCount(0) {}
void operator()(FeatureType & f, uint32_t)
{
++m_totalCount;
if (!f.GetPreferredDrawableName().empty())
++m_namesCount;
m_currFeatureTypes.clear();
f.ForEachTypeRef(*this);
CHECK(!m_currFeatureTypes.empty(), ("Feature without any type???"));
@ -56,5 +64,7 @@ namespace feature
cout << classif().GetFullObjectName(it->first[i]) << " ";
cout << endl;
}
cout << "Total features: " << doClass.m_totalCount << endl;
cout << "Features with names: " << doClass.m_namesCount << endl;
}
}