Reorganization code to remote FeaturesCollector::GetNextFeatureId at all.

This commit is contained in:
Vladimir Byko-Ianko 2016-11-07 11:12:10 +03:00
parent 6209cee468
commit 39a135b2c7
4 changed files with 14 additions and 12 deletions

View file

@ -22,7 +22,6 @@ protected:
FileWriter m_datFile;
m2::RectD m_bounds;
uint32_t GetNextFeatureId() const { return m_featureID; }
private:
void Write(char const * src, size_t size);
void FlushBuffer();
@ -41,7 +40,10 @@ public:
string const & GetFilePath() const { return m_datFile.GetName(); }
/// \brief Serializes |f|.
/// \returns feature id of serialized feature.
/// \returns feature id of serialized feature if |f| is serialized after the call
/// and numeric_limits<uint32_t>::max() if not.
/// \note See implementation operator() in derived class for cases when |f| cannot be
/// serialized.
virtual uint32_t operator()(FeatureBuilder1 const & f);
};

View file

@ -27,6 +27,8 @@
#include "base/scope_guard.hpp"
#include "base/string_utils.hpp"
#include "std/limits.hpp"
namespace
{
typedef pair<uint64_t, uint64_t> CellAndOffsetT;
@ -520,11 +522,12 @@ namespace feature
}
}
uint32_t featureId = numeric_limits<uint32_t>::max();
if (fb.PreSerialize(holder.m_buffer))
{
fb.Serialize(holder.m_buffer, m_header.GetDefCodingParams());
uint32_t const ftID = WriteFeatureBase(holder.m_buffer.m_buffer, fb);
featureId = WriteFeatureBase(holder.m_buffer.m_buffer, fb);
fb.GetAddressData().Serialize(*(m_helperFile[SEARCH_TOKENS]));
@ -535,17 +538,15 @@ namespace feature
uint64_t const offset = w->Pos();
ASSERT_LESS_OR_EQUAL(offset, numeric_limits<uint32_t>::max(), ());
m_metadataIndex.emplace_back(ftID, static_cast<uint32_t>(offset));
m_metadataIndex.emplace_back(featureId, static_cast<uint32_t>(offset));
fb.GetMetadata().Serialize(*w);
}
uint64_t const osmID = fb.GetWayIDForRouting();
if (osmID != 0)
m_osm2ft.Add(make_pair(osmID, ftID));
m_osm2ft.Add(make_pair(osmID, featureId));
};
// Note. GetNextFeatureId() returns 0 in the first call of
// fb.PreSerialize(holder.m_buffer) returns false.
return GetNextFeatureId() == 0 ? 0 : GetNextFeatureId();
return featureId;
}
};

View file

@ -166,11 +166,10 @@ namespace feature
m_currentNames += country->m_name;
auto & bucket = *(m_Buckets[country->m_index]);
uint32_t const nextFeatureId = bucket(fb);
uint32_t const featureId = bucket(fb);
CHECK_LESS(0, nextFeatureId, ("GetNextFeatureId() is called before WriteFeatureBase(...)"));
if (fb.IsLine())
featureId2osmIds.Write(nextFeatureId - 1 /* feature id of |fb| */, fb.GetOsmIds());
featureId2osmIds.Write(featureId /* feature id of |fb| */, fb.GetOsmIds());
}
vector<string> const & Names() const

View file

@ -63,7 +63,7 @@ bool BuildRoadRestrictions(string const & mwmPath, string const & restrictionPat
RoutingHeader header;
header.m_noRestrictionCount = distance(restrictions.cbegin(), firstOnlyIt);
header.m_onlyRestrictionCount = restrictions.size() - header.m_noRestrictionCount;
LOG(LINFO, ("Header info. There are", header.m_noRestrictionCount, "and",
LOG(LINFO, ("Header info. There are", header.m_noRestrictionCount, "no restrictions and",
header.m_onlyRestrictionCount, "only restrictions"));
FilesContainerW cont(mwmPath, FileWriter::OP_WRITE_EXISTING);