From 8fe8dbe568423fb2fcd8c9c9c543c26124b34846 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Mon, 16 Sep 2019 15:05:27 +0300 Subject: [PATCH] [map] Moved FeaturesFetcher out of namespace model (thus removing this namespace). Alternatives considered were: namespace feature namespace map namespace utils --- drape_frontend/gui/skin.cpp | 2 +- generator/generator_tests/altitude_test.cpp | 3 +- .../MWMCircularProgressView.mm | 6 +- .../Views/MWMNavigationInfoView.mm | 4 +- .../Views/RoutePreview/MWMRoutePreview.mm | 2 +- .../Maps/Core/Location/MWMLocationManager.mm | 2 +- .../Maps/UI/Editor/MWMEditorViewController.mm | 4 +- .../PlacePageLayout/MWMPlacePageLayout.mm | 2 +- iphone/Maps/main.mm | 2 +- map/benchmark_tool/features_loading.cpp | 4 +- map/features_fetcher.cpp | 48 ++---- map/features_fetcher.hpp | 129 +++++++-------- map/framework.cpp | 152 +++++++++--------- map/framework.hpp | 14 +- map/map_tests/check_mwms.cpp | 2 +- map/map_tests/gps_track_collection_test.cpp | 6 +- map/mwm_tests/multithread_mwm_test.cpp | 2 +- map/mwm_tests/mwm_foreach_test.cpp | 2 +- map/mwm_tests/mwm_index_test.cpp | 2 +- map/traffic_manager.hpp | 7 +- openlr/router.hpp | 11 +- platform/marketing_service.hpp | 3 +- platform/marketing_service_dummy.cpp | 2 + platform/marketing_service_ios.mm | 2 +- .../routing_test_tools.cpp | 4 +- .../routing_test_tools.hpp | 4 +- software_renderer/software_renderer.hpp | 5 +- storage/storage_tests/storage_tests.cpp | 1 - traffic/pytraffic/bindings.cpp | 5 +- traffic/traffic_info.hpp | 5 +- xcode/map/map.xcodeproj/project.pbxproj | 16 +- 31 files changed, 216 insertions(+), 237 deletions(-) diff --git a/drape_frontend/gui/skin.cpp b/drape_frontend/gui/skin.cpp index a0b8fe27dd..310c8a54e5 100644 --- a/drape_frontend/gui/skin.cpp +++ b/drape_frontend/gui/skin.cpp @@ -203,7 +203,7 @@ private: EWidget m_currentElement = WIDGET_RULER; ResolverParser m_parser; - map > & m_skin; + std::map> & m_skin; }; } diff --git a/generator/generator_tests/altitude_test.cpp b/generator/generator_tests/altitude_test.cpp index d79dda1fef..8de17c8757 100644 --- a/generator/generator_tests/altitude_test.cpp +++ b/generator/generator_tests/altitude_test.cpp @@ -26,6 +26,7 @@ #include "defines.hpp" +#include #include using namespace feature; @@ -69,7 +70,7 @@ TPoint3DList const kRoad4 = {{-10, 1, -1}, {-20, 6, -100}, {-20, -11, -110}}; class MockAltitudeGetter : public AltitudeGetter { public: - using TMockAltitudes = map; + using TMockAltitudes = std::map; explicit MockAltitudeGetter(vector const & roads) { diff --git a/iphone/Maps/Classes/CustomViews/CircularProgress/MWMCircularProgressView.mm b/iphone/Maps/Classes/CustomViews/CircularProgress/MWMCircularProgressView.mm index cf83f79e7e..240d6caf81 100644 --- a/iphone/Maps/Classes/CustomViews/CircularProgress/MWMCircularProgressView.mm +++ b/iphone/Maps/Classes/CustomViews/CircularProgress/MWMCircularProgressView.mm @@ -3,7 +3,7 @@ #import "SwiftBridge.h" #import "UIImageView+Coloring.h" -#include "std/map.hpp" +#include namespace { @@ -32,8 +32,8 @@ CGFloat angleWithProgress(CGFloat progress) { return 2.0 * M_PI * progress - M_P @implementation MWMCircularProgressView { - map m_buttonColoring; - map m_images; + std::map m_buttonColoring; + std::map m_images; } - (void)awakeFromNib diff --git a/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/MWMNavigationInfoView.mm b/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/MWMNavigationInfoView.mm index fe73eaa8d2..67bbc309a7 100644 --- a/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/MWMNavigationInfoView.mm +++ b/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/MWMNavigationInfoView.mm @@ -28,7 +28,7 @@ CGFloat const kShiftedTurnsTopOffset = 8; NSTimeInterval constexpr kCollapseSearchTimeout = 5.0; -map const kSearchStateButtonImageNames{ +std::map const kSearchStateButtonImageNames{ {NavigationSearchState::Maximized, @"ic_routing_search"}, {NavigationSearchState::MinimizedNormal, @"ic_routing_search"}, {NavigationSearchState::MinimizedSearch, @"ic_routing_search_off"}, @@ -38,7 +38,7 @@ map const kSearchStateButtonImageNames{ {NavigationSearchState::MinimizedFood, @"ic_routing_food_off"}, {NavigationSearchState::MinimizedATM, @"ic_routing_atm_off"}}; -map const kSearchButtonRequest{ +std::map const kSearchButtonRequest{ {NavigationSearchState::MinimizedGas, L(@"fuel")}, {NavigationSearchState::MinimizedParking, L(@"parking")}, {NavigationSearchState::MinimizedEat, L(@"eat")}, diff --git a/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/RoutePreview/MWMRoutePreview.mm b/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/RoutePreview/MWMRoutePreview.mm index 6cab15e805..a4b8d556fe 100644 --- a/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/RoutePreview/MWMRoutePreview.mm +++ b/iphone/Maps/Classes/CustomViews/NavigationDashboard/Views/RoutePreview/MWMRoutePreview.mm @@ -33,7 +33,7 @@ static CGFloat const kDrivingOptionsHeight = 48; @implementation MWMRoutePreview { - map m_progresses; + std::map m_progresses; } - (void)awakeFromNib diff --git a/iphone/Maps/Core/Location/MWMLocationManager.mm b/iphone/Maps/Core/Location/MWMLocationManager.mm index a627d1c9a6..f3dff485a1 100644 --- a/iphone/Maps/Core/Location/MWMLocationManager.mm +++ b/iphone/Maps/Core/Location/MWMLocationManager.mm @@ -85,7 +85,7 @@ struct GeoModeSettings DesiredAccuracy accuracy; }; -map const kGeoSettings{ +std::map const kGeoSettings{ {GeoMode::Pending, {.distanceFilter = kCLDistanceFilterNone, .accuracy = {.charging = kCLLocationAccuracyBestForNavigation, diff --git a/iphone/Maps/UI/Editor/MWMEditorViewController.mm b/iphone/Maps/UI/Editor/MWMEditorViewController.mm index ada76e6eb1..bf545d35c6 100644 --- a/iphone/Maps/UI/Editor/MWMEditorViewController.mm +++ b/iphone/Maps/UI/Editor/MWMEditorViewController.mm @@ -61,7 +61,7 @@ vector const kSectionAddressCellTypes{ vector const kSectionNoteCellTypes{MWMEditorCellTypeNote}; vector const kSectionButtonCellTypes{MWMEditorCellTypeReportButton}; -using MWMEditorCellTypeClassMap = map; +using MWMEditorCellTypeClassMap = std::map; MWMEditorCellTypeClassMap const kCellType2Class{ {MWMEditorCellTypeCategory, [MWMEditorCategoryCell class]}, {MWMEditorCellTypeAdditionalName, [MWMEditorAdditionalNameTableViewCell class]}, @@ -182,7 +182,7 @@ void registerCellsForTableView(vector const & cells, UITableV @implementation MWMEditorViewController { vector m_sections; - map> m_cells; + std::map> m_cells; osm::EditableMapObject m_mapObject; vector m_newAdditionalLanguages; } diff --git a/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMPlacePageLayout.mm b/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMPlacePageLayout.mm index 7baeb41998..65a39fc100 100644 --- a/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMPlacePageLayout.mm +++ b/iphone/Maps/UI/PlacePage/PlacePageLayout/MWMPlacePageLayout.mm @@ -28,7 +28,7 @@ namespace { using place_page::MetainfoRows; -map const kMetaInfoCells = { +std::map const kMetaInfoCells = { {MetainfoRows::Website, [MWMPlacePageLinkCell class]}, {MetainfoRows::Address, [MWMPlacePageInfoCell class]}, {MetainfoRows::Email, [MWMPlacePageLinkCell class]}, diff --git a/iphone/Maps/main.mm b/iphone/Maps/main.mm index 8b967e5e0c..075e6bd913 100644 --- a/iphone/Maps/main.mm +++ b/iphone/Maps/main.mm @@ -35,7 +35,7 @@ void setPushWooshSender() void setMarketingSender() { - GetPlatform().GetMarketingService().SetMarketingSender([](string const & tag, map const & params) + GetPlatform().GetMarketingService().SetMarketingSender([](string const & tag, std::map const & params) { if (tag.empty()) return; diff --git a/map/benchmark_tool/features_loading.cpp b/map/benchmark_tool/features_loading.cpp index 266d936ecb..1eb30c4c72 100644 --- a/map/benchmark_tool/features_loading.cpp +++ b/map/benchmark_tool/features_loading.cpp @@ -55,7 +55,7 @@ namespace } }; - void RunBenchmark(model::FeaturesFetcher const & src, m2::RectD const & rect, + void RunBenchmark(FeaturesFetcher const & src, m2::RectD const & rect, pair const & scaleRange, AllResult & res) { ASSERT_LESS_OR_EQUAL(scaleRange.first, scaleRange.second, ()); @@ -103,7 +103,7 @@ void RunFeaturesLoadingBenchmark(string const & file, pair scaleRange, platform::LocalCountryFile localFile = platform::LocalCountryFile::MakeForTesting(fileName); - model::FeaturesFetcher src; + FeaturesFetcher src; auto const r = src.RegisterMap(localFile); if (r.second != MwmSet::RegResult::Success) return; diff --git a/map/features_fetcher.cpp b/map/features_fetcher.cpp index 787efd8d85..d6baad8aa6 100644 --- a/map/features_fetcher.cpp +++ b/map/features_fetcher.cpp @@ -2,29 +2,18 @@ #include "platform/platform.hpp" -#include "indexer/cell_coverer.hpp" -#include "indexer/scales.hpp" #include "indexer/classificator_loader.hpp" +#include "indexer/scales.hpp" #include "base/assert.hpp" #include "base/logging.hpp" -#include "std/bind.hpp" - using platform::CountryFile; using platform::LocalCountryFile; -namespace model -{ -FeaturesFetcher::FeaturesFetcher() -{ - m_dataSource.AddObserver(*this); -} +FeaturesFetcher::FeaturesFetcher() { m_dataSource.AddObserver(*this); } -FeaturesFetcher::~FeaturesFetcher() -{ - m_dataSource.RemoveObserver(*this); -} +FeaturesFetcher::~FeaturesFetcher() { m_dataSource.RemoveObserver(*this); } // While reading any files (classificator or mwm), there are 2 types of possible exceptions: // Reader::Exception, FileAbsentException. @@ -76,23 +65,7 @@ bool FeaturesFetcher::DeregisterMap(CountryFile const & countryFile) void FeaturesFetcher::Clear() { m_dataSource.Clear(); } -void FeaturesFetcher::ClearCaches() -{ - m_dataSource.ClearCache(); -} - -void FeaturesFetcher::OnMapUpdated(platform::LocalCountryFile const & newFile, - platform::LocalCountryFile const & oldFile) -{ - if (m_onMapDeregistered) - m_onMapDeregistered(oldFile); -} - -void FeaturesFetcher::OnMapDeregistered(platform::LocalCountryFile const & localFile) -{ - if (m_onMapDeregistered) - m_onMapDeregistered(localFile); -} +void FeaturesFetcher::ClearCaches() { m_dataSource.ClearCache(); } m2::RectD FeaturesFetcher::GetWorldRect() const { @@ -105,4 +78,17 @@ m2::RectD FeaturesFetcher::GetWorldRect() const return m_rect; } +void FeaturesFetcher::OnMapUpdated(platform::LocalCountryFile const & newFile, + platform::LocalCountryFile const & oldFile) +{ + if (m_onMapDeregistered) + m_onMapDeregistered(oldFile); +} + +void FeaturesFetcher::OnMapDeregistered(platform::LocalCountryFile const & localFile) +{ + if (m_onMapDeregistered) + { + m_onMapDeregistered(localFile); + } } diff --git a/map/features_fetcher.hpp b/map/features_fetcher.hpp index 9be2403082..895f5985f8 100644 --- a/map/features_fetcher.hpp +++ b/map/features_fetcher.hpp @@ -5,11 +5,11 @@ #include "indexer/data_header.hpp" #include "indexer/mwm_set.hpp" -#include "geometry/rect2d.hpp" #include "geometry/point2d.hpp" +#include "geometry/rect2d.hpp" -#include "coding/reader.hpp" #include "coding/buffer_reader.hpp" +#include "coding/reader.hpp" #include "base/macros.hpp" @@ -17,86 +17,71 @@ #include #include -namespace model -{ -//#define USE_BUFFER_READER - class FeaturesFetcher : public MwmSet::Observer +{ +public: + using Reader = ModelReaderPtr; + + using MapDeregisteredCallback = std::function; + + FeaturesFetcher(); + + virtual ~FeaturesFetcher(); + + void InitClassificator(); + + void SetOnMapDeregisteredCallback(MapDeregisteredCallback const & callback) { - public: -#ifdef USE_BUFFER_READER - using Reader = BufferReader; -#else - using Reader = ModelReaderPtr; -#endif + m_onMapDeregistered = callback; + } - using MapDeregisteredCallback = std::function; + // Registers a new map. + std::pair RegisterMap( + platform::LocalCountryFile const & localFile); - private: - m2::RectD m_rect; + // Deregisters a map denoted by file from internal records. + bool DeregisterMap(platform::CountryFile const & countryFile); - EditableDataSource m_dataSource; + void Clear(); - MapDeregisteredCallback m_onMapDeregistered; + void ClearCaches(); - public: - FeaturesFetcher(); + bool IsLoaded(std::string const & countryFileName) const + { + return m_dataSource.IsLoaded(platform::CountryFile(countryFileName)); + } - virtual ~FeaturesFetcher(); + void ForEachFeature(m2::RectD const & rect, std::function const & fn, + int scale) const + { + m_dataSource.ForEachInRect(fn, rect, scale); + } - void InitClassificator(); - - inline void SetOnMapDeregisteredCallback(MapDeregisteredCallback const & callback) - { - m_onMapDeregistered = callback; - } - - /// Registers a new map. - std::pair RegisterMap( - platform::LocalCountryFile const & localFile); - - /// Deregisters a map denoted by file from internal records. - bool DeregisterMap(platform::CountryFile const & countryFile); - - void Clear(); - - void ClearCaches(); - - inline bool IsLoaded(string const & countryFileName) const - { - return m_dataSource.IsLoaded(platform::CountryFile(countryFileName)); - } - - // MwmSet::Observer overrides: - void OnMapUpdated(platform::LocalCountryFile const & newFile, - platform::LocalCountryFile const & oldFile) override; - void OnMapDeregistered(platform::LocalCountryFile const & localFile) override; - - //bool IsLoaded(m2::PointD const & pt) const; - - /// @name Features enumeration. - //@{ - void ForEachFeature(m2::RectD const & rect, std::function const & fn, + void ForEachFeatureID(m2::RectD const & rect, std::function const & fn, int scale) const - { - m_dataSource.ForEachInRect(fn, rect, scale); - } + { + m_dataSource.ForEachFeatureIDInRect(fn, rect, scale); + } - void ForEachFeatureID(m2::RectD const & rect, std::function const & fn, - int scale) const - { - m_dataSource.ForEachFeatureIDInRect(fn, rect, scale); - } + template + void ReadFeatures(ToDo & toDo, vector const & features) const + { + m_dataSource.ReadFeatures(toDo, features); + } - template - void ReadFeatures(ToDo & toDo, vector const & features) const - { - m_dataSource.ReadFeatures(toDo, features); - } - //@} + DataSource const & GetDataSource() const { return m_dataSource; } + DataSource & GetDataSource() { return m_dataSource; } + m2::RectD GetWorldRect() const; - DataSource const & GetDataSource() const { return m_dataSource; } - DataSource & GetDataSource() { return m_dataSource; } - m2::RectD GetWorldRect() const; - }; -} + // MwmSet::Observer overrides: + void OnMapUpdated(platform::LocalCountryFile const & newFile, + platform::LocalCountryFile const & oldFile) override; + void OnMapDeregistered(platform::LocalCountryFile const & localFile) override; + +private: + m2::RectD m_rect; + + EditableDataSource m_dataSource; + + MapDeregisteredCallback m_onMapDeregistered; +}; diff --git a/map/framework.cpp b/map/framework.cpp index 96b1222dfe..53f18ed142 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -17,9 +17,6 @@ #include "generator/borders.hpp" -#include "defines.hpp" -#include "private.h" - #include "routing/city_roads.hpp" #include "routing/index_router.hpp" #include "routing/online_absent_fetcher.hpp" @@ -108,17 +105,20 @@ #include "std/algorithm.hpp" #include "std/bind.hpp" -#include "std/map.hpp" #include "std/sstream.hpp" #include "std/target_os.hpp" #include "api/internal/c/api-client-internals.h" #include "api/src/c/api-client.h" -#include "3party/Alohalytics/src/alohalytics.h" - +#include #include +#include "defines.hpp" +#include "private.h" + +#include "3party/Alohalytics/src/alohalytics.h" + using namespace storage; using namespace routing; using namespace location; @@ -232,7 +232,7 @@ pair Framework::RegisterMap( LocalCountryFile const & localFile) { LOG(LINFO, ("Loading map:", localFile.GetCountryName())); - return m_model.RegisterMap(localFile); + return m_featuresFetcher.RegisterMap(localFile); } void Framework::OnLocationError(TLocationError /*error*/) @@ -391,7 +391,7 @@ void Framework::Migrate(bool keepDownloaded) CountriesVec existedCountries; GetStorage().DeleteAllLocalMaps(&existedCountries); DeregisterAllMaps(); - m_model.Clear(); + m_featuresFetcher.Clear(); GetStorage().Migrate(keepDownloaded ? existedCountries : CountriesVec()); InitCountryInfoGetter(); InitSearchAPI(); @@ -400,11 +400,11 @@ void Framework::Migrate(bool keepDownloaded) InitTaxiEngine(); RegisterAllMaps(); m_notificationManager.SetDelegate( - std::make_unique(m_model.GetDataSource(), *m_cityFinder, + std::make_unique(m_featuresFetcher.GetDataSource(), *m_cityFinder, m_addressGetter, *m_ugcApi)); m_trafficManager.SetCurrentDataVersion(GetStorage().GetCurrentDataVersion()); - m_bmManager->InitRegionAddressGetter(m_model.GetDataSource(), *m_infoGetter); + m_bmManager->InitRegionAddressGetter(m_featuresFetcher.GetDataSource(), *m_infoGetter); if (m_drapeEngine && m_isRenderingEnabled) { m_drapeEngine->SetRenderingEnabled(); @@ -423,14 +423,14 @@ Framework::Framework(FrameworkParams const & params) , m_storage(platform::migrate::NeedMigrate() ? COUNTRIES_OBSOLETE_FILE : COUNTRIES_FILE) , m_enabledDiffs(params.m_enableDiffs) , m_isRenderingEnabled(true) - , m_transitManager(m_model.GetDataSource(), + , m_transitManager(m_featuresFetcher.GetDataSource(), [this](FeatureCallback const & fn, vector const & features) { - return m_model.ReadFeatures(fn, features); + return m_featuresFetcher.ReadFeatures(fn, features); }, bind(&Framework::GetMwmsByRect, this, _1, false /* rough */)) , m_routingManager( RoutingManager::Callbacks( - [this]() -> DataSource & { return m_model.GetDataSource(); }, + [this]() -> DataSource & { return m_featuresFetcher.GetDataSource(); }, [this]() -> storage::CountryInfoGetter & { return GetCountryInfoGetter(); }, [this](string const & id) -> string { return m_storage.GetParentIdFor(id); }, [this]() -> StringsBundle const & { return m_stringsBundle; }, @@ -438,15 +438,15 @@ Framework::Framework(FrameworkParams const & params) static_cast(*this)) , m_trafficManager(bind(&Framework::GetMwmsByRect, this, _1, false /* rough */), kMaxTrafficCacheSizeBytes, m_routingManager.RoutingSession()) - , m_bookingFilterProcessor(m_model.GetDataSource(), *m_bookingApi) + , m_bookingFilterProcessor(m_featuresFetcher.GetDataSource(), *m_bookingApi) , m_displacementModeManager([this](bool show) { int const mode = show ? dp::displacement::kHotelMode : dp::displacement::kDefaultMode; if (m_drapeEngine != nullptr) m_drapeEngine->SetDisplacementMode(mode); }) , m_lastReportedCountry(kInvalidCountryId) - , m_popularityLoader(m_model.GetDataSource(), POPULARITY_RANKS_FILE_TAG) - , m_descriptionsLoader(std::make_unique(m_model.GetDataSource())) + , m_popularityLoader(m_featuresFetcher.GetDataSource(), POPULARITY_RANKS_FILE_TAG) + , m_descriptionsLoader(std::make_unique(m_featuresFetcher.GetDataSource())) , m_purchase(std::make_unique([this] { m_user.ResetAccessToken(); })) , m_tipsApi(static_cast(*this)) { @@ -478,8 +478,8 @@ Framework::Framework(FrameworkParams const & params) // Wi-Fi string is used in categories that's why does not have core_ prefix m_stringsBundle.SetDefaultString("wifi", "WiFi"); - m_model.InitClassificator(); - m_model.SetOnMapDeregisteredCallback(bind(&Framework::OnMapDeregistered, this, _1)); + m_featuresFetcher.InitClassificator(); + m_featuresFetcher.SetOnMapDeregisteredCallback(bind(&Framework::OnMapDeregistered, this, _1)); LOG(LDEBUG, ("Classificator initialized")); m_displayedCategories = make_unique(GetDefaultCategories()); @@ -503,7 +503,7 @@ Framework::Framework(FrameworkParams const & params) [this](vector const & marks) { GetSearchAPI().OnBookmarksAttached(marks); }, [this](vector const & marks) { GetSearchAPI().OnBookmarksDetached(marks); })); - m_bmManager->InitRegionAddressGetter(m_model.GetDataSource(), *m_infoGetter); + m_bmManager->InitRegionAddressGetter(m_featuresFetcher.GetDataSource(), *m_infoGetter); m_ParsedMapApi.SetBookmarkManager(m_bmManager.get()); m_routingManager.SetBookmarkManager(m_bmManager.get()); @@ -516,7 +516,7 @@ Framework::Framework(FrameworkParams const & params) { auto const userPos = GetCurrentPosition(); if (userPos) - OnRouteStartBuild(m_model.GetDataSource(), points, userPos.get()); + OnRouteStartBuild(m_featuresFetcher.GetDataSource(), points, userPos.get()); }); InitCityFinder(); @@ -556,11 +556,11 @@ Framework::Framework(FrameworkParams const & params) LOG(LINFO, ("System languages:", languages::GetPreferred())); - editor.SetDelegate(make_unique(m_model.GetDataSource())); + editor.SetDelegate(make_unique(m_featuresFetcher.GetDataSource())); editor.SetInvalidateFn([this](){ InvalidateRect(GetCurrentViewport()); }); editor.LoadEdits(); - m_model.GetDataSource().AddObserver(editor); + m_featuresFetcher.GetDataSource().AddObserver(editor); LOG(LINFO, ("Editor initialized")); @@ -574,7 +574,7 @@ Framework::Framework(FrameworkParams const & params) LOG(LDEBUG, ("Transliterators initialized")); m_notificationManager.SetDelegate( - std::make_unique(m_model.GetDataSource(), *m_cityFinder, + std::make_unique(m_featuresFetcher.GetDataSource(), *m_cityFinder, m_addressGetter, *m_ugcApi)); m_notificationManager.Load(); m_notificationManager.TrimExpired(); @@ -588,7 +588,7 @@ Framework::Framework(FrameworkParams const & params) GetPowerManager().Subscribe(this); GetPowerManager().Load(); - m_promoApi->SetDelegate(make_unique(m_model.GetDataSource(), *m_cityFinder)); + m_promoApi->SetDelegate(make_unique(m_featuresFetcher.GetDataSource(), *m_cityFinder)); eye::Eye::Instance().Subscribe(m_promoApi.get()); } @@ -611,7 +611,7 @@ Framework::~Framework() GetBookmarkManager().Teardown(); m_trafficManager.Teardown(); DestroyDrapeEngine(); - m_model.SetOnMapDeregisteredCallback(nullptr); + m_featuresFetcher.SetOnMapDeregisteredCallback(nullptr); m_user.ClearSubscribers(); // Must be destroyed implicitly, since it stores reference to m_user. @@ -681,7 +681,7 @@ void Framework::OnCountryFileDownloaded(storage::CountryId const & countryId, if (localFile && HasOptions(localFile->GetFiles(), MapOptions::Map)) { // Add downloaded map. - auto p = m_model.RegisterMap(*localFile); + auto p = m_featuresFetcher.RegisterMap(*localFile); MwmSet::MwmId const & id = p.first; if (id.IsAlive()) rect = id.GetInfo()->m_bordersRect; @@ -710,7 +710,7 @@ bool Framework::OnCountryFileDelete(storage::CountryId const & countryId, if (localFile) { rect = m_infoGetter->GetLimitRectForLeaf(countryId); - m_model.DeregisterMap(platform::CountryFile(countryId)); + m_featuresFetcher.DeregisterMap(platform::CountryFile(countryId)); deferredDelete = true; } InvalidateRect(rect); @@ -747,7 +747,7 @@ bool Framework::HasUnsavedEdits(storage::CountryId const & countryId) if (groupNode) return; hasUnsavedChanges |= osm::Editor::Instance().HaveMapEditsToUpload( - m_model.GetDataSource().GetMwmIdByCountryFile(platform::CountryFile(fileName))); + m_featuresFetcher.GetDataSource().GetMwmIdByCountryFile(platform::CountryFile(fileName))); }; GetStorage().ForEachInSubtree(countryId, forEachInSubtree); return hasUnsavedChanges; @@ -815,7 +815,7 @@ void Framework::RegisterAllMaps() void Framework::DeregisterAllMaps() { - m_model.Clear(); + m_featuresFetcher.Clear(); m_storage.Clear(); } @@ -863,7 +863,7 @@ void Framework::ResetBookmarkInfo(Bookmark const & bmk, place_page::Info & info) search::ReverseGeocoder::Address Framework::GetAddressAtPoint(m2::PointD const & pt) const { - return m_addressGetter.GetAddressAtPoint(m_model.GetDataSource(), pt); + return m_addressGetter.GetAddressAtPoint(m_featuresFetcher.GetDataSource(), pt); } void Framework::FillFeatureInfo(FeatureID const & fid, place_page::Info & info) const @@ -874,7 +874,7 @@ void Framework::FillFeatureInfo(FeatureID const & fid, place_page::Info & info) return; } - FeaturesLoaderGuard const guard(m_model.GetDataSource(), fid.m_mwmId); + FeaturesLoaderGuard const guard(m_featuresFetcher.GetDataSource(), fid.m_mwmId); auto ft = guard.GetFeatureByIndex(fid.m_index); if (!ft) { @@ -893,7 +893,7 @@ void Framework::FillPointInfo(place_page::Info & info, m2::PointD const & mercat if (fid.IsValid()) { - m_model.GetDataSource().ReadFeature( + m_featuresFetcher.GetDataSource().ReadFeature( [&](FeatureType & ft) { FillInfoFromFeatureType(ft, info); }, fid); } else @@ -1107,7 +1107,7 @@ void Framework::FillRoadTypeMarkInfo(RoadWarningMark const & roadTypeMark, place { if (roadTypeMark.GetFeatureID().IsValid()) { - FeaturesLoaderGuard const guard(m_model.GetDataSource(), roadTypeMark.GetFeatureID().m_mwmId); + FeaturesLoaderGuard const guard(m_featuresFetcher.GetDataSource(), roadTypeMark.GetFeatureID().m_mwmId); auto ft = guard.GetFeatureByIndex(roadTypeMark.GetFeatureID().m_index); if (ft) { @@ -1252,7 +1252,7 @@ void Framework::ShowAll() { if (m_drapeEngine == nullptr) return; - m_drapeEngine->SetModelViewAnyRect(m2::AnyRectD(m_model.GetWorldRect()), false /* isAnim */, + m_drapeEngine->SetModelViewAnyRect(m2::AnyRectD(m_featuresFetcher.GetWorldRect()), false /* isAnim */, false /* useVisibleViewport */); } @@ -1415,12 +1415,12 @@ bool Framework::IsCountryLoaded(m2::PointD const & pt) const if (fName.empty()) return true; - return m_model.IsLoaded(fName); + return m_featuresFetcher.IsLoaded(fName); } bool Framework::IsCountryLoadedByName(string const & name) const { - return m_model.IsLoaded(name); + return m_featuresFetcher.IsLoaded(name); } void Framework::InvalidateRect(m2::RectD const & rect) @@ -1431,7 +1431,7 @@ void Framework::InvalidateRect(m2::RectD const & rect) void Framework::ClearAllCaches() { - m_model.ClearCaches(); + m_featuresFetcher.ClearCaches(); m_infoGetter->ClearCaches(); GetSearchAPI().ClearCaches(); } @@ -1554,7 +1554,7 @@ void Framework::InitUGC() { ASSERT(!m_ugcApi.get(), ("InitUGC() must be called only once.")); - m_ugcApi = make_unique(m_model.GetDataSource(), [this](size_t numberOfUnsynchronized) { + m_ugcApi = make_unique(m_featuresFetcher.GetDataSource(), [this](size_t numberOfUnsynchronized) { if (numberOfUnsynchronized == 0) return; @@ -1580,7 +1580,7 @@ void Framework::InitSearchAPI() try { m_searchAPI = - make_unique(m_model.GetDataSource(), m_storage, *m_infoGetter, + make_unique(m_featuresFetcher.GetDataSource(), m_storage, *m_infoGetter, static_cast(*this)); } catch (RootException const & e) @@ -1595,7 +1595,7 @@ void Framework::InitDiscoveryManager() CHECK(m_cityFinder.get(), ("InitDiscoveryManager() must be called after InitCityFinder()")); discovery::Manager::APIs const apis(*m_searchAPI, *m_promoApi, *m_localsApi); - m_discoveryManager = make_unique(m_model.GetDataSource(), apis); + m_discoveryManager = make_unique(m_featuresFetcher.GetDataSource(), apis); } void Framework::InitTransliteration() @@ -1892,12 +1892,12 @@ void Framework::CreateDrapeEngine(ref_ptr contextFac { auto idReadFn = [this](df::MapDataProvider::TReadCallback const & fn, m2::RectD const & r, - int scale) -> void { m_model.ForEachFeatureID(r, fn, scale); }; + int scale) -> void { m_featuresFetcher.ForEachFeatureID(r, fn, scale); }; auto featureReadFn = [this](df::MapDataProvider::TReadCallback const & fn, vector const & ids) -> void { - m_model.ReadFeatures(fn, ids); + m_featuresFetcher.ReadFeatures(fn, ids); }; auto myPositionModeChangedFn = [this](location::EMyPositionMode mode, bool routingActive) @@ -2330,7 +2330,7 @@ FeatureID Framework::GetFeatureAtPoint(m2::PointD const & mercator, auto haveBuilding = false; auto closestDistanceToCenter = numeric_limits::max(); auto currentDistance = numeric_limits::max(); - indexer::ForEachFeatureAtPoint(m_model.GetDataSource(), [&](FeatureType & ft) + indexer::ForEachFeatureAtPoint(m_featuresFetcher.GetDataSource(), [&](FeatureType & ft) { if (fullMatch.IsValid()) return; @@ -2378,7 +2378,7 @@ osm::MapObject Framework::GetMapObjectByID(FeatureID const & fid) const { osm::MapObject res; ASSERT(fid.IsValid(), ()); - FeaturesLoaderGuard guard(m_model.GetDataSource(), fid.m_mwmId); + FeaturesLoaderGuard guard(m_featuresFetcher.GetDataSource(), fid.m_mwmId); auto ft = guard.GetFeatureByIndex(fid.m_index); if (ft) res.SetFromFeatureType(*ft); @@ -2577,7 +2577,7 @@ FeatureID Framework::FindBuildingAtPoint(m2::PointD const & mercator) const constexpr int kScale = scales::GetUpperScale(); constexpr double kSelectRectWidthInMeters = 1.1; m2::RectD const rect = MercatorBounds::RectByCenterXYAndSizeInMeters(mercator, kSelectRectWidthInMeters); - m_model.ForEachFeature(rect, [&](FeatureType & ft) + m_featuresFetcher.ForEachFeature(rect, [&](FeatureType & ft) { if (!featureId.IsValid() && ft.GetGeomType() == feature::GeomType::Area && @@ -2948,7 +2948,7 @@ vector Framework::GetSelectedFeatureTriangles() const if (!m_selectedFeature.IsValid()) return triangles; - FeaturesLoaderGuard const guard(m_model.GetDataSource(), m_selectedFeature.m_mwmId); + FeaturesLoaderGuard const guard(m_featuresFetcher.GetDataSource(), m_selectedFeature.m_mwmId); auto ft = guard.GetFeatureByIndex(m_selectedFeature.m_index); if (!ft) return triangles; @@ -3092,7 +3092,7 @@ bool Framework::ParseEditorDebugCommand(search::SearchParams const & params) { FeatureID const & fid = edit.first; - FeaturesLoaderGuard guard(m_model.GetDataSource(), fid.m_mwmId); + FeaturesLoaderGuard guard(m_featuresFetcher.GetDataSource(), fid.m_mwmId); auto ft = guard.GetFeatureByIndex(fid.m_index); if (!ft) { @@ -3133,7 +3133,7 @@ bool Framework::ParseEditorDebugCommand(search::SearchParams const & params) auto const features = FindFeaturesByIndex(index); for (auto const & fid : features) { - FeaturesLoaderGuard guard(m_model.GetDataSource(), fid.m_mwmId); + FeaturesLoaderGuard guard(m_featuresFetcher.GetDataSource(), fid.m_mwmId); auto ft = guard.GetFeatureByIndex(fid.m_index); if (!ft) continue; @@ -3298,7 +3298,7 @@ bool Framework::CreateMapObject(m2::PointD const & mercator, uint32_t const feat osm::EditableMapObject & emo) const { emo = {}; - auto const & dataSource = m_model.GetDataSource(); + auto const & dataSource = m_featuresFetcher.GetDataSource(); MwmSet::MwmId const mwmId = dataSource.GetMwmIdByCountryFile( platform::CountryFile(m_infoGetter->GetRegionCountryId(mercator))); if (!mwmId.IsAlive()) @@ -3306,11 +3306,11 @@ bool Framework::CreateMapObject(m2::PointD const & mercator, uint32_t const feat GetPlatform().GetMarketingService().SendMarketingEvent(marketing::kEditorAddStart, {}); - search::ReverseGeocoder const coder(m_model.GetDataSource()); + search::ReverseGeocoder const coder(m_featuresFetcher.GetDataSource()); vector streets; coder.GetNearbyStreets(mwmId, mercator, streets); - emo.SetNearbyStreets(TakeSomeStreetsAndLocalize(streets, m_model.GetDataSource())); + emo.SetNearbyStreets(TakeSomeStreetsAndLocalize(streets, m_featuresFetcher.GetDataSource())); // TODO(mgsergio): Check emo is a poi. For now it is the only option. SetHostingBuildingAddress(FindBuildingAtPoint(mercator), dataSource, coder, emo); @@ -3323,7 +3323,7 @@ bool Framework::GetEditableMapObject(FeatureID const & fid, osm::EditableMapObje if (!fid.IsValid()) return false; - FeaturesLoaderGuard guard(m_model.GetDataSource(), fid.m_mwmId); + FeaturesLoaderGuard guard(m_featuresFetcher.GetDataSource(), fid.m_mwmId); auto ft = guard.GetFeatureByIndex(fid.m_index); if (!ft) return false; @@ -3335,7 +3335,7 @@ bool Framework::GetEditableMapObject(FeatureID const & fid, osm::EditableMapObje auto const & editor = osm::Editor::Instance(); emo.SetEditableProperties(editor.GetEditableProperties(*ft)); - auto const & dataSource = m_model.GetDataSource(); + auto const & dataSource = m_featuresFetcher.GetDataSource(); search::ReverseGeocoder const coder(dataSource); SetStreet(coder, dataSource, *ft, emo); @@ -3366,7 +3366,7 @@ osm::Editor::SaveResult Framework::SaveEditedMapObject(osm::EditableMapObject em { auto const isCreatedFeature = editor.IsCreatedFeature(emo.GetID()); - FeaturesLoaderGuard g(m_model.GetDataSource(), emo.GetID().m_mwmId); + FeaturesLoaderGuard g(m_featuresFetcher.GetDataSource(), emo.GetID().m_mwmId); std::unique_ptr originalFeature; if (!isCreatedFeature) { @@ -3395,7 +3395,7 @@ osm::Editor::SaveResult Framework::SaveEditedMapObject(osm::EditableMapObject em issueLatLon = MercatorBounds::ToLatLon(feature::GetCenter(*hostingBuildingFeature)); search::ReverseGeocoder::Address hostingBuildingAddress; - search::ReverseGeocoder const coder(m_model.GetDataSource()); + search::ReverseGeocoder const coder(m_featuresFetcher.GetDataSource()); // The is no address to take from a hosting building. Fallback to simple saving. if (!coder.GetExactAddress(*hostingBuildingFeature, hostingBuildingAddress)) break; @@ -3615,7 +3615,7 @@ std::vector Framework::GetRegionsCountryIdByRect(m2::RectD const & void Framework::VisualizeRoadsInRect(m2::RectD const & rect) { - m_model.ForEachFeature(rect, [this, &rect](FeatureType & ft) + m_featuresFetcher.ForEachFeature(rect, [this, &rect](FeatureType & ft) { if (routing::IsRoad(feature::TypesHolder(ft))) VisualizeFeatureInRect(rect, ft, m_drapeApi); @@ -3662,7 +3662,7 @@ void Framework::VisualizeCityBoundariesInRect(m2::RectD const & rect) void Framework::VisualizeCityRoadsInRect(m2::RectD const & rect) { - map> cityRoads; + std::map> cityRoads; GetDataSource().ForEachInRect( [this, &rect, &cityRoads](FeatureType & ft) { if (ft.GetGeomType() != feature::GeomType::Line) @@ -3672,7 +3672,7 @@ void Framework::VisualizeCityRoadsInRect(m2::RectD const & rect) auto const it = cityRoads.find(mwmId); if (it == cityRoads.cend()) { - MwmSet::MwmHandle handle = m_model.GetDataSource().GetMwmHandleById(mwmId); + MwmSet::MwmHandle handle = m_featuresFetcher.GetDataSource().GetMwmHandleById(mwmId); if (!handle.IsAlive()) return; @@ -3819,7 +3819,7 @@ vector Framework::GetMwmsByRect(m2::RectD const & rect, bool roug MwmSet::MwmId Framework::GetMwmIdByName(string const & name) const { - return m_model.GetDataSource().GetMwmIdByCountryFile(platform::CountryFile(name)); + return m_featuresFetcher.GetDataSource().GetMwmIdByCountryFile(platform::CountryFile(name)); } vector Framework::FindFeaturesByIndex(uint32_t featureIndex) const @@ -3842,7 +3842,7 @@ vector Framework::FindFeaturesByIndex(uint32_t featureIndex) const for (auto const & mwmId : mwms) { - FeaturesLoaderGuard const guard(m_model.GetDataSource(), mwmId); + FeaturesLoaderGuard const guard(m_featuresFetcher.GetDataSource(), mwmId); if (featureIndex < guard.GetNumFeatures() && guard.GetFeatureByIndex(featureIndex)) result.emplace_back(mwmId, featureIndex); } @@ -3852,7 +3852,7 @@ vector Framework::FindFeaturesByIndex(uint32_t featureIndex) const void Framework::ReadFeatures(function const & reader, vector const & features) { - m_model.ReadFeatures(reader, features); + m_featuresFetcher.ReadFeatures(reader, features); } // RoutingManager::Delegate @@ -3888,7 +3888,7 @@ void Framework::InitCityFinder() { ASSERT(!m_cityFinder, ()); - m_cityFinder = make_unique(m_model.GetDataSource()); + m_cityFinder = make_unique(m_featuresFetcher.GetDataSource()); } void Framework::InitTaxiEngine() @@ -4135,11 +4135,11 @@ TipsApi const & Framework::GetTipsApi() const bool Framework::HaveTransit(m2::PointD const & pt) const { - auto const & dataSource = m_model.GetDataSource(); + auto const & dataSource = m_featuresFetcher.GetDataSource(); MwmSet::MwmId const mwmId = dataSource.GetMwmIdByCountryFile(platform::CountryFile(m_infoGetter->GetRegionCountryId(pt))); - MwmSet::MwmHandle handle = m_model.GetDataSource().GetMwmHandleById(mwmId); + MwmSet::MwmHandle handle = m_featuresFetcher.GetDataSource().GetMwmHandleById(mwmId); if (!handle.IsAlive()) return false; @@ -4160,19 +4160,19 @@ bool Framework::MakePlacePageInfo(NotificationCandidate const & notification, m2::RectD rect = MercatorBounds::RectByCenterXYAndOffset(notification.GetPos(), kMwmPointAccuracy); bool found = false; - m_model.GetDataSource().ForEachInRect([this, &info, ¬ification, &found](FeatureType & ft) - { - if (found || !feature::GetCenter(ft).EqualDxDy(notification.GetPos(), kMwmPointAccuracy)) - return; + m_featuresFetcher.GetDataSource().ForEachInRect( + [this, &info, ¬ification, &found](FeatureType & ft) { + if (found || !feature::GetCenter(ft).EqualDxDy(notification.GetPos(), kMwmPointAccuracy)) + return; - auto const foundMapObject = utils::MakeEyeMapObject(ft); - if (!foundMapObject.IsEmpty() && notification.IsSameMapObject(foundMapObject)) - { - FillInfoFromFeatureType(ft, info); - found = true; - } - }, - rect, scales::GetUpperScale()); + auto const foundMapObject = utils::MakeEyeMapObject(ft); + if (!foundMapObject.IsEmpty() && notification.IsSameMapObject(foundMapObject)) + { + FillInfoFromFeatureType(ft, info); + found = true; + } + }, + rect, scales::GetUpperScale()); return found; } diff --git a/map/framework.hpp b/map/framework.hpp index 345b1b2e37..b1a7ae155a 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -13,8 +13,8 @@ #include "map/mwm_url.hpp" #include "map/notifications/notification_manager.hpp" #include "map/place_page_info.hpp" -#include "map/power_management/power_manager.hpp" #include "map/power_management/power_management_schemas.hpp" +#include "map/power_management/power_manager.hpp" #include "map/purchase.hpp" #include "map/routing_manager.hpp" #include "map/routing_mark.hpp" @@ -187,14 +187,14 @@ protected: StringsBundle m_stringsBundle; - model::FeaturesFetcher m_model; + FeaturesFetcher m_featuresFetcher; // The order matters here: DisplayedCategories may be used only - // after classificator is loaded by |m_model|. + // after classificator is loaded by |m_featuresFetcher|. unique_ptr m_displayedCategories; // The order matters here: storage::CountryInfoGetter and - // m_model::FeaturesFetcher must be initialized before + // m_FeaturesFetcher must be initialized before // search::Engine and, therefore, destroyed after search::Engine. unique_ptr m_infoGetter; @@ -262,7 +262,7 @@ protected: bool OnCountryFileDelete(storage::CountryId const & countryId, storage::LocalFilePtr const localFile); - /// This function is called by m_model when the map file is deregistered. + /// This function is called by m_featuresFetcher when the map file is deregistered. void OnMapDeregistered(platform::LocalCountryFile const & localFile); void ClearAllCaches(); @@ -346,7 +346,7 @@ public: storage::CountryInfoGetter & GetCountryInfoGetter() { return *m_infoGetter; } StorageDownloadingPolicy & GetDownloadingPolicy() { return m_storageDownloadingPolicy; } - DataSource const & GetDataSource() const { return m_model.GetDataSource(); } + DataSource const & GetDataSource() const { return m_featuresFetcher.GetDataSource(); } SearchAPI & GetSearchAPI(); SearchAPI const & GetSearchAPI() const; @@ -762,7 +762,7 @@ public: template void ForEachFeatureAtPoint(TFn && fn, m2::PointD const & mercator) const { - indexer::ForEachFeatureAtPoint(m_model.GetDataSource(), fn, mercator, 0.0); + indexer::ForEachFeatureAtPoint(m_featuresFetcher.GetDataSource(), fn, mercator, 0.0); } osm::MapObject GetMapObjectByID(FeatureID const & fid) const; diff --git a/map/map_tests/check_mwms.cpp b/map/map_tests/check_mwms.cpp index 7baf40177a..993b82d498 100644 --- a/map/map_tests/check_mwms.cpp +++ b/map/map_tests/check_mwms.cpp @@ -27,7 +27,7 @@ UNIT_TEST(CheckMWM_LoadAll) platform::FindAllLocalMapsInDirectoryAndCleanup(platform.WritableDir(), 0 /* version */, -1 /* latestVersion */, localFiles); - model::FeaturesFetcher m; + FeaturesFetcher m; m.InitClassificator(); for (platform::LocalCountryFile const & localFile : localFiles) diff --git a/map/map_tests/gps_track_collection_test.cpp b/map/map_tests/gps_track_collection_test.cpp index df25178d53..6f3e58973e 100644 --- a/map/map_tests/gps_track_collection_test.cpp +++ b/map/map_tests/gps_track_collection_test.cpp @@ -4,11 +4,12 @@ #include "base/logging.hpp" -#include "std/map.hpp" +#include + +using namespace std; namespace { - location::GpsTrackInfo MakeGpsTrackInfo(double timestamp, ms::LatLon const & ll, double speed) { location::GpsTrackInfo info; @@ -18,7 +19,6 @@ location::GpsTrackInfo MakeGpsTrackInfo(double timestamp, ms::LatLon const & ll, info.m_longitude = ll.m_lon; return info; } - } // namespace UNIT_TEST(GpsTrackCollection_Simple) diff --git a/map/mwm_tests/multithread_mwm_test.cpp b/map/mwm_tests/multithread_mwm_test.cpp index 774b57cb7b..00ce7c60e2 100644 --- a/map/mwm_tests/multithread_mwm_test.cpp +++ b/map/mwm_tests/multithread_mwm_test.cpp @@ -16,7 +16,7 @@ using namespace std; namespace { - typedef model::FeaturesFetcher SourceT; + using SourceT = FeaturesFetcher; class FeaturesLoader : public threads::IRoutine { diff --git a/map/mwm_tests/mwm_foreach_test.cpp b/map/mwm_tests/mwm_foreach_test.cpp index 7697b53ebb..c25a654f70 100644 --- a/map/mwm_tests/mwm_foreach_test.cpp +++ b/map/mwm_tests/mwm_foreach_test.cpp @@ -249,7 +249,7 @@ public: // void RunTest(string const & countryFileName) // { -// model::FeaturesFetcher src1; +// FeaturesFetcher src1; // src1.InitClassificator(); // platform::LocalCountryFile localFile(platform::LocalCountryFile::MakeForTesting(countryFileName)); diff --git a/map/mwm_tests/mwm_index_test.cpp b/map/mwm_tests/mwm_index_test.cpp index 912ffca9b3..4552c092df 100644 --- a/map/mwm_tests/mwm_index_test.cpp +++ b/map/mwm_tests/mwm_index_test.cpp @@ -38,7 +38,7 @@ public: bool RunTest(string const & countryFileName, int lowS, int highS) { - model::FeaturesFetcher src; + FeaturesFetcher src; auto p = src.RegisterMap(platform::LocalCountryFile::MakeForTesting(countryFileName)); if (p.second != MwmSet::RegResult::Success) return false; diff --git a/map/traffic_manager.hpp b/map/traffic_manager.hpp index b14a8f76fd..5c64de556e 100644 --- a/map/traffic_manager.hpp +++ b/map/traffic_manager.hpp @@ -19,13 +19,14 @@ #include "std/atomic.hpp" #include "std/chrono.hpp" #include "std/condition_variable.hpp" -#include "std/map.hpp" #include "std/mutex.hpp" #include "std/set.hpp" #include "std/string.hpp" #include "std/utility.hpp" #include "std/vector.hpp" +#include + class TrafficManager final { public: @@ -162,7 +163,7 @@ private: size_t m_maxCacheSizeBytes; size_t m_currentCacheSizeBytes = 0; - map m_mwmCache; + std::map m_mwmCache; bool m_isRunning; condition_variable m_condition; @@ -175,7 +176,7 @@ private: // The ETag or entity tag is part of HTTP, the protocol for the World Wide Web. // It is one of several mechanisms that HTTP provides for web cache validation, // which allows a client to make conditional requests. - map m_trafficETags; + std::map m_trafficETags; atomic m_isPaused; diff --git a/openlr/router.hpp b/openlr/router.hpp index 1c34d9f6d1..40a8f74b9d 100644 --- a/openlr/router.hpp +++ b/openlr/router.hpp @@ -6,11 +6,12 @@ #include "geometry/point2d.hpp" -#include "std/map.hpp" #include "std/sstream.hpp" #include "std/utility.hpp" #include "std/vector.hpp" +#include + namespace routing { class FeaturesRoadGraph; @@ -134,7 +135,7 @@ private: return os.str(); } - using Links = map>; + using Links = std::map>; using RoadGraphEdgesGetter = void (routing::IRoadGraph::*)( routing::Junction const & junction, routing::IRoadGraph::EdgeVector & edges) const; @@ -176,7 +177,7 @@ private: void GetIngoingEdges(routing::Junction const & u, routing::IRoadGraph::EdgeVector & edges); void GetEdges(routing::Junction const & u, RoadGraphEdgesGetter getRegular, RoadGraphEdgesGetter getFake, - map & cache, + std::map & cache, routing::IRoadGraph::EdgeVector & edges); template @@ -211,8 +212,8 @@ private: void FindSingleEdgeApproximation(vector const & edges, vector & path); routing::FeaturesRoadGraph & m_graph; - map m_outgoingCache; - map m_ingoingCache; + std::map m_outgoingCache; + std::map m_ingoingCache; RoadInfoGetter & m_roadInfoGetter; vector m_points; diff --git a/platform/marketing_service.hpp b/platform/marketing_service.hpp index 97a89ac759..458cdb2b3a 100644 --- a/platform/marketing_service.hpp +++ b/platform/marketing_service.hpp @@ -1,11 +1,12 @@ #pragma once #include "std/function.hpp" -#include "std/map.hpp" #include "std/string.hpp" #include "std/utility.hpp" #include "std/vector.hpp" +#include + namespace marketing { // Tags. diff --git a/platform/marketing_service_dummy.cpp b/platform/marketing_service_dummy.cpp index 173e7b3c96..866367ab4b 100644 --- a/platform/marketing_service_dummy.cpp +++ b/platform/marketing_service_dummy.cpp @@ -1,5 +1,7 @@ #include "platform/marketing_service.hpp" +using namespace std; + void MarketingService::SendPushWooshTag(string const & tag) {} diff --git a/platform/marketing_service_ios.mm b/platform/marketing_service_ios.mm index 7d32d3d0fe..1fd7fd1950 100644 --- a/platform/marketing_service_ios.mm +++ b/platform/marketing_service_ios.mm @@ -16,7 +16,7 @@ void MarketingService::SendPushWooshTag(string const & tag, vector const m_pushwooshSender(tag, values); } -void MarketingService::SendMarketingEvent(string const & tag, map const & params) +void MarketingService::SendMarketingEvent(string const & tag, std::map const & params) { if (m_marketingSender) m_marketingSender(tag, params); diff --git a/routing/routing_integration_tests/routing_test_tools.cpp b/routing/routing_integration_tests/routing_test_tools.cpp index 82a9543eb0..fbaf3ec91a 100644 --- a/routing/routing_integration_tests/routing_test_tools.cpp +++ b/routing/routing_integration_tests/routing_test_tools.cpp @@ -64,11 +64,11 @@ void ChangeMaxNumberOfOpenFiles(size_t n) namespace integration { -shared_ptr CreateFeaturesFetcher(vector const & localFiles) +shared_ptr CreateFeaturesFetcher(vector const & localFiles) { size_t const maxOpenFileNumber = 4096; ChangeMaxNumberOfOpenFiles(maxOpenFileNumber); - shared_ptr featuresFetcher(new model::FeaturesFetcher); + shared_ptr featuresFetcher(new FeaturesFetcher); featuresFetcher->InitClassificator(); for (LocalCountryFile const & localFile : localFiles) diff --git a/routing/routing_integration_tests/routing_test_tools.hpp b/routing/routing_integration_tests/routing_test_tools.hpp index 13ab4ed3db..ccf915d26f 100644 --- a/routing/routing_integration_tests/routing_test_tools.hpp +++ b/routing/routing_integration_tests/routing_test_tools.hpp @@ -47,7 +47,7 @@ typedef std::pair, RouterResultCode> TRouteResult; namespace integration { -std::shared_ptr CreateFeaturesFetcher( +std::shared_ptr CreateFeaturesFetcher( std::vector const & localFiles); std::unique_ptr CreateCountryInfoGetter(); @@ -73,7 +73,7 @@ public: storage::CountryInfoGetter const & GetCountryInfoGetter() const noexcept { return *m_infoGetter; } protected: - std::shared_ptr m_featuresFetcher; + std::shared_ptr m_featuresFetcher; std::unique_ptr m_infoGetter; }; diff --git a/software_renderer/software_renderer.hpp b/software_renderer/software_renderer.hpp index a41a9fb5eb..ff6d059051 100644 --- a/software_renderer/software_renderer.hpp +++ b/software_renderer/software_renderer.hpp @@ -23,10 +23,11 @@ #include "3party/agg/agg_path_storage.h" #include "std/cstdint.hpp" -#include "std/map.hpp" #include "std/unique_ptr.hpp" #include "std/vector.hpp" +#include + namespace software_renderer { @@ -115,7 +116,7 @@ public: private: unique_ptr m_glyphCache; - map m_symbolsIndex; + std::map m_symbolsIndex; vector m_symbolsSkin; uint32_t m_skinWidth, m_skinHeight; diff --git a/storage/storage_tests/storage_tests.cpp b/storage/storage_tests/storage_tests.cpp index fb41227597..377bb760a7 100644 --- a/storage/storage_tests/storage_tests.cpp +++ b/storage/storage_tests/storage_tests.cpp @@ -45,7 +45,6 @@ #include "std/condition_variable.hpp" #include "std/exception.hpp" #include "std/iterator.hpp" -#include "std/map.hpp" #include "std/mutex.hpp" #include "std/shared_ptr.hpp" #include "std/unique_ptr.hpp" diff --git a/traffic/pytraffic/bindings.cpp b/traffic/pytraffic/bindings.cpp index 89722e4871..94a3691794 100644 --- a/traffic/pytraffic/bindings.cpp +++ b/traffic/pytraffic/bindings.cpp @@ -10,11 +10,12 @@ #include "base/math.hpp" #include "std/cstdint.hpp" -#include "std/map.hpp" #include "std/sstream.hpp" #include "std/string.hpp" #include "std/vector.hpp" +#include + #include "pyhelpers/module_version.hpp" #include "pyhelpers/vector_list_conversion.hpp" #include "pyhelpers/vector_uint8.hpp" @@ -40,7 +41,7 @@ struct SegmentSpeeds double m_weight = 0; }; -using SegmentMapping = map; +using SegmentMapping = std::map; string SegmentSpeedsRepr(SegmentSpeeds const & v) { diff --git a/traffic/traffic_info.hpp b/traffic/traffic_info.hpp index 07a419c03e..61973aa2d4 100644 --- a/traffic/traffic_info.hpp +++ b/traffic/traffic_info.hpp @@ -5,10 +5,11 @@ #include "indexer/mwm_set.hpp" #include "std/cstdint.hpp" -#include "std/map.hpp" #include "std/shared_ptr.hpp" #include "std/vector.hpp" +#include + namespace platform { class HttpClient; @@ -74,7 +75,7 @@ public: }; // todo(@m) unordered_map? - using Coloring = map; + using Coloring = std::map; TrafficInfo() = default; diff --git a/xcode/map/map.xcodeproj/project.pbxproj b/xcode/map/map.xcodeproj/project.pbxproj index 209bdcfd9a..7b0d57d8d7 100644 --- a/xcode/map/map.xcodeproj/project.pbxproj +++ b/xcode/map/map.xcodeproj/project.pbxproj @@ -21,8 +21,8 @@ 34921F661BFA0A6900737D6E /* api_mark_point.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 34921F611BFA0A6900737D6E /* api_mark_point.hpp */; }; 34DDA1811DBE5DF40088A609 /* libpartners_api.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 34DDA17F1DBE5DF40088A609 /* libpartners_api.a */; }; 34DDA1821DBE5DF40088A609 /* libtracking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 34DDA1801DBE5DF40088A609 /* libtracking.a */; }; - 393623A2233131CF00907D2E /* features_fetcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 393623A0233131CE00907D2E /* features_fetcher.cpp */; }; - 393623A3233131CF00907D2E /* features_fetcher.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 393623A1233131CF00907D2E /* features_fetcher.hpp */; }; + 39E3C60323312BA800FB0C37 /* features_fetcher.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 39E3C60123312BA800FB0C37 /* features_fetcher.hpp */; }; + 39E3C60423312BA800FB0C37 /* features_fetcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 39E3C60223312BA800FB0C37 /* features_fetcher.cpp */; }; 3D0AEAFC1FBB0FF400AD042B /* libgenerator_tests_support.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D0AEAFF1FBB0FF400AD042B /* libgenerator_tests_support.a */; }; 3D0AEAFE1FBB0FF400AD042B /* libsearch_tests_support.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D0AEB011FBB0FF400AD042B /* libsearch_tests_support.a */; }; 3D1775A42317E2FD00F8889C /* promo_catalog_poi_checker.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3D1775A22317E2FD00F8889C /* promo_catalog_poi_checker.hpp */; }; @@ -273,8 +273,8 @@ 34AF87EA1DBE5AD000E5E7DC /* common-release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "common-release.xcconfig"; path = "../common-release.xcconfig"; sourceTree = ""; }; 34DDA17F1DBE5DF40088A609 /* libpartners_api.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libpartners_api.a; path = "/Users/igrechuhin/Repo/omim/xcode/partners_api/../../../omim-xcode-build/Debug/libpartners_api.a"; sourceTree = ""; }; 34DDA1801DBE5DF40088A609 /* libtracking.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libtracking.a; path = "/Users/igrechuhin/Repo/omim/xcode/tracking/../../../omim-xcode-build/Debug/libtracking.a"; sourceTree = ""; }; - 393623A0233131CE00907D2E /* features_fetcher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = features_fetcher.cpp; sourceTree = ""; }; - 393623A1233131CF00907D2E /* features_fetcher.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = features_fetcher.hpp; sourceTree = ""; }; + 39E3C60123312BA800FB0C37 /* features_fetcher.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = features_fetcher.hpp; sourceTree = ""; }; + 39E3C60223312BA800FB0C37 /* features_fetcher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = features_fetcher.cpp; sourceTree = ""; }; 3D0AEAFF1FBB0FF400AD042B /* libgenerator_tests_support.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libgenerator_tests_support.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3D0AEB001FBB0FF400AD042B /* libindexer_tests_support.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libindexer_tests_support.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3D0AEB011FBB0FF400AD042B /* libsearch_tests_support.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libsearch_tests_support.a; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -817,8 +817,8 @@ 675345BD1A4054AD00A0A8C3 /* map */ = { isa = PBXGroup; children = ( - 393623A0233131CE00907D2E /* features_fetcher.cpp */, - 393623A1233131CF00907D2E /* features_fetcher.hpp */, + 39E3C60223312BA800FB0C37 /* features_fetcher.cpp */, + 39E3C60123312BA800FB0C37 /* features_fetcher.hpp */, 3D1775AA2319848500F8889C /* crown.cpp */, 3D1775A92319848500F8889C /* crown.hpp */, 3D1775A22317E2FD00F8889C /* promo_catalog_poi_checker.hpp */, @@ -974,7 +974,7 @@ 675346671A4054E800A0A8C3 /* ge0_parser.hpp in Headers */, 675346A21A4054E800A0A8C3 /* user_mark.hpp in Headers */, 454649F21F2728CE00EF4064 /* local_ads_mark.hpp in Headers */, - 393623A3233131CF00907D2E /* features_fetcher.hpp in Headers */, + 39E3C60323312BA800FB0C37 /* features_fetcher.hpp in Headers */, BBA014AE2073C784007402E4 /* bookmark_helpers.hpp in Headers */, F6B283061C1B03320081957A /* gps_track_filter.hpp in Headers */, 3DD1166821888AAC007A2ED4 /* notification_queue_storage.hpp in Headers */, @@ -1220,7 +1220,7 @@ 56C116602090E5670068BBC0 /* extrapolator.cpp in Sources */, 3D1775AC2319848500F8889C /* crown.cpp in Sources */, 40ACC79723191C2600238E21 /* check_mwms.cpp in Sources */, - 393623A2233131CF00907D2E /* features_fetcher.cpp in Sources */, + 39E3C60423312BA800FB0C37 /* features_fetcher.cpp in Sources */, 6753466A1A4054E800A0A8C3 /* geourl_process.cpp in Sources */, 3DD1166621888AAC007A2ED4 /* notification_queue_serdes.cpp in Sources */, 348AB57C1D7EE0C6009F8301 /* chart_generator.cpp in Sources */,