Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
ba489295c3
1 changed files with 123 additions and 122 deletions
|
@ -38,7 +38,7 @@ public class MapPoiTypes {
|
|||
private PoiTranslator poiTranslator = null;
|
||||
private boolean init;
|
||||
|
||||
public MapPoiTypes(String fileName){
|
||||
public MapPoiTypes(String fileName) {
|
||||
this.resourceName = fileName;
|
||||
}
|
||||
|
||||
|
@ -49,7 +49,7 @@ public class MapPoiTypes {
|
|||
}
|
||||
|
||||
public static MapPoiTypes getDefaultNoInit() {
|
||||
if(DEFAULT_INSTANCE == null){
|
||||
if (DEFAULT_INSTANCE == null) {
|
||||
DEFAULT_INSTANCE = new MapPoiTypes(null);
|
||||
}
|
||||
return DEFAULT_INSTANCE;
|
||||
|
@ -62,7 +62,7 @@ public class MapPoiTypes {
|
|||
}
|
||||
|
||||
public static MapPoiTypes getDefault() {
|
||||
if(DEFAULT_INSTANCE == null){
|
||||
if (DEFAULT_INSTANCE == null) {
|
||||
DEFAULT_INSTANCE = new MapPoiTypes(null);
|
||||
DEFAULT_INSTANCE.init();
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ public class MapPoiTypes {
|
|||
}
|
||||
|
||||
public PoiCategory getOtherMapCategory() {
|
||||
if(otherMapCategory == null) {
|
||||
if (otherMapCategory == null) {
|
||||
otherMapCategory = getPoiCategoryByName("Other", true);
|
||||
}
|
||||
return otherMapCategory;
|
||||
|
@ -86,12 +86,12 @@ public class MapPoiTypes {
|
|||
|
||||
public List<PoiFilter> getTopVisibleFilters() {
|
||||
List<PoiFilter> lf = new ArrayList<PoiFilter>();
|
||||
for(PoiCategory pc : categories) {
|
||||
if(pc.isTopVisible()) {
|
||||
for (PoiCategory pc : categories) {
|
||||
if (pc.isTopVisible()) {
|
||||
lf.add(pc);
|
||||
}
|
||||
for(PoiFilter p : pc.getPoiFilters()) {
|
||||
if(p.isTopVisible()) {
|
||||
for (PoiFilter p : pc.getPoiFilters()) {
|
||||
if (p.isTopVisible()) {
|
||||
lf.add(p);
|
||||
}
|
||||
}
|
||||
|
@ -116,9 +116,9 @@ public class MapPoiTypes {
|
|||
}
|
||||
|
||||
public PoiType getPoiTypeByKey(String name) {
|
||||
for(PoiCategory pc : categories) {
|
||||
for (PoiCategory pc : categories) {
|
||||
PoiType pt = pc.getPoiTypeByKeyName(name);
|
||||
if(pt != null && !pt.isReference()) {
|
||||
if (pt != null && !pt.isReference()) {
|
||||
return pt;
|
||||
}
|
||||
}
|
||||
|
@ -126,17 +126,17 @@ public class MapPoiTypes {
|
|||
}
|
||||
|
||||
public AbstractPoiType getAnyPoiTypeByKey(String name) {
|
||||
for(PoiCategory pc : categories) {
|
||||
if(pc.getKeyName().equals(name)) {
|
||||
for (PoiCategory pc : categories) {
|
||||
if (pc.getKeyName().equals(name)) {
|
||||
return pc;
|
||||
}
|
||||
for(PoiFilter pf : pc.getPoiFilters()) {
|
||||
if(pf.getKeyName().equals(name)) {
|
||||
for (PoiFilter pf : pc.getPoiFilters()) {
|
||||
if (pf.getKeyName().equals(name)) {
|
||||
return pf;
|
||||
}
|
||||
}
|
||||
PoiType pt = pc.getPoiTypeByKeyName(name);
|
||||
if(pt != null && !pt.isReference()) {
|
||||
if (pt != null && !pt.isReference()) {
|
||||
return pt;
|
||||
}
|
||||
}
|
||||
|
@ -145,18 +145,18 @@ public class MapPoiTypes {
|
|||
|
||||
public Map<String, PoiType> getAllTranslatedNames(boolean skipNonEditable) {
|
||||
Map<String, PoiType> translation = new HashMap<String, PoiType>();
|
||||
for(PoiCategory pc : categories) {
|
||||
if(skipNonEditable && pc.isNotEditableOsm()) {
|
||||
for (PoiCategory pc : categories) {
|
||||
if (skipNonEditable && pc.isNotEditableOsm()) {
|
||||
continue;
|
||||
}
|
||||
for(PoiType pt : pc.getPoiTypes()) {
|
||||
if(pt.isReference() ) {
|
||||
for (PoiType pt : pc.getPoiTypes()) {
|
||||
if (pt.isReference()) {
|
||||
continue;
|
||||
}
|
||||
if(pt.getBaseLangType() != null) {
|
||||
if (pt.getBaseLangType() != null) {
|
||||
continue;
|
||||
}
|
||||
if(skipNonEditable && pt.isNotEditableOsm()) {
|
||||
if (skipNonEditable && pt.isNotEditableOsm()) {
|
||||
continue;
|
||||
}
|
||||
translation.put(pt.getKeyName().replace('_', ' ').toLowerCase(), pt);
|
||||
|
@ -169,7 +169,7 @@ public class MapPoiTypes {
|
|||
public List<AbstractPoiType> getAllTypesTranslatedNames(StringMatcher matcher) {
|
||||
List<AbstractPoiType> tm = new ArrayList<AbstractPoiType>();
|
||||
for (PoiCategory pc : categories) {
|
||||
if(pc == otherMapCategory) {
|
||||
if (pc == otherMapCategory) {
|
||||
continue;
|
||||
}
|
||||
addIf(tm, pc, matcher);
|
||||
|
@ -177,7 +177,7 @@ public class MapPoiTypes {
|
|||
addIf(tm, pt, matcher);
|
||||
}
|
||||
for (PoiType pt : pc.getPoiTypes()) {
|
||||
if (pt.isReference()){
|
||||
if (pt.isReference()) {
|
||||
continue;
|
||||
}
|
||||
addIf(tm, pt, matcher);
|
||||
|
@ -188,7 +188,7 @@ public class MapPoiTypes {
|
|||
}
|
||||
|
||||
private void addIf(List<AbstractPoiType> tm, AbstractPoiType pc, StringMatcher matcher) {
|
||||
if(matcher.matches(pc.getTranslation()) || matcher.matches(pc.getKeyName().replace('_', ' '))) {
|
||||
if (matcher.matches(pc.getTranslation()) || matcher.matches(pc.getKeyName().replace('_', ' '))) {
|
||||
tm.add(pc);
|
||||
}
|
||||
List<PoiType> additionals = pc.getPoiAdditionals();
|
||||
|
@ -218,18 +218,18 @@ public class MapPoiTypes {
|
|||
}
|
||||
|
||||
public PoiCategory getPoiCategoryByName(String name, boolean create) {
|
||||
if(name.equals("leisure") && !create) {
|
||||
if (name.equals("leisure") && !create) {
|
||||
name = "entertainment";
|
||||
}
|
||||
if(name.equals("historic") && !create) {
|
||||
if (name.equals("historic") && !create) {
|
||||
name = "tourism";
|
||||
}
|
||||
for(PoiCategory p : categories ) {
|
||||
if(p.getKeyName().equalsIgnoreCase(name)) {
|
||||
for (PoiCategory p : categories) {
|
||||
if (p.getKeyName().equalsIgnoreCase(name)) {
|
||||
return p;
|
||||
}
|
||||
}
|
||||
if(create) {
|
||||
if (create) {
|
||||
PoiCategory lastCategory = new PoiCategory(this, name, categories.size());
|
||||
categories.add(lastCategory);
|
||||
return lastCategory;
|
||||
|
@ -246,6 +246,7 @@ public class MapPoiTypes {
|
|||
sortList(categories);
|
||||
|
||||
}
|
||||
|
||||
public void init() {
|
||||
init(null);
|
||||
}
|
||||
|
@ -255,7 +256,7 @@ public class MapPoiTypes {
|
|||
long time = System.currentTimeMillis();
|
||||
List<PoiType> referenceTypes = new ArrayList<PoiType>();
|
||||
final Map<String, PoiType> allTypes = new LinkedHashMap<String, PoiType>();
|
||||
if(resourceName != null) {
|
||||
if (resourceName != null) {
|
||||
this.resourceName = resourceName;
|
||||
}
|
||||
try {
|
||||
|
@ -294,24 +295,24 @@ public class MapPoiTypes {
|
|||
}
|
||||
lastCategory.addPoiType(tp);
|
||||
} else if (name.equals("poi_additional")) {
|
||||
if(lastCategory == null) {
|
||||
if (lastCategory == null) {
|
||||
lastCategory = getOtherMapCategory();
|
||||
}
|
||||
PoiType baseType = parsePoiAdditional(parser, lastCategory, lastFilter, lastType, null, null);
|
||||
if("true".equals(parser.getAttributeValue("", "lang"))) {
|
||||
for(String lng : MapRenderingTypes.langs) {
|
||||
if ("true".equals(parser.getAttributeValue("", "lang"))) {
|
||||
for (String lng : MapRenderingTypes.langs) {
|
||||
parsePoiAdditional(parser, lastCategory, lastFilter, lastType, lng, baseType);
|
||||
}
|
||||
parsePoiAdditional(parser, lastCategory, lastFilter, lastType, "en", baseType);
|
||||
}
|
||||
|
||||
} else if (name.equals("poi_type")) {
|
||||
if(lastCategory == null) {
|
||||
if (lastCategory == null) {
|
||||
lastCategory = getOtherMapCategory();
|
||||
}
|
||||
lastType = parsePoiType(allTypes, parser, lastCategory, lastFilter, null, null);
|
||||
if("true".equals(parser.getAttributeValue("", "lang"))) {
|
||||
for(String lng : MapRenderingTypes.langs) {
|
||||
if ("true".equals(parser.getAttributeValue("", "lang"))) {
|
||||
for (String lng : MapRenderingTypes.langs) {
|
||||
parsePoiType(allTypes, parser, lastCategory, lastFilter, lng, lastType);
|
||||
}
|
||||
}
|
||||
|
@ -359,11 +360,11 @@ public class MapPoiTypes {
|
|||
private PoiType parsePoiAdditional(XmlPullParser parser, PoiCategory lastCategory, PoiFilter lastFilter,
|
||||
PoiType lastType, String lang, PoiType langBaseType) {
|
||||
String oname = parser.getAttributeValue("", "name");
|
||||
if(lang != null) {
|
||||
if (lang != null) {
|
||||
oname += ":" + lang;
|
||||
}
|
||||
String otag = parser.getAttributeValue("", "tag");
|
||||
if(lang != null) {
|
||||
if (lang != null) {
|
||||
otag += ":" + lang;
|
||||
}
|
||||
PoiType tp = new PoiType(this, lastCategory, oname);
|
||||
|
@ -396,12 +397,12 @@ public class MapPoiTypes {
|
|||
private PoiType parsePoiType(final Map<String, PoiType> allTypes, XmlPullParser parser, PoiCategory lastCategory,
|
||||
PoiFilter lastFilter, String lang, PoiType langBaseType) {
|
||||
String oname = parser.getAttributeValue("", "name");
|
||||
if(lang != null) {
|
||||
if (lang != null) {
|
||||
oname += ":" + lang;
|
||||
}
|
||||
PoiType tp = new PoiType(this, lastCategory, oname);
|
||||
String otag = parser.getAttributeValue("", "tag");
|
||||
if(lang != null) {
|
||||
if (lang != null) {
|
||||
otag += ":" + lang;
|
||||
}
|
||||
tp.setBaseLangType(langBaseType);
|
||||
|
@ -424,7 +425,7 @@ public class MapPoiTypes {
|
|||
}
|
||||
allTypes.put(tp.getKeyName(), tp);
|
||||
lastCategory.addPoiType(tp);
|
||||
if("true".equals(parser.getAttributeValue("", "basemap"))) {
|
||||
if ("true".equals(parser.getAttributeValue("", "basemap"))) {
|
||||
lastCategory.addBasemapPoi(tp);
|
||||
}
|
||||
return tp;
|
||||
|
@ -432,7 +433,7 @@ public class MapPoiTypes {
|
|||
|
||||
private void findDefaultOtherCategory() {
|
||||
PoiCategory pc = getPoiCategoryByName("user_defined_other");
|
||||
if(pc == null) {
|
||||
if (pc == null) {
|
||||
throw new IllegalArgumentException("No poi category other");
|
||||
}
|
||||
otherCategory = pc;
|
||||
|
@ -440,7 +441,7 @@ public class MapPoiTypes {
|
|||
|
||||
public List<PoiCategory> getCategories(boolean includeMapCategory) {
|
||||
ArrayList<PoiCategory> lst = new ArrayList<PoiCategory>(categories);
|
||||
if(!includeMapCategory) {
|
||||
if (!includeMapCategory) {
|
||||
lst.remove(getOtherMapCategory());
|
||||
}
|
||||
return lst;
|
||||
|
@ -449,9 +450,9 @@ public class MapPoiTypes {
|
|||
|
||||
private static void print(MapPoiTypes df) {
|
||||
List<PoiCategory> pc = df.getCategories(true);
|
||||
for(PoiCategory p : pc) {
|
||||
for (PoiCategory p : pc) {
|
||||
System.out.println("Category " + p.getKeyName());
|
||||
for(PoiFilter f : p.getPoiFilters()) {
|
||||
for (PoiFilter f : p.getPoiFilters()) {
|
||||
System.out.println(" Filter " + f.getKeyName());
|
||||
print(" ", f);
|
||||
}
|
||||
|
@ -497,9 +498,9 @@ public class MapPoiTypes {
|
|||
}
|
||||
|
||||
private static void print(String indent, PoiFilter f) {
|
||||
for(PoiType pt : f.getPoiTypes()) {
|
||||
for (PoiType pt : f.getPoiTypes()) {
|
||||
System.out.println(indent + " Type " + pt.getKeyName() +
|
||||
(pt.isReference() ? (" -> " + pt.getReferenceType().getCategory().getKeyName() ): ""));
|
||||
(pt.isReference() ? (" -> " + pt.getReferenceType().getCategory().getKeyName()) : ""));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -509,7 +510,7 @@ public class MapPoiTypes {
|
|||
// print(DEFAULT_INSTANCE) ;
|
||||
// System.out.println("-----------------");
|
||||
List<PoiFilter> lf = DEFAULT_INSTANCE.getTopVisibleFilters();
|
||||
for(PoiFilter l : lf) {
|
||||
for (PoiFilter l : lf) {
|
||||
System.out.println("----------------- " + l.getKeyName());
|
||||
// print("", l);
|
||||
Map<PoiCategory, LinkedHashSet<String>> m =
|
||||
|
@ -520,9 +521,9 @@ public class MapPoiTypes {
|
|||
}
|
||||
|
||||
public String getTranslation(AbstractPoiType abstractPoiType) {
|
||||
if(poiTranslator != null) {
|
||||
if (poiTranslator != null) {
|
||||
String translation = poiTranslator.getTranslation(abstractPoiType);
|
||||
if(!Algorithms.isEmpty(translation)) {
|
||||
if (!Algorithms.isEmpty(translation)) {
|
||||
return translation;
|
||||
}
|
||||
}
|
||||
|
@ -538,17 +539,17 @@ public class MapPoiTypes {
|
|||
Map<String, PoiType> poiTypesByTag = new LinkedHashMap<String, PoiType>();
|
||||
|
||||
public void initPoiTypesByTag() {
|
||||
if(!poiTypesByTag.isEmpty()) {
|
||||
if (!poiTypesByTag.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
for(PoiCategory poic : categories) {
|
||||
for(PoiType p : poic.getPoiTypes()) {
|
||||
for (PoiCategory poic : categories) {
|
||||
for (PoiType p : poic.getPoiTypes()) {
|
||||
initPoiType(p);
|
||||
for(PoiType pts : p.getPoiAdditionals()) {
|
||||
for (PoiType pts : p.getPoiAdditionals()) {
|
||||
initPoiType(pts);
|
||||
}
|
||||
}
|
||||
for(PoiType p : poic.getPoiAdditionals()) {
|
||||
for (PoiType p : poic.getPoiAdditionals()) {
|
||||
initPoiType(p);
|
||||
}
|
||||
}
|
||||
|
@ -556,15 +557,15 @@ public class MapPoiTypes {
|
|||
|
||||
|
||||
private void initPoiType(PoiType p) {
|
||||
if(!p.isReference()) {
|
||||
if (!p.isReference()) {
|
||||
String key = null;
|
||||
if(p.isAdditional()) {
|
||||
if (p.isAdditional()) {
|
||||
key = p.isText() ? p.getOsmTag() :
|
||||
(p.getOsmTag() + "/" + p.getOsmValue());
|
||||
} else {
|
||||
key = p.getOsmTag() + "/" + p.getOsmValue();
|
||||
}
|
||||
if(poiTypesByTag.containsKey(key)) {
|
||||
if (poiTypesByTag.containsKey(key)) {
|
||||
throw new UnsupportedOperationException("!! Duplicate poi type " + key);
|
||||
}
|
||||
poiTypesByTag.put(key, p);
|
||||
|
@ -574,50 +575,50 @@ public class MapPoiTypes {
|
|||
|
||||
public Amenity parseAmenity(String tag, String val, boolean relation, Map<String, String> otherTags) {
|
||||
initPoiTypesByTag();
|
||||
PoiType pt = poiTypesByTag.get(tag+"/"+val);
|
||||
if(pt == null) {
|
||||
pt = poiTypesByTag.get(tag);
|
||||
PoiType pt = poiTypesByTag.get(tag + "/" + val);
|
||||
if (pt == null) {
|
||||
pt = poiTypesByTag.get(tag);
|
||||
}
|
||||
if(pt == null || pt.isAdditional()) {
|
||||
if (pt == null || pt.isAdditional()) {
|
||||
return null;
|
||||
}
|
||||
if(!Algorithms.isEmpty(pt.getOsmTag2())) {
|
||||
if(!Algorithms.objectEquals(otherTags.get(pt.getOsmTag2()), pt.getOsmValue2())) {
|
||||
if (!Algorithms.isEmpty(pt.getOsmTag2())) {
|
||||
if (!Algorithms.objectEquals(otherTags.get(pt.getOsmTag2()), pt.getOsmValue2())) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
if(pt.getCategory() == getOtherMapCategory()) {
|
||||
if (pt.getCategory() == getOtherMapCategory()) {
|
||||
return null;
|
||||
}
|
||||
String nameValue = otherTags.get("name");
|
||||
if(pt.getNameTag() != null) {
|
||||
nameValue = otherTags.get(pt.getNameTag());
|
||||
if (pt.getNameTag() != null) {
|
||||
nameValue = otherTags.get(pt.getNameTag());
|
||||
}
|
||||
boolean hasName = !Algorithms.isEmpty(nameValue);
|
||||
if(!hasName && pt.isNameOnly()) {
|
||||
if (!hasName && pt.isNameOnly()) {
|
||||
return null;
|
||||
}
|
||||
if(relation && !pt.isRelation()) {
|
||||
if (relation && !pt.isRelation()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Amenity a = new Amenity();
|
||||
a.setType(pt.getCategory());
|
||||
a.setSubType(pt.getKeyName());
|
||||
if(pt.getNameTag() != null) {
|
||||
if (pt.getNameTag() != null) {
|
||||
a.setName(nameValue);
|
||||
}
|
||||
// additional info
|
||||
Iterator<Entry<String, String>> it = otherTags.entrySet().iterator();
|
||||
while(it.hasNext()) {
|
||||
while (it.hasNext()) {
|
||||
Entry<String, String> e = it.next();
|
||||
String otag = e.getKey();
|
||||
if(!otag.equals(tag) && !otag.equals("name")) {
|
||||
PoiType pat = poiTypesByTag.get(otag+"/"+e.getValue());
|
||||
if(pat == null) {
|
||||
pat = poiTypesByTag.get(otag);
|
||||
if (!otag.equals(tag) && !otag.equals("name")) {
|
||||
PoiType pat = poiTypesByTag.get(otag + "/" + e.getValue());
|
||||
if (pat == null) {
|
||||
pat = poiTypesByTag.get(otag);
|
||||
}
|
||||
if(pat != null && pat.isAdditional()) {
|
||||
if (pat != null && pat.isAdditional()) {
|
||||
a.setAdditionalInfo(pat.getKeyName(), e.getValue());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue