forked from organicmaps/organicmaps
[indexer] logging for incorrect type index is added.
This commit is contained in:
parent
5630a77074
commit
2ada26a806
4 changed files with 22 additions and 4 deletions
|
@ -195,6 +195,7 @@ public:
|
|||
//@}
|
||||
|
||||
uint32_t GetIndexForType(uint32_t t) const { return m_mapping.GetIndex(t); }
|
||||
// Throws std::out_of_range exception.
|
||||
uint32_t GetTypeForIndex(uint32_t i) const { return m_mapping.GetType(i); }
|
||||
bool IsTypeValid(uint32_t t) const { return m_mapping.HasIndex(t); }
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include "base/logging.hpp"
|
||||
|
||||
#include "std/algorithm.hpp"
|
||||
#include "std/exception.hpp"
|
||||
#include "std/limits.hpp"
|
||||
|
||||
#include "defines.hpp"
|
||||
|
@ -29,8 +30,23 @@ void LoaderCurrent::ParseTypes()
|
|||
ArrayByteSource source(DataPtr() + m_TypesOffset);
|
||||
|
||||
size_t const count = m_pF->GetTypesCount();
|
||||
for (size_t i = 0; i < count; ++i)
|
||||
m_pF->m_types[i] = c.GetTypeForIndex(ReadVarUint<uint32_t>(source));
|
||||
uint32_t index = 0;
|
||||
try
|
||||
{
|
||||
for (size_t i = 0; i < count; ++i)
|
||||
{
|
||||
index = ReadVarUint<uint32_t>(source);
|
||||
m_pF->m_types[i] = c.GetTypeForIndex(index);
|
||||
}
|
||||
}
|
||||
catch (std::out_of_range const & ex)
|
||||
{
|
||||
LOG(LERROR, ("Incorrect type index for feature. FeatureID:", m_pF->m_id,
|
||||
". Incorrect index:", index, ". Loaded feature types:", m_pF->m_types,
|
||||
". Total count of types:", count, ". Header:", m_pF->m_header,
|
||||
". Exception:", ex.what()));
|
||||
throw;
|
||||
}
|
||||
|
||||
m_CommonOffset = CalcOffset(source);
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@ string DebugPrint(MwmSet::MwmId const & id)
|
|||
{
|
||||
ostringstream ss;
|
||||
if (id.m_info.get())
|
||||
ss << "MwmId [" << id.m_info->GetCountryName() << "]";
|
||||
ss << "MwmId [" << id.m_info->GetCountryName() << ", " << id.m_info->GetVersion() << "]";
|
||||
else
|
||||
ss << "MwmId [invalid]";
|
||||
return ss.str();
|
||||
|
|
|
@ -19,10 +19,11 @@ public:
|
|||
void Clear();
|
||||
void Load(istream & s);
|
||||
|
||||
// Throws std::out_of_range exception.
|
||||
uint32_t GetType(uint32_t ind) const
|
||||
{
|
||||
ASSERT_LESS ( ind, m_types.size(), () );
|
||||
return m_types[ind];
|
||||
return m_types.at(ind);
|
||||
}
|
||||
|
||||
uint32_t GetIndex(uint32_t t) const;
|
||||
|
|
Loading…
Add table
Reference in a new issue