diff --git a/android/jni/com/mapswithme/maps/Framework.cpp b/android/jni/com/mapswithme/maps/Framework.cpp index 06667b0ef0..ca5ded20b9 100644 --- a/android/jni/com/mapswithme/maps/Framework.cpp +++ b/android/jni/com/mapswithme/maps/Framework.cpp @@ -13,7 +13,6 @@ #include "../../../../../indexer/drawing_rules.hpp" #include "../../../../../map/render_policy_st.hpp" -#include "../../../../../map/partial_render_policy.hpp" #include "../../../../../map/tiling_render_policy_st.hpp" #include "../../../../../map/framework.hpp" @@ -48,7 +47,6 @@ namespace android ASSERT(g_framework == 0, ()); g_framework = this; - m_work.InitStorage(m_storage); // @TODO refactor storage m_storage.ReInitCountries(false); } @@ -88,7 +86,6 @@ namespace android p.m_glyphCacheID = m_rm->guiThreadGlyphCacheID(); p.m_frameBuffer = make_shared_ptr(new yg::gl::FrameBuffer(true)); p.m_skinName = pl.SkinName(); - p.m_useTinyStorage = true; m_drawer = make_shared_ptr(new DrawerYG(p)); } @@ -117,9 +114,7 @@ namespace android 2 * 1024 * 1024, 1, yg::Rt8Bpp, - true)); - - m_rm->initTinyStorage(300 * sizeof(yg::gl::Vertex), 600 * sizeof(unsigned short), 30); + false)); Platform::FilesList fonts; pl.GetFontNames(fonts); @@ -133,7 +128,7 @@ namespace android drule::rules().ForEachRule(make_all_invalid(GetPlatform().CpuCores() + 1)); // temporary workaround - m_work.SetRenderPolicy(shared_ptr(new PartialRenderPolicy(m_handle, bind(&::Framework::DrawModel, &m_work, _1, _2, _3, _4, _5, false)))); + m_work.SetRenderPolicy(shared_ptr(new RenderPolicyST(m_handle, bind(&::Framework::DrawModel, &m_work, _1, _2, _3, _4, _5, false)))); m_rc = make_shared_ptr(new android::RenderContext()); @@ -156,7 +151,7 @@ namespace android storage::Storage & Framework::Storage() { - return m_storage; + return m_work.Storage(); } void Framework::Resize(int w, int h) diff --git a/android/jni/com/mapswithme/maps/Framework.hpp b/android/jni/com/mapswithme/maps/Framework.hpp index 57a9e50759..90f235b474 100644 --- a/android/jni/com/mapswithme/maps/Framework.hpp +++ b/android/jni/com/mapswithme/maps/Framework.hpp @@ -13,8 +13,6 @@ #include "../../../../../map/window_handle.hpp" #include "../../../../../map/feature_vec_model.hpp" -#include "../../../../../storage/storage.hpp" - namespace android { class Framework @@ -30,8 +28,6 @@ namespace android shared_ptr m_rc; ::Framework m_work; - storage::Storage m_storage; - void CallRepaint(); diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm index 733f03a610..0fd095894f 100644 --- a/iphone/Maps/Classes/MapViewController.mm +++ b/iphone/Maps/Classes/MapViewController.mm @@ -9,7 +9,6 @@ #include "../../yg/internal/opengl.hpp" #include "../../yg/screen.hpp" #include "../../map/drawer_yg.hpp" -#include "../../storage/storage.hpp" typedef Framework framework_t; @@ -19,7 +18,6 @@ typedef Framework framework_t; // @TODO Make m_framework and m_storage MapsAppDelegate properties instead of global variables. framework_t * m_framework = NULL; -storage::Storage m_storage; - (void) ZoomToRect: (m2::RectD const &) rect { @@ -97,7 +95,7 @@ storage::Storage m_storage; - (IBAction)OnSettingsClicked:(id)sender { - [[[MapsAppDelegate theApp] settingsManager] Show:self WithStorage:&m_storage]; + [[[MapsAppDelegate theApp] settingsManager] Show:self WithStorage:&m_framework->Storage()]; } - (IBAction)OnSearchClicked:(id)sender @@ -125,7 +123,6 @@ storage::Storage m_storage; shared_ptr resourceManager = [(EAGLView*)self.view resourceManager]; m_framework = FrameworkFactory::CreateFramework(windowHandle, 40); - m_framework->InitStorage(m_storage); v.framework = m_framework; m_StickyThreshold = 10; diff --git a/map/benchmark_framework.cpp b/map/benchmark_framework.cpp index 2491a45df0..4b52253887 100644 --- a/map/benchmark_framework.cpp +++ b/map/benchmark_framework.cpp @@ -111,25 +111,29 @@ void ForEachBenchmarkRecord(ToDo & toDo) } } -class FirstReaderAdder : public ReadersAdder +struct MapsCollector { - typedef ReadersAdder base_type; -public: - FirstReaderAdder(maps_list_t & lst) : base_type(GetPlatform(), lst) {} + vector m_maps; void operator() (vector const & v) { if (!v[0].empty()) if (v[0][0] == '#') return; - base_type::operator() (v[0]); + m_maps.push_back(v[0]); } }; template -void BenchmarkFramework::EnumLocalMaps(typename base_type::maps_list_t & filesList) +void BenchmarkFramework::ReAddLocalMaps() { - FirstReaderAdder adder(filesList); - ForEachBenchmarkRecord(adder); + // remove all previously added maps in framework constructor + Platform::FilesList files; + base_type::GetLocalMaps(files); + for_each(files.begin(), files.end(), bind(&base_type::RemoveMap, this, _1)); + // add only maps needed for benchmarks + MapsCollector collector; + ForEachBenchmarkRecord(collector); + for_each(collector.m_maps.begin(), collector.m_maps.end(), bind(&base_type::AddMap, this, _1)); } template @@ -152,6 +156,8 @@ BenchmarkFramework::BenchmarkFramework(shared_ptr const & m_startTime = my::FormatCurrentTime(); base_type::m_informationDisplay.enableBenchmarkInfo(true); + + ReAddLocalMaps(); } template diff --git a/map/benchmark_framework.hpp b/map/benchmark_framework.hpp index 69f24cfe51..1a5239dc94 100644 --- a/map/benchmark_framework.hpp +++ b/map/benchmark_framework.hpp @@ -60,7 +60,8 @@ private: void InitBenchmark(); - void EnumLocalMaps(typename base_type::maps_list_t & filesList); + /// Removes all maps added in base class and adds only benchmarking maps + void ReAddLocalMaps(); public: diff --git a/map/framework.cpp b/map/framework.cpp index 15eb031e21..4019dc14d9 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -146,6 +146,27 @@ Framework::Framework(shared_ptr windowHandle, m_informationDisplay.enableLog(isVisualLogEnabled, m_windowHandle.get()); m_informationDisplay.setVisualScale(visScale); + m_model.InitClassificator(); + + // initializes model with locally downloaded maps + LOG(LDEBUG, ("Initializing storage")); + // add maps to the model + Platform::FilesList maps; + GetLocalMaps(maps); + try + { + for_each(maps.begin(), maps.end(), bind(&Framework::AddMap, this, _1)); + } + catch (RootException const & e) + { + LOG(LERROR, ("Can't add map: ", e.what())); + } + + m_storage.Init(bind(&Framework::AddMap, this, _1), + bind(&Framework::RemoveMap, this, _1), + bind(&Framework::InvalidateRect, this, _1)); + LOG(LDEBUG, ("Storage initialized")); + // set language priorities languages::CodesT langCodes; languages::GetCurrentSettings(langCodes); @@ -153,20 +174,18 @@ Framework::Framework(shared_ptr windowHandle, } template -void Framework::EnumLocalMaps(maps_list_t & filesList) +void Framework::GetLocalMaps(vector & outMaps) { Platform & pl = GetPlatform(); - + outMaps.clear(); // scan for pre-installed maps in resources string const resPath = pl.ResourcesDir(); Platform::FilesList resFiles; pl.GetFilesInDir(resPath, "*" DATA_FILE_EXTENSION, resFiles); - // scan for probably updated maps in data dir string const dataPath = pl.WritableDir(); Platform::FilesList dataFiles; pl.GetFilesInDir(dataPath, "*" DATA_FILE_EXTENSION, dataFiles); - // wipe out same maps from resources, which have updated // downloaded versions in data path for (Platform::FilesList::iterator it = resFiles.begin(); it != resFiles.end();) @@ -177,17 +196,10 @@ void Framework::EnumLocalMaps(maps_list_t & filesList) else ++it; } - - try - { - filesList.clear(); - for_each(resFiles.begin(), resFiles.end(), ReadersAdder(pl, filesList)); - for_each(dataFiles.begin(), dataFiles.end(), ReadersAdder(pl, filesList)); - } - catch (RootException const & e) - { - LOG(LERROR, ("Can't add map: ", e.what())); - } + for (size_t i = 0; i < resFiles.size(); ++i) + outMaps.push_back(resFiles[i]); + for (size_t i = 0; i < dataFiles.size(); ++i) + outMaps.push_back(dataFiles[i]); } template diff --git a/map/framework.hpp b/map/framework.hpp index 3640531f48..02fc439cbe 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -10,6 +10,8 @@ #include "../defines.hpp" +#include "../storage/storage.hpp" + #include "../indexer/mercator.hpp" #include "../indexer/data_header.hpp" #include "../indexer/scales.hpp" @@ -55,39 +57,7 @@ typedef function SearchCallbackT; class DrawerYG; class RenderPolicy; -struct PathAppender -{ - string const & m_path; - PathAppender(string const & path) : m_path(path) {} - void operator()(string & elem) - { - elem.insert(elem.begin(), m_path.begin(), m_path.end()); - } -}; - -class ReadersAdder -{ -protected: - - typedef vector maps_list_t; - -private: - Platform & m_pl; - maps_list_t & m_lst; - -public: - ReadersAdder(Platform & pl, maps_list_t & lst) : m_pl(pl), m_lst(lst) {} - - void operator() (string const & name) - { - m_lst.push_back(name); - } -}; - -template -< - class TModel -> +template class Framework { protected: @@ -120,7 +90,7 @@ protected: mutable threads::Mutex m_modelSyn; -// int m_tileSize; + storage::Storage m_storage; my::Timer m_timer; @@ -128,11 +98,15 @@ protected: void AddMap(string const & file); void RemoveMap(string const & datFile); + /// Only file names + void GetLocalMaps(vector & outMaps); public: Framework(shared_ptr windowHandle, size_t bottomShift); virtual ~Framework(); + storage::Storage & Storage() { return m_storage; } + void OnLocationStatusChanged(location::TLocationStatus newStatus); void OnGpsUpdate(location::GpsInfo const & info); void OnCompassUpdate(location::CompassInfo const & info); @@ -144,28 +118,6 @@ public: model_t & get_model(); - typedef vector maps_list_t; - virtual void EnumLocalMaps(maps_list_t & filesList); - - /// Initialization. - template - void InitStorage(TStorage & storage) - { - m_model.InitClassificator(); - - typename TStorage::TEnumMapsFunction enumMapsFn; - - enumMapsFn = bind(&Framework::EnumLocalMaps, this, _1); - - LOG(LDEBUG, ("Initializing storage")); - // initializes model with locally downloaded maps - storage.Init(bind(&Framework::AddMap, this, _1), - bind(&Framework::RemoveMap, this, _1), - bind(&Framework::InvalidateRect, this, _1), - enumMapsFn); - LOG(LDEBUG, ("Storage initialized")); - } - bool IsEmptyModel(); // Cleanup. diff --git a/qt/draw_widget.cpp b/qt/draw_widget.cpp index 43241ecf51..5e5d3c9651 100644 --- a/qt/draw_widget.cpp +++ b/qt/draw_widget.cpp @@ -2,8 +2,6 @@ #include "proxystyle.hpp" #include "slider_ctrl.hpp" -#include "../storage/storage.hpp" - #include "../platform/settings.hpp" #include @@ -46,7 +44,7 @@ namespace qt m_state = EStopped; } - DrawWidget::DrawWidget(QWidget * pParent, Storage & storage) + DrawWidget::DrawWidget(QWidget * pParent) : base_type(pParent), m_handle(new WindowHandle()), m_isInitialized(false), @@ -57,8 +55,6 @@ namespace qt m_redrawInterval(100), m_pScale(0) { - m_framework->InitStorage(storage); - m_timer = new QTimer(this); m_handle->setUpdatesEnabled(false); diff --git a/qt/draw_widget.hpp b/qt/draw_widget.hpp index 4ee5a13378..11524140c9 100644 --- a/qt/draw_widget.hpp +++ b/qt/draw_widget.hpp @@ -13,12 +13,6 @@ #include -//class FileReader; -//template class ReaderSource; -//class FileWriter; - -namespace storage { class Storage; } - namespace qt { class QScaleSlider; @@ -92,7 +86,7 @@ namespace qt void AnimTimerElapsed(); public: - DrawWidget(QWidget * pParent, storage::Storage & storage); + DrawWidget(QWidget * pParent); void SetScaleControl(QScaleSlider * pScale); diff --git a/qt/mainwindow.cpp b/qt/mainwindow.cpp index 5fbebd77cf..cb73d15e39 100644 --- a/qt/mainwindow.cpp +++ b/qt/mainwindow.cpp @@ -42,7 +42,7 @@ MainWindow::MainWindow() : m_updateDialog(0) #endif // NO_DOWNLOADER { - m_pDrawWidget = new DrawWidget(this, m_storage); + m_pDrawWidget = new DrawWidget(this); m_locationService.reset(CreateDesktopLocationService(*this)); CreateNavigationBar(); @@ -368,7 +368,7 @@ void MainWindow::OnPreferences() void MainWindow::ShowUpdateDialog() { if (!m_updateDialog) - m_updateDialog = new UpdateDialog(this, m_storage); + m_updateDialog = new UpdateDialog(this, m_pDrawWidget->GetFramework().Storage()); m_updateDialog->ShowDialog(); } diff --git a/qt/mainwindow.hpp b/qt/mainwindow.hpp index dd1b9460c9..38f9511b15 100644 --- a/qt/mainwindow.hpp +++ b/qt/mainwindow.hpp @@ -1,7 +1,5 @@ #pragma once -#include "../storage/storage.hpp" - #include "../platform/location_service.hpp" #include "../std/scoped_ptr.hpp" @@ -29,8 +27,6 @@ namespace qt UpdateDialog * m_updateDialog; #endif // NO_DOWNLOADER - storage::Storage m_storage; - scoped_ptr m_locationService; Q_OBJECT diff --git a/storage/storage.cpp b/storage/storage.cpp index 20408018a8..413116068a 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -45,19 +45,13 @@ namespace storage // } //////////////////////////////////////////////////////////////////////////// - void Storage::Init(TAddMapFunction addFunc, TRemoveMapFunction removeFunc, TUpdateRectFunction updateRectFunc, TEnumMapsFunction enumMapsFunc) + void Storage::Init(TAddMapFunction addFunc, TRemoveMapFunction removeFunc, TUpdateRectFunction updateRectFunc) { m_currentVersion = static_cast(Version::BUILD); m_addMap = addFunc; m_removeMap = removeFunc; m_updateRect = updateRectFunc; - - map_list_t filesList; - enumMapsFunc(filesList); - - for (map_list_t::iterator it = filesList.begin(); it != filesList.end(); ++it) - m_addMap(*it); } string Storage::UpdateBaseUrl() const diff --git a/storage/storage.hpp b/storage/storage.hpp index 121782d7e7..ecda86e23b 100644 --- a/storage/storage.hpp +++ b/storage/storage.hpp @@ -108,8 +108,7 @@ namespace storage /// @TODO temporarily made public for Android, refactor void ReInitCountries(bool forceReload); - /// Adds all locally downloaded maps to the model - void Init(TAddMapFunction addFunc, TRemoveMapFunction removeFunc, TUpdateRectFunction updateRectFunc, TEnumMapsFunction enumMapFunction); + void Init(TAddMapFunction addFunc, TRemoveMapFunction removeFunc, TUpdateRectFunction updateRectFunc); /// @name Called from DownloadManager //@{