forked from organicmaps/organicmaps
Singletone IsBuildingChecker.
This commit is contained in:
parent
54575aee00
commit
b2a5d98f27
7 changed files with 13 additions and 18 deletions
|
@ -262,8 +262,7 @@ class SecondPassParser : public BaseOSMParser
|
|||
unique_ptr<FileWriter> m_addrWriter;
|
||||
bool NeedWriteAddress(FeatureParams const & params) const
|
||||
{
|
||||
static ftypes::IsBuildingChecker const checker;
|
||||
return m_addrWriter && checker(params.m_Types);
|
||||
return m_addrWriter && ftypes::IsBuildingChecker::Instance()(params.m_Types);
|
||||
}
|
||||
|
||||
class Place
|
||||
|
|
|
@ -160,6 +160,12 @@ IsBuildingChecker::IsBuildingChecker()
|
|||
m_types.push_back(c.GetTypeByPath({ "building", "address" }));
|
||||
}
|
||||
|
||||
IsBuildingChecker const & IsBuildingChecker::Instance()
|
||||
{
|
||||
static const IsBuildingChecker inst;
|
||||
return inst;
|
||||
}
|
||||
|
||||
IsLocalityChecker::IsLocalityChecker()
|
||||
{
|
||||
Classificator const & c = classif();
|
||||
|
|
|
@ -80,16 +80,16 @@ public:
|
|||
|
||||
class IsLinkChecker : public BaseChecker
|
||||
{
|
||||
public:
|
||||
IsLinkChecker();
|
||||
public:
|
||||
static IsLinkChecker const & Instance();
|
||||
};
|
||||
|
||||
class IsBuildingChecker : public BaseChecker
|
||||
{
|
||||
public:
|
||||
IsBuildingChecker();
|
||||
|
||||
public:
|
||||
static IsBuildingChecker const & Instance();
|
||||
uint32_t GetMainType() const { return m_types[0]; }
|
||||
};
|
||||
|
||||
|
|
|
@ -82,8 +82,7 @@ namespace di
|
|||
//}
|
||||
|
||||
string houseNumber;
|
||||
static ftypes::IsBuildingChecker const isBuilding;
|
||||
if (isBuilding(f))
|
||||
if (ftypes::IsBuildingChecker::Instance()(f))
|
||||
{
|
||||
houseNumber = f.GetHouseNumber();
|
||||
// Mark houses without names/numbers so user can select them by single tap.
|
||||
|
|
|
@ -707,18 +707,13 @@ HouseProjection const * MergedStreet::GetHousePivot(bool isOdd, bool & sign) con
|
|||
return 0;
|
||||
}
|
||||
|
||||
uint32_t HouseDetector::GetBuildingType() const
|
||||
{
|
||||
return m_buildingChecker.GetMainType();
|
||||
}
|
||||
|
||||
template <class ProjectionCalcT>
|
||||
void HouseDetector::ReadHouse(FeatureType const & f, Street * st, ProjectionCalcT & calc)
|
||||
{
|
||||
string const houseNumber = f.GetHouseNumber();
|
||||
|
||||
/// @todo After new data generation we can skip IsHouseNumber check here.
|
||||
if (m_buildingChecker(f) && feature::IsHouseNumber(houseNumber))
|
||||
if (ftypes::IsBuildingChecker::Instance()(f) && feature::IsHouseNumber(houseNumber))
|
||||
{
|
||||
HouseMapT::iterator const it = m_id2house.find(f.GetID());
|
||||
bool const isNew = it == m_id2house.end();
|
||||
|
|
|
@ -238,8 +238,6 @@ class HouseDetector
|
|||
int m_streetNum;
|
||||
double m_houseOffsetM;
|
||||
|
||||
ftypes::IsBuildingChecker m_buildingChecker;
|
||||
|
||||
typedef pair<Street *, bool> StreetPtr;
|
||||
StreetPtr FindConnection(Street const * st, bool beg) const;
|
||||
void MergeStreets(Street * st);
|
||||
|
@ -256,8 +254,6 @@ public:
|
|||
HouseDetector(Index const * pIndex);
|
||||
~HouseDetector();
|
||||
|
||||
uint32_t GetBuildingType() const;
|
||||
|
||||
int LoadStreets(vector<FeatureID> const & ids);
|
||||
/// @return number of different joined streets.
|
||||
int MergeStreets();
|
||||
|
|
|
@ -760,7 +760,7 @@ void Query::FlushHouses(Results & res, bool allMWMs, vector<FeatureID> const & s
|
|||
House const * h = houses[i].m_house;
|
||||
(res.*addFn)(MakeResult(impl::PreResult2(h->GetPosition(),
|
||||
h->GetNumber() + ", " + houses[i].m_street->GetName(),
|
||||
m_houseDetector.GetBuildingType())));
|
||||
ftypes::IsBuildingChecker::Instance().GetMainType())));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue