From c6f259edea9efcbfad8562271677b4bf2ad3f720 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Fri, 11 Aug 2023 15:23:33 +0300 Subject: [PATCH 1/3] [core] Add tests and comments to housenumbers/names handling Signed-off-by: Konstantin Pastbin --- coding/value_opt_string.hpp | 1 + data/mapcss-mapping.csv | 4 +- .../generator_tests/feature_builder_test.cpp | 50 +++++++++++++++++++ generator/osm2type.cpp | 9 ++++ indexer/drawing_rule_def.hpp | 3 +- indexer/feature_data.cpp | 10 +++- 6 files changed, 72 insertions(+), 5 deletions(-) diff --git a/coding/value_opt_string.hpp b/coding/value_opt_string.hpp index acdb274483..0fcccc7659 100644 --- a/coding/value_opt_string.hpp +++ b/coding/value_opt_string.hpp @@ -10,6 +10,7 @@ #include #include +/// If a string holds an uint value then stores it as a varint, otherwise as a string. class StringNumericOptimal { public: diff --git a/data/mapcss-mapping.csv b/data/mapcss-mapping.csv index af55bb0959..2ddec9d86f 100644 --- a/data/mapcss-mapping.csv +++ b/data/mapcss-mapping.csv @@ -7,8 +7,8 @@ # - type name: "highway|bus_stop" ("|" is converted to "-" internally) # - mapcss selectors for tags: "[highway=bus_stop]", multiple selectors are separated with commas # - "x" for a deprecated type or an empty cell otherwise -# - primary title tag (usually "name") -# - secondary title tag (usually "int_name") +# - primary title tag (usually "name"), IGNORED at the moment +# - secondary title tag (usually "int_name"), IGNORED at the moment # - type id, sequential starting from 1 # - optional: a replacement type for a deprecated one # A "mandatory" mapcss selector like [fee?] or [fee] matches all tag values except [fee=no], diff --git a/generator/generator_tests/feature_builder_test.cpp b/generator/generator_tests/feature_builder_test.cpp index 8b487250b7..294ea10f0c 100644 --- a/generator/generator_tests/feature_builder_test.cpp +++ b/generator/generator_tests/feature_builder_test.cpp @@ -2,6 +2,8 @@ #include "types_helper.hpp" +#include "coding/string_utf8_multilang.hpp" + #include "generator/feature_builder.hpp" #include "generator/generator_tests_support/test_with_classificator.hpp" #include "generator/geometry_holder.hpp" @@ -218,6 +220,54 @@ UNIT_CLASS_TEST(TestWithClassificator, FBuilder_ParamsParsing) TEST_EQUAL(params.house.Get(), "0", ()); } +UNIT_CLASS_TEST(TestWithClassificator, FBuilder_Housenumbers) +{ + FeatureBuilderParams params; + std::string_view name; + + params.MakeZero(); + name = {}; + params.AddHouseName("75a"); // addr:housenumber + params.AddHouseName("Sandpiper"); // addr:housename + TEST_EQUAL(params.house.Get(), "75a", ()); + TEST(params.name.GetString(StringUtf8Multilang::kDefaultCode, name), ()); + TEST_EQUAL(name, "Sandpiper", ()); + + params.MakeZero(); + name = {}; + params.AddHouseName("75"); // addr:housenumber + params.AddHouseName("Bld 2"); // addr:housename + TEST_EQUAL(params.house.Get(), "75", ()); + TEST(params.name.GetString(StringUtf8Multilang::kDefaultCode, name), ()); + TEST_EQUAL(name, "Bld 2", ()); + + params.MakeZero(); + name = {}; + params.AddHouseName("75"); // addr:housenumber + params.AddHouseName("2"); // addr:housename + TEST_EQUAL(params.house.Get(), "2", ()); + TEST(params.name.GetString(StringUtf8Multilang::kDefaultCode, name), ()); + TEST_EQUAL(name, "75", ()); + + params.MakeZero(); + name = {}; + params.name.AddString(StringUtf8Multilang::kDefaultCode, "The Mansion"); + params.AddHouseName("75a"); // addr:housenumber + params.AddHouseName("Sandpiper"); // addr:housename + TEST_EQUAL(params.house.Get(), "75a", ()); + TEST(params.name.GetString(StringUtf8Multilang::kDefaultCode, name), ()); + TEST_EQUAL(name, "The Mansion", ()); + + params.MakeZero(); + name = {}; + params.AddHouseName("75a"); // addr:housenumber + params.AddHouseName("2"); // addr:housename + params.name.AddString(StringUtf8Multilang::kDefaultCode, "The Mansion"); + TEST_EQUAL(params.house.Get(), "2", ()); + TEST(params.name.GetString(StringUtf8Multilang::kDefaultCode, name), ()); + TEST_EQUAL(name, "The Mansion", ()); +} + UNIT_CLASS_TEST(TestWithClassificator, FBuilder_SerializeLocalityObjectForBuildingPoint) { FeatureBuilder fb; diff --git a/generator/osm2type.cpp b/generator/osm2type.cpp index 2177fd6dd2..f91c1cb07c 100644 --- a/generator/osm2type.cpp +++ b/generator/osm2type.cpp @@ -922,6 +922,14 @@ void GetNameAndType(OsmElement * p, FeatureBuilderParams & params, // Stage3: Process base feature tags. TagProcessor(p).ApplyRules({ + // Store a housenumber or a housename. + // - values having at least 1 digit go into the "house" addinfo; + // - a fully numeric housename will replace a housenumber, which will be stored in the empty "name"; + // - values w/o digits are stored in the empty "name" only. + // E.g. if the "name" was empty before then + // housename=2, housenumber=34a --> "house" == 2 and "name" == 34a, + // housename=Bld 2, housenumber=34a --> "house" == 34a and "name" == Bld 2, + // housename=Sandpiper, housenumber=12 --> "house" == 12 and "name" == Sandpiper. {"addr:housenumber", "*", [¶ms](string & k, string & v) { params.AddHouseName(v); @@ -934,6 +942,7 @@ void GetNameAndType(OsmElement * p, FeatureBuilderParams & params, k.clear(); v.clear(); }}, + {"addr:street", "*", [¶ms](string & k, string & v) { params.AddStreet(v); diff --git a/indexer/drawing_rule_def.hpp b/indexer/drawing_rule_def.hpp index 2c8ac62870..12cf3067a6 100644 --- a/indexer/drawing_rule_def.hpp +++ b/indexer/drawing_rule_def.hpp @@ -38,7 +38,8 @@ int32_t constexpr kOverlaysMaxPriority = 10000; /// drawing type of rule - can be one of ... enum rule_type_t { line, area, symbol, caption, circle, pathtext, waymarker, shield, count_of_rules }; - /// text field type - can be one of ... + /// Text field type ("text: *"). Only "addr:housenumber" and "addr:housename" are recognised, + /// all other values like "int_name", "ref", etc. are ignored. enum text_type_t { text_type_name = 0, text_type_housename, text_type_housenumber }; typedef buffer_vector KeysT; diff --git a/indexer/feature_data.cpp b/indexer/feature_data.cpp index 2294222fe2..75e6e955a2 100644 --- a/indexer/feature_data.cpp +++ b/indexer/feature_data.cpp @@ -301,6 +301,10 @@ bool FeatureParams::AddName(string_view lang, string_view s) return true; } +/// Store a housenumber or a housename. +/// - strings having at least 1 digit go into the "house" addinfo; +/// - strings w/o digits are stored in the empty "name"; +/// - if the "house" is set already then a new all-numeric value will replace it and push it into the empty "name". bool FeatureParams::AddHouseName(string const & s) { if (IsDummyName(s) || name.FindString(s) != StringUtf8Multilang::kUnsupportedLanguageCode) @@ -310,8 +314,8 @@ bool FeatureParams::AddHouseName(string const & s) if (house.IsEmpty() && AddHouseNumber(s)) return true; - // If we got a clear number, replace the house number with it. - // Example: housename=16th Street, housenumber=34 + // If we got a true number, replace the previous housenumber with it + // and put the previous one into the empty name. if (strings::IsASCIINumeric(s)) { string housename(house.Get()); @@ -336,6 +340,7 @@ bool FeatureParams::AddHouseName(string const & s) return false; } +/// Store a new housenumber (must have at least one digit) into the "house" addinfo. bool FeatureParams::AddHouseNumber(string houseNumber) { ASSERT(!houseNumber.empty(), ("This check should be done by the caller.")); @@ -355,6 +360,7 @@ bool FeatureParams::AddHouseNumber(string houseNumber) ++i; houseNumber.erase(0, i); + // The housenumber must have one digit at least. if (any_of(houseNumber.cbegin(), houseNumber.cend(), &strings::IsASCIIDigit)) { house.Set(houseNumber); -- 2.45.3 From e3f24408bd0ee4dda53301ab8d7552be16f4da80 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Sat, 12 Aug 2023 01:12:12 +0300 Subject: [PATCH 2/3] [styles] Fix entrances' secondary caption style Signed-off-by: Konstantin Pastbin --- data/styles/clear/include/Basemap_label.mapcss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/data/styles/clear/include/Basemap_label.mapcss b/data/styles/clear/include/Basemap_label.mapcss index 457df7222e..ebd6c59dc1 100644 --- a/data/styles/clear/include/Basemap_label.mapcss +++ b/data/styles/clear/include/Basemap_label.mapcss @@ -618,6 +618,10 @@ node|z18-[entrance=main], node|z18-[entrance=exit], node|z18-[amenity=loading_dock], {text-color: @building_label;} +node|z19-[entrance]::flats, +node|z18-[entrance=main]::flats, +node|z18-[entrance=exit]::flats, +{text-color: @building_label;} /* 8.1 Pier */ area|z15-[waterway=dam], @@ -669,7 +673,7 @@ node|z18-[entrance=exit], node|z18-[entrance=main], {icon-image: main_entrance-s.svg;font-size: 10;text: ref;text-offset-x: 1;} node|z19-[entrance]::flats -{text: "addr:flats";font-size: 12;text-offset-y: 10;} +{text: "addr:flats";font-size: 10;text-offset-y: 10;} /* 8.3 Airports */ area|z14-[aeroway=terminal] -- 2.45.3 From dbb2c8d3b4b7b8ae3272f7fb1cbae5f55a6c9835 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Thu, 7 Sep 2023 11:48:16 +0300 Subject: [PATCH 3/3] [styles] Regenerate for entrances' captions Signed-off-by: Konstantin Pastbin --- data/drules_proto.bin | Bin 356469 -> 356484 bytes data/drules_proto.txt | 9 ++++++--- data/drules_proto_clear.bin | Bin 357138 -> 357153 bytes data/drules_proto_clear.txt | 9 ++++++--- data/drules_proto_dark.bin | Bin 355440 -> 355455 bytes data/drules_proto_dark.txt | 9 ++++++--- 6 files changed, 18 insertions(+), 9 deletions(-) diff --git a/data/drules_proto.bin b/data/drules_proto.bin index 311ac3e0df9ce6843dd4eed76d1b05eb68831b6f..2dc4080ac271fd570b0a3da090eb1d26aaa95f83 100644 GIT binary patch delta 186 zcmezRK(ytd=!VP3dE>b_Qu9iR67!N%g@PwPI4&b&#wEbPC2;FdE3*Ql5pz*$ngyef zI8m%> delta 152 zcmZp9DEjq*=!VP3d84>EQu9iR67!N%h5RNzI4&b@$R)tRC2;FdE3*Ql5pz*$ngyef z5C_j>i4!u6lP8;=@MQFwTz^6Wuezy|FP!jV^qwqzQWBTC=75v!0Vf%OmxRjLDhDJWc&Mgq4K3*itJpOLU7RK5YCC0gPG%_0O98|CpCq08qaO7k_SI iW?nqZ1weyV;WwbU>UewAaYi6!0%GRvRmWLotOfuky+*76 delta 131 zcmZ4ZOmxyS(G5Juc%!&DQu9iR67!N%h5RN<9+P1-oP6<^FtZQ`&*VTLZ}Q~4W1do8 z9KuS%Tx_WonI*c#5+64HhX6(`RK-&#a~}6%_T~_tEPGrWVNi4D@%GN+j6lo;#LU|} JkF(5J4FK3rGdlnP diff --git a/data/drules_proto_clear.txt b/data/drules_proto_clear.txt index dac8f19843..fa91ca8270 100644 --- a/data/drules_proto_clear.txt +++ b/data/drules_proto_clear.txt @@ -15196,7 +15196,8 @@ cont { is_optional: true } secondary { - height: 12 + height: 10 + color: 6381914 offset_y: 10 text: "addr:flats" is_optional: true @@ -15239,7 +15240,8 @@ cont { is_optional: true } secondary { - height: 12 + height: 10 + color: 6381914 offset_y: 10 text: "addr:flats" is_optional: true @@ -15282,7 +15284,8 @@ cont { is_optional: true } secondary { - height: 12 + height: 10 + color: 6381914 offset_y: 10 text: "addr:flats" is_optional: true diff --git a/data/drules_proto_dark.bin b/data/drules_proto_dark.bin index 2141fa6461d291d1a8e1f94b31ba2e9f8b804dc9..3786d9160c5e25c648eebe939524b98b63d60809 100644 GIT binary patch delta 206 zcmexxL-hX*(G6#g^2T#t^ z;!u&vJjY}hXH3>S=4tBBA*>|K#gDAsDIYv{l~n_0)YBOxcGAu iGxOqME&v*|3cmr(R>#||jxz!=6A&|Rw>r*ZwiE!cwMR|> delta 131 zcmex=L-fN9(G6#g@) z%8Nr-NtlZ*wIZ`bw^-uC#{Uq&sD-L{>g1EhyqLW?geTuUCXO(u+4Fe2=W#|LW&&d7 L?ViV3%$5QGmT@z$ diff --git a/data/drules_proto_dark.txt b/data/drules_proto_dark.txt index 692f1999f6..6b5a450b24 100644 --- a/data/drules_proto_dark.txt +++ b/data/drules_proto_dark.txt @@ -15196,7 +15196,8 @@ cont { is_optional: true } secondary { - height: 12 + height: 10 + color: 5592405 offset_y: 10 text: "addr:flats" is_optional: true @@ -15239,7 +15240,8 @@ cont { is_optional: true } secondary { - height: 12 + height: 10 + color: 5592405 offset_y: 10 text: "addr:flats" is_optional: true @@ -15282,7 +15284,8 @@ cont { is_optional: true } secondary { - height: 12 + height: 10 + color: 5592405 offset_y: 10 text: "addr:flats" is_optional: true -- 2.45.3