forked from organicmaps/organicmaps
git-clang-format
This commit is contained in:
parent
ba4656b2ee
commit
672a8001c2
5 changed files with 17 additions and 14 deletions
|
@ -30,7 +30,8 @@ string const kRestrictionTestDir = "test-restrictions";
|
|||
|
||||
UNIT_TEST(RestrictionTest_ValidCase)
|
||||
{
|
||||
RestrictionCollector restrictionCollector("" /* restrictionPath */, "" /* osmIdsToFeatureIdsPath */);
|
||||
RestrictionCollector restrictionCollector("" /* restrictionPath */,
|
||||
"" /* osmIdsToFeatureIdsPath */);
|
||||
// Adding feature ids.
|
||||
restrictionCollector.AddFeatureId(30 /* featureId */, 3 /* osmId */);
|
||||
restrictionCollector.AddFeatureId(10 /* featureId */, 1 /* osmId */);
|
||||
|
@ -55,7 +56,8 @@ UNIT_TEST(RestrictionTest_ValidCase)
|
|||
|
||||
UNIT_TEST(RestrictionTest_InvalidCase)
|
||||
{
|
||||
RestrictionCollector restrictionCollector("" /* restrictionPath */, "" /* osmIdsToFeatureIdsPath */);
|
||||
RestrictionCollector restrictionCollector("" /* restrictionPath */,
|
||||
"" /* osmIdsToFeatureIdsPath */);
|
||||
restrictionCollector.AddFeatureId(0 /* featureId */, 0 /* osmId */);
|
||||
restrictionCollector.AddFeatureId(20 /* featureId */, 2 /* osmId */);
|
||||
|
||||
|
@ -78,7 +80,8 @@ UNIT_TEST(RestrictionTest_ParseRestrictions)
|
|||
ScopedDir const scopedDir(kRestrictionTestDir);
|
||||
ScopedFile const scopedFile(kRestrictionPath, kRestrictionContent);
|
||||
|
||||
RestrictionCollector restrictionCollector("" /* restrictionPath */, "" /* osmIdsToFeatureIdsPath */);
|
||||
RestrictionCollector restrictionCollector("" /* restrictionPath */,
|
||||
"" /* osmIdsToFeatureIdsPath */);
|
||||
|
||||
Platform const & platform = Platform();
|
||||
|
||||
|
@ -107,8 +110,8 @@ UNIT_TEST(RestrictionTest_RestrictionCollectorWholeClassTest)
|
|||
30, 3,
|
||||
40, 4)";
|
||||
Platform const & platform = Platform();
|
||||
string const osmIdsToFeatureIdsFullPath = my::JoinFoldersToPath(platform.WritableDir(),
|
||||
osmIdsToFeatureIdsPath);
|
||||
string const osmIdsToFeatureIdsFullPath =
|
||||
my::JoinFoldersToPath(platform.WritableDir(), osmIdsToFeatureIdsPath);
|
||||
ReEncodeOsmIdsToFeatureIdsMapping(kOsmIdsToFeatureIdsContent, osmIdsToFeatureIdsFullPath);
|
||||
ScopedFile mappingScopedFile(osmIdsToFeatureIdsPath);
|
||||
|
||||
|
|
|
@ -12,5 +12,6 @@ namespace generator
|
|||
/// 30, 3,
|
||||
/// 40, 4
|
||||
/// \parma outputFilePath full path to an output file where the mapping is saved.
|
||||
void ReEncodeOsmIdsToFeatureIdsMapping(string const & mappingContent, string const & outputFilePath);
|
||||
void ReEncodeOsmIdsToFeatureIdsMapping(string const & mappingContent,
|
||||
string const & outputFilePath);
|
||||
} // namespace generator
|
||||
|
|
|
@ -48,9 +48,10 @@ namespace feature
|
|||
#endif
|
||||
|
||||
public:
|
||||
Polygonizer(feature::GenerateInfo const & info) : m_info(info)
|
||||
Polygonizer(feature::GenerateInfo const & info)
|
||||
: m_info(info)
|
||||
#if PARALLEL_POLYGONIZER
|
||||
, m_ThreadPoolSemaphore(m_ThreadPool.maxThreadCount() * 8)
|
||||
, m_ThreadPoolSemaphore(m_ThreadPool.maxThreadCount() * 8)
|
||||
#endif
|
||||
{
|
||||
#if PARALLEL_POLYGONIZER
|
||||
|
@ -184,9 +185,7 @@ namespace feature
|
|||
PolygonizerTask(Polygonizer * pPolygonizer,
|
||||
buffer_vector<borders::CountryPolygons const *, 32> const & countries,
|
||||
FeatureBuilder1 const & fb)
|
||||
: m_pPolygonizer(pPolygonizer)
|
||||
, m_Countries(countries)
|
||||
, m_fb(fb)
|
||||
: m_pPolygonizer(pPolygonizer), m_Countries(countries), m_fb(fb)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ bool RestrictionCollector::ParseOsmIdToFeatureIdMapping(string const & osmIdsToF
|
|||
return false;
|
||||
}
|
||||
|
||||
osmIdsToFeatureIds.ForEach([this](gen::OsmID2FeatureID::ValueT const & p){
|
||||
osmIdsToFeatureIds.ForEach([this](gen::OsmID2FeatureID::ValueT const & p) {
|
||||
AddFeatureId(p.second /* feature id */, p.first /* osm id */);
|
||||
});
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ namespace routing
|
|||
bool BuildRoadRestrictions(string const & mwmPath, string const & restrictionPath,
|
||||
string const & osmIdsTofeatureIdsPath)
|
||||
{
|
||||
LOG(LINFO,
|
||||
("BuildRoadRestrictions(", mwmPath, ", ", restrictionPath, ", ", osmIdsTofeatureIdsPath, ");"));
|
||||
LOG(LINFO, ("BuildRoadRestrictions(", mwmPath, ", ", restrictionPath, ", ",
|
||||
osmIdsTofeatureIdsPath, ");"));
|
||||
RestrictionCollector restrictionCollector(restrictionPath, osmIdsTofeatureIdsPath);
|
||||
if (!restrictionCollector.HasRestrictions() || !restrictionCollector.IsValid())
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue