[ugc] UGC Api prototype.

This commit is contained in:
Yuri Gorshenin 2017-06-19 15:25:00 +03:00 committed by Yuri Gorshenin
parent 790817bde6
commit 2abc1da6f1
11 changed files with 94 additions and 0 deletions

View file

@ -322,6 +322,7 @@ add_subdirectory(tracking)
add_subdirectory(traffic)
add_subdirectory(partners_api)
add_subdirectory(local_ads)
add_subdirectory(ugc)
if (PLATFORM_DESKTOP)
add_subdirectory(openlr)

View file

@ -363,6 +363,7 @@ void Framework::Migrate(bool keepDownloaded)
m_model.Clear();
GetStorage().Migrate(keepDownloaded ? existedCountries : TCountriesVec());
InitCountryInfoGetter();
InitUGC();
InitSearchEngine();
InitCityFinder();
InitTaxiEngine();
@ -1453,6 +1454,13 @@ void Framework::InitCountryInfoGetter()
m_infoGetter->InitAffiliationsInfo(&m_storage.GetAffiliations());
}
void Framework::InitUGC()
{
ASSERT(!m_ugcApi.get(), ("InitUGC() must be called only once."));
m_ugcApi = make_unique<ugc::Api>(m_model.GetIndex());
}
void Framework::InitSearchEngine()
{
ASSERT(!m_searchEngine.get(), ("InitSearchEngine() must be called only once."));

View file

@ -21,6 +21,8 @@
#include "drape/oglcontextfactory.hpp"
#include "ugc/api.hpp"
#include "indexer/data_header.hpp"
#include "indexer/index_helpers.hpp"
#include "indexer/map_style.hpp"
@ -156,6 +158,8 @@ protected:
// search::Engine and, therefore, destroyed after search::Engine.
unique_ptr<storage::CountryInfoGetter> m_infoGetter;
unique_ptr<ugc::Api> m_ugcApi;
unique_ptr<search::Engine> m_searchEngine;
search::QuerySaver m_searchQuerySaver;
@ -306,6 +310,8 @@ public:
Index const & GetIndex() const { return m_model.GetIndex(); }
ugc::Api & GetUGCApi() { return *m_ugcApi; }
search::Engine & GetSearchEngine() { return *m_searchEngine; }
search::Engine const & GetSearchEngine() const { return *m_searchEngine; }
@ -524,6 +530,7 @@ private:
};
void InitCountryInfoGetter();
void InitUGC();
void InitSearchEngine();
DisplacementModeManager m_displacementModeManager;

View file

@ -32,6 +32,7 @@ omim_link_libraries(
storage
tracking
drape
ugc
indexer
partners_api
local_ads

View file

@ -85,6 +85,7 @@ omim_link_libraries(
tracking
traffic
routing_common
ugc
indexer
drape
partners_api

View file

@ -45,6 +45,7 @@ omim_link_libraries(
tracking
traffic
routing_common
ugc
indexer
drape
partners_api

View file

@ -27,6 +27,7 @@ omim_link_libraries(
storage
tracking
traffic
ugc
indexer
drape
partners_api

View file

@ -33,6 +33,7 @@ omim_link_libraries(
search
routing
routing_common
ugc
indexer
platform_tests_support
osrm

9
ugc/CMakeLists.txt Normal file
View file

@ -0,0 +1,9 @@
project(ugc)
set(
SRC
api.cpp
api.hpp
)
add_library(${PROJECT_NAME} ${SRC})

34
ugc/api.cpp Normal file
View file

@ -0,0 +1,34 @@
#include "ugc/api.hpp"
#include "indexer/feature_decl.hpp"
#include "platform/platform.hpp"
using namespace std;
namespace ugc
{
Api::Api(Index const & index) : m_index(index) {}
void Api::GetStaticUGC(FeatureID const & id, Callback callback)
{
m_thread.Push([=]() { GetStaticUGCImpl(id, callback); });
}
void Api::GetDynamicUGC(FeatureID const & id, Callback callback)
{
m_thread.Push([=]() { GetDynamicUGCImpl(id, callback); });
}
void Api::GetStaticUGCImpl(FeatureID const & /* id */, Callback callback)
{
// TODO (@y, @mgsergio): retrieve static UGC
GetPlatform().RunOnGuiThread(callback);
}
void Api::GetDynamicUGCImpl(FeatureID const & /* id */, Callback callback)
{
// TODO (@y, @mgsergio): retrieve dynamic UGC
GetPlatform().RunOnGuiThread(callback);
}
} // namespace ugc

30
ugc/api.hpp Normal file
View file

@ -0,0 +1,30 @@
#pragma once
#include "base/worker_thread.hpp"
#include <functional>
class Index;
struct FeatureID;
namespace ugc
{
class Api
{
public:
// TODO (@y, @mgsergio): replace void() by void(UGC const &).
using Callback = std::function<void()>;
explicit Api(Index const & index);
void GetStaticUGC(FeatureID const & id, Callback callback);
void GetDynamicUGC(FeatureID const & id, Callback callback);
private:
void GetStaticUGCImpl(FeatureID const & id, Callback callback);
void GetDynamicUGCImpl(FeatureID const & id, Callback callback);
Index const & m_index;
base::WorkerThread m_thread;
};
} // namespace ugc