diff --git a/map/framework.cpp b/map/framework.cpp index a19d056c2f..4b174ad422 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -432,19 +432,14 @@ Framework::Framework(FrameworkParams const & params) LOG(LDEBUG, ("Search API initialized")); m_bmManager = make_unique(BookmarkManager::Callbacks( - [this]() -> StringsBundle const & { return m_stringsBundle; }, - [this](std::vector> const & marks) - { - GetSearchAPI().OnBookmarksCreated(marks); - }, - [this](std::vector> const & marks) - { - GetSearchAPI().OnBookmarksUpdated(marks); - }, - [this](std::vector const & marks) - { - GetSearchAPI().OnBookmarksDeleted(marks); - })); + [this]() -> StringsBundle const & { return m_stringsBundle; }, + [this](vector> const & marks) { + GetSearchAPI().OnBookmarksCreated(marks); + }, + [this](vector> const & marks) { + GetSearchAPI().OnBookmarksUpdated(marks); + }, + [this](vector const & marks) { GetSearchAPI().OnBookmarksDeleted(marks); })); m_ParsedMapApi.SetBookmarkManager(m_bmManager.get()); m_routingManager.SetBookmarkManager(m_bmManager.get()); diff --git a/map/search_api.cpp b/map/search_api.cpp index ca383b71f1..a3f5f8a47f 100644 --- a/map/search_api.cpp +++ b/map/search_api.cpp @@ -3,9 +3,9 @@ #include "map/everywhere_search_params.hpp" #include "map/viewport_search_params.hpp" +#include "search/bookmarks/processor.hpp" #include "search/geometry_utils.hpp" #include "search/hotels_filter.hpp" -#include "search/bookmarks/processor.hpp" #include "storage/downloader_search_params.hpp" @@ -272,7 +272,7 @@ void SearchAPI::OnBookmarksCreated(vector> const m_engine.OnBookmarksCreated(data); } -void SearchAPI::OnBookmarksUpdated(vector> const & marks) +void SearchAPI::OnBookmarksUpdated(vector> const & marks) { vector data; AppendBookmarkIdDocs(marks, data); diff --git a/search/engine.cpp b/search/engine.cpp index 50f5dd1413..322d1a0150 100644 --- a/search/engine.cpp +++ b/search/engine.cpp @@ -20,10 +20,12 @@ #include "base/scope_guard.hpp" #include "base/stl_add.hpp" -#include "std/algorithm.hpp" -#include "std/bind.hpp" -#include "std/map.hpp" -#include "std/vector.hpp" +#include +#include +#include +#include + +using namespace std; namespace search { @@ -31,8 +33,7 @@ namespace { class InitSuggestions { - using TSuggestMap = map, uint8_t>; - TSuggestMap m_suggests; + map, uint8_t> m_suggests; public: void operator()(CategoriesHolder::Category::Name const & name) @@ -233,11 +234,11 @@ void Engine::MainLoop(Context & context) } } -template -void Engine::PostMessage(TArgs &&... args) +template +void Engine::PostMessage(Args &&... args) { lock_guard lock(m_mu); - m_messages.emplace(forward(args)...); + m_messages.emplace(forward(args)...); m_cv.notify_one(); } diff --git a/search/engine.hpp b/search/engine.hpp index 37d43f6362..b90859fe47 100644 --- a/search/engine.hpp +++ b/search/engine.hpp @@ -13,16 +13,15 @@ #include "base/mutex.hpp" #include "base/thread.hpp" -#include "std/condition_variable.hpp" -#include "std/function.hpp" -#include "std/mutex.hpp" -#include "std/queue.hpp" -#include "std/shared_ptr.hpp" -#include "std/string.hpp" -#include "std/unique_ptr.hpp" -#include "std/utility.hpp" -#include "std/vector.hpp" -#include "std/weak_ptr.hpp" +#include +#include +#include +#include +#include +#include +#include +#include +#include class Index; @@ -65,7 +64,7 @@ private: Processor * m_processor; bool m_cancelled; - mutex m_mu; + std::mutex m_mu; DISALLOW_COPY_AND_MOVE(ProcessorHandle); }; @@ -80,9 +79,9 @@ public: struct Params { Params(); - Params(string const & locale, size_t numThreads); + Params(std::string const & locale, size_t numThreads); - string m_locale; + std::string m_locale; // This field controls number of threads SearchEngine will create // to process queries. Use this field wisely as large values may @@ -96,10 +95,10 @@ public: ~Engine(); // Posts search request to the queue and returns its handle. - weak_ptr Search(SearchParams const & params); + std::weak_ptr Search(SearchParams const & params); // Sets default locale on all query processors. - void SetLocale(string const & locale); + void SetLocale(std::string const & locale); // Posts request to clear caches to the queue. void ClearCaches(); @@ -107,14 +106,14 @@ public: // Posts request to reload cities boundaries tables. void LoadCitiesBoundaries(); - void OnBookmarksCreated(vector> const & marks); - void OnBookmarksUpdated(vector> const & marks); - void OnBookmarksDeleted(vector const & marks); + void OnBookmarksCreated(std::vector> const & marks); + void OnBookmarksUpdated(std::vector> const & marks); + void OnBookmarksDeleted(std::vector const & marks); private: struct Message { - using Fn = function; + using Fn = std::function; enum Type { @@ -123,7 +122,7 @@ private: }; template - Message(Type type, Gn && gn) : m_type(type), m_fn(forward(gn)) {} + Message(Type type, Gn && gn) : m_type(type), m_fn(std::forward(gn)) {} void operator()(Processor & processor) { m_fn(processor); } @@ -133,17 +132,17 @@ private: // alignas() is used here to prevent false-sharing between different // threads. - struct alignas(64 /* the most common cache-line size */) Context + struct Context { // This field *CAN* be accessed by other threads, so |m_mu| must // be taken before access this queue. Messages are ordered here // by a timestamp and all timestamps are less than timestamps in // the global |m_messages| queue. - queue m_messages; + std::queue m_messages; // This field is thread-specific and *CAN NOT* be accessed by // other threads. - unique_ptr m_processor; + std::unique_ptr m_processor; }; // *ALL* following methods are executed on the m_threads threads. @@ -154,20 +153,20 @@ private: // |tasks| and |broadcast|. void MainLoop(Context & context); - template - void PostMessage(TArgs &&... args); + template + void PostMessage(Args &&... args); - void DoSearch(SearchParams const & params, shared_ptr handle, + void DoSearch(SearchParams const & params, std::shared_ptr handle, Processor & processor); - vector m_suggests; + std::vector m_suggests; bool m_shutdown; - mutex m_mu; - condition_variable m_cv; + std::mutex m_mu; + std::condition_variable m_cv; - queue m_messages; - vector m_contexts; - vector m_threads; + std::queue m_messages; + std::vector m_contexts; + std::vector m_threads; }; } // namespace search diff --git a/search/processor.cpp b/search/processor.cpp index 571099fd30..6b9d3e75da 100644 --- a/search/processor.cpp +++ b/search/processor.cpp @@ -48,13 +48,12 @@ #include "base/stl_helpers.hpp" #include "base/string_utils.hpp" -#include "std/algorithm.hpp" -#include "std/function.hpp" -#include "std/iterator.hpp" -#include "std/limits.hpp" +#include #include "3party/Alohalytics/src/alohalytics.h" +using namespace std; + namespace search { namespace diff --git a/search/processor.hpp b/search/processor.hpp index 7b04db3694..4e3a77d0aa 100644 --- a/search/processor.hpp +++ b/search/processor.hpp @@ -26,10 +26,12 @@ #include "base/cancellable.hpp" #include "base/string_utils.hpp" -#include "std/cstdint.hpp" -#include "std/string.hpp" -#include "std/utility.hpp" -#include "std/vector.hpp" +#include +#include +#include +#include +#include +#include class FeatureType; class CategoriesHolder; @@ -63,14 +65,14 @@ public: static double const kMinDistanceOnMapBetweenResultsM; Processor(Index const & index, CategoriesHolder const & categories, - vector const & suggests, storage::CountryInfoGetter const & infoGetter); + std::vector const & suggests, storage::CountryInfoGetter const & infoGetter); void SetViewport(m2::RectD const & viewport); - void SetPreferredLocale(string const & locale); - void SetInputLocale(string const & locale); - void SetQuery(string const & query); + void SetPreferredLocale(std::string const & locale); + void SetInputLocale(std::string const & locale); + void SetQuery(std::string const & query); inline void SetPosition(m2::PointD const & position) { m_position = position; } - inline string const & GetPivotRegion() const { return m_region; } + inline std::string const & GetPivotRegion() const { return m_region; } inline m2::PointD const & GetPosition() const { return m_position; } inline bool IsEmptyQuery() const { return m_prefix.empty() && m_tokens.empty(); } @@ -92,9 +94,9 @@ public: void ClearCaches(); void LoadCitiesBoundaries(); - void OnBookmarksCreated(vector> const & marks); - void OnBookmarksUpdated(vector> const & marks); - void OnBookmarksDeleted(vector const & marks); + void OnBookmarksCreated(std::vector> const & marks); + void OnBookmarksUpdated(std::vector> const & marks); + void OnBookmarksDeleted(std::vector const & marks); protected: Locales GetCategoryLocales() const; @@ -113,11 +115,11 @@ protected: CategoriesHolder const & m_categories; storage::CountryInfoGetter const & m_infoGetter; - string m_region; - string m_query; + std::string m_region; + std::string m_query; QueryTokens m_tokens; strings::UniString m_prefix; - set m_preferredTypes; + std::set m_preferredTypes; m2::RectD m_viewport; m2::PointD m_position;