diff --git a/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp b/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp index 24f07a254f..9fa1192851 100644 --- a/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp +++ b/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp @@ -189,7 +189,7 @@ extern "C" LOG(LINFO, ("Finished URL list download for", curFile.m_fileName)); - GetServerList(req, curFile.m_urls); + GetServersList(req, curFile.m_urls); Storage const & storage = g_framework->GetStorage(); for (size_t i = 0; i < curFile.m_urls.size(); ++i) diff --git a/platform/servers_list.cpp b/platform/servers_list.cpp index 454c9fbf27..e0fa25d8b7 100644 --- a/platform/servers_list.cpp +++ b/platform/servers_list.cpp @@ -1,6 +1,6 @@ #include "platform/servers_list.hpp" + #include "platform/http_request.hpp" -#include "platform/settings.hpp" #include "platform/platform.hpp" #include "base/logging.hpp" @@ -11,7 +11,7 @@ namespace downloader { // Returns false if can't parse urls. Note that it also clears outUrls. -bool ParseServerList(string const & jsonStr, vector & outUrls) +bool ParseServerList(std::string const & jsonStr, std::vector & outUrls) { outUrls.clear(); try @@ -31,7 +31,7 @@ bool ParseServerList(string const & jsonStr, vector & outUrls) return !outUrls.empty(); } -void GetServerList(string const & src, vector & urls) +void GetServersList(std::string const & src, std::vector & urls) { if (!src.empty() && ParseServerList(src, urls)) return; @@ -40,9 +40,9 @@ void GetServerList(string const & src, vector & urls) LOG(LWARNING, ("Can't get servers list from request, using default servers:", urls)); } -void GetServerList(HttpRequest const & request, vector & urls) +void GetServersList(HttpRequest const & request, std::vector & urls) { auto const src = request.GetStatus() == HttpRequest::Status::Completed ? request.GetData() : ""; - GetServerList(src, urls); + GetServersList(src, urls); } } // namespace downloader diff --git a/platform/servers_list.hpp b/platform/servers_list.hpp index ae5b7f3df0..cdd11c7d96 100644 --- a/platform/servers_list.hpp +++ b/platform/servers_list.hpp @@ -1,12 +1,12 @@ #pragma once -#include "std/vector.hpp" -#include "std/string.hpp" +#include +#include namespace downloader { class HttpRequest; -void GetServerList(string const & src, vector & urls); -void GetServerList(HttpRequest const & request, vector & urls); +void GetServersList(std::string const & src, std::vector & urls); +void GetServersList(HttpRequest const & request, std::vector & urls); } // namespace downloader diff --git a/storage/http_map_files_downloader.cpp b/storage/http_map_files_downloader.cpp index ff7c9256b0..920dbe8f98 100644 --- a/storage/http_map_files_downloader.cpp +++ b/storage/http_map_files_downloader.cpp @@ -5,21 +5,25 @@ #include "base/assert.hpp" #include "base/string_utils.hpp" -#include "std/bind.hpp" +#include + +using namespace std::placeholders; namespace { class ErrorHttpRequest : public downloader::HttpRequest { - string m_filePath; public: - explicit ErrorHttpRequest(string const & filePath) + explicit ErrorHttpRequest(std::string const & filePath) : HttpRequest(Callback(), Callback()), m_filePath(filePath) { m_status = Status::Failed; } - virtual string const & GetData() const { return m_filePath; } + virtual std::string const & GetData() const { return m_filePath; } + +private: + std::string m_filePath; }; } // anonymous namespace @@ -30,15 +34,16 @@ HttpMapFilesDownloader::~HttpMapFilesDownloader() CHECK_THREAD_CHECKER(m_checker, ()); } -void HttpMapFilesDownloader::Download(vector const & urls, string const & path, - int64_t size, +void HttpMapFilesDownloader::Download(std::vector const & urls, + std::string const & path, int64_t size, FileDownloadedCallback const & onDownloaded, DownloadingProgressCallback const & onProgress) { CHECK_THREAD_CHECKER(m_checker, ()); m_request.reset(downloader::HttpRequest::GetFile( - urls, path, size, bind(&HttpMapFilesDownloader::OnMapFileDownloaded, this, onDownloaded, _1), - bind(&HttpMapFilesDownloader::OnMapFileDownloadingProgress, this, onProgress, _1))); + urls, path, size, + std::bind(&HttpMapFilesDownloader::OnMapFileDownloaded, this, onDownloaded, _1), + std::bind(&HttpMapFilesDownloader::OnMapFileDownloadingProgress, this, onProgress, _1))); if (!m_request) { diff --git a/storage/http_map_files_downloader.hpp b/storage/http_map_files_downloader.hpp index 1ae5fe4248..b95e77b777 100644 --- a/storage/http_map_files_downloader.hpp +++ b/storage/http_map_files_downloader.hpp @@ -1,9 +1,15 @@ #pragma once #include "storage/map_files_downloader_with_ping.hpp" + #include "platform/http_request.hpp" + #include "base/thread_checker.hpp" -#include "std/unique_ptr.hpp" + +#include +#include +#include +#include namespace storage { @@ -23,7 +29,7 @@ public: private: // MapFilesDownloaderWithServerList overrides: - void Download(vector const & urls, string const & path, int64_t size, + void Download(std::vector const & urls, std::string const & path, int64_t size, FileDownloadedCallback const & onDownloaded, DownloadingProgressCallback const & onProgress) override; @@ -32,7 +38,7 @@ private: void OnMapFileDownloadingProgress(DownloadingProgressCallback const & onProgress, downloader::HttpRequest & request); - unique_ptr m_request; + std::unique_ptr m_request; DECLARE_THREAD_CHECKER(m_checker); }; diff --git a/storage/map_files_downloader.cpp b/storage/map_files_downloader.cpp index 6c73c1efdc..e5604471a6 100644 --- a/storage/map_files_downloader.cpp +++ b/storage/map_files_downloader.cpp @@ -35,18 +35,18 @@ void MapFilesDownloader::DownloadMapFile(std::string const & relativeUrl, FileDownloadedCallback const & onDownloaded, DownloadingProgressCallback const & onProgress) { - if (m_serverList.empty()) + if (m_serversList.empty()) { - GetServersList([=](ServersList const & serverList) + GetServersList([=](ServersList const & serversList) { - m_serverList = serverList; - auto const urls = MakeUrlList(m_serverList, relativeUrl); + m_serversList = serversList; + auto const urls = MakeUrlList(m_serversList, relativeUrl); Download(urls, path, size, onDownloaded, onProgress); }); } else { - auto const urls = MakeUrlList(m_serverList, relativeUrl); + auto const urls = MakeUrlList(m_serversList, relativeUrl); Download(urls, path, size, onDownloaded, onProgress); } } @@ -74,7 +74,7 @@ std::string MapFilesDownloader::MakeFullUrlLegacy(string const & baseUrl, string void MapFilesDownloader::SetServersList(ServersList const & serversList) { - m_serverList = serversList; + m_serversList = serversList; } // static @@ -84,7 +84,7 @@ MapFilesDownloader::ServersList MapFilesDownloader::LoadServersList() std::string httpResult; request.RunHttpRequest(httpResult); std::vector urls; - downloader::GetServerList(httpResult, urls); + downloader::GetServersList(httpResult, urls); CHECK(!urls.empty(), ()); return urls; } diff --git a/storage/map_files_downloader.hpp b/storage/map_files_downloader.hpp index b1e461f86d..b2dd5577a5 100644 --- a/storage/map_files_downloader.hpp +++ b/storage/map_files_downloader.hpp @@ -46,7 +46,7 @@ public: static std::string MakeRelativeUrl(std::string const & fileName, int64_t dataVersion, uint64_t diffVersion); - static std::string MakeFullUrlLegacy(string const & baseUrl, string const & fileName, + static std::string MakeFullUrlLegacy(std::string const & baseUrl, std::string const & fileName, int64_t dataVersion); void SetServersList(ServersList const & serversList); @@ -59,12 +59,11 @@ private: /// Default implementation asynchronously receives a list of all servers that can be asked /// for a map file and invokes callback on the main thread. virtual void GetServersList(ServersListCallback const & callback); - /// This method must be implemented to asynchronous downloading file - /// from provided |urls| and saving result into |path|. + /// Asynchronously downloads the file from provided |urls| and saves result to |path|. virtual void Download(std::vector const & urls, std::string const & path, int64_t size, FileDownloadedCallback const & onDownloaded, DownloadingProgressCallback const & onProgress) = 0; - ServersList m_serverList; + ServersList m_serversList; }; } // namespace storage diff --git a/storage/map_files_downloader_with_ping.cpp b/storage/map_files_downloader_with_ping.cpp index 326ee61969..a5da8f9ee5 100644 --- a/storage/map_files_downloader_with_ping.cpp +++ b/storage/map_files_downloader_with_ping.cpp @@ -10,6 +10,8 @@ namespace storage { void MapFilesDownloaderWithPing::GetServersList(ServersListCallback const & callback) { + ASSERT(callback , ()); + GetPlatform().RunTask(Platform::Thread::Network, [callback]() { auto urls = LoadServersList(); diff --git a/storage/map_files_downloader_with_ping.hpp b/storage/map_files_downloader_with_ping.hpp index f5c0b2c4d3..3d94fb7ae7 100644 --- a/storage/map_files_downloader_with_ping.hpp +++ b/storage/map_files_downloader_with_ping.hpp @@ -7,6 +7,7 @@ namespace storage class MapFilesDownloaderWithPing : public MapFilesDownloader { private: + // MapFilesDownloader overrides: void GetServersList(ServersListCallback const & callback) override; }; } // namespace storage diff --git a/storage/storage_tests/fake_map_files_downloader.cpp b/storage/storage_tests/fake_map_files_downloader.cpp index 666648afdf..ef4568fccb 100644 --- a/storage/storage_tests/fake_map_files_downloader.cpp +++ b/storage/storage_tests/fake_map_files_downloader.cpp @@ -74,7 +74,7 @@ void FakeMapFilesDownloader::DownloadNextChunk(uint64_t timestamp) if (m_progress.first == m_progress.second) { - m_taskRunner.PostTask(bind(m_onDownloaded, downloader::HttpRequest::Status::Completed, m_progress)); + m_taskRunner.PostTask(std::bind(m_onDownloaded, downloader::HttpRequest::Status::Completed, m_progress)); Reset(); return; } @@ -85,7 +85,7 @@ void FakeMapFilesDownloader::DownloadNextChunk(uint64_t timestamp) m_writer->Write(kZeroes.data(), bs); m_writer->Flush(); - m_taskRunner.PostTask(bind(m_onProgress, m_progress)); + m_taskRunner.PostTask(std::bind(m_onProgress, m_progress)); m_taskRunner.PostTask(std::bind(&FakeMapFilesDownloader::DownloadNextChunk, this, timestamp)); } } // namespace storage diff --git a/xcode/storage/storage.xcodeproj/project.pbxproj b/xcode/storage/storage.xcodeproj/project.pbxproj index c9643d0cdd..3eb37bdae0 100644 --- a/xcode/storage/storage.xcodeproj/project.pbxproj +++ b/xcode/storage/storage.xcodeproj/project.pbxproj @@ -22,6 +22,9 @@ 3971140A229D7C6D003915E5 /* helpers.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 678338D31C723B1A00FD6263 /* helpers.hpp */; }; 3971141C229D8983003915E5 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3971141B229D8983003915E5 /* CoreLocation.framework */; }; 3971141E229D89F4003915E5 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3971141D229D89F4003915E5 /* Security.framework */; }; + 3D497EA123292706000FB57D /* map_files_downloader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D497E9E23292706000FB57D /* map_files_downloader.cpp */; }; + 3D497EA223292706000FB57D /* map_files_downloader_with_ping.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3D497E9F23292706000FB57D /* map_files_downloader_with_ping.hpp */; }; + 3D497EA323292706000FB57D /* map_files_downloader_with_ping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D497EA023292706000FB57D /* map_files_downloader_with_ping.cpp */; }; 3DCD414620D80C0900143533 /* country_info_reader_light.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 3DCD414420D80C0800143533 /* country_info_reader_light.hpp */; }; 3DCD414720D80C0900143533 /* country_info_reader_light.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DCD414520D80C0900143533 /* country_info_reader_light.cpp */; }; 3DCD414920D80C1B00143533 /* lightweight_matching_tests.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DCD414820D80C1B00143533 /* lightweight_matching_tests.cpp */; }; @@ -209,6 +212,9 @@ 39711419229D7F75003915E5 /* libMopub.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libMopub.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3971141B229D8983003915E5 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; }; 3971141D229D89F4003915E5 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; + 3D497E9E23292706000FB57D /* map_files_downloader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = map_files_downloader.cpp; sourceTree = ""; }; + 3D497E9F23292706000FB57D /* map_files_downloader_with_ping.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = map_files_downloader_with_ping.hpp; sourceTree = ""; }; + 3D497EA023292706000FB57D /* map_files_downloader_with_ping.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = map_files_downloader_with_ping.cpp; sourceTree = ""; }; 3DCD414420D80C0800143533 /* country_info_reader_light.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = country_info_reader_light.hpp; sourceTree = ""; }; 3DCD414520D80C0900143533 /* country_info_reader_light.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = country_info_reader_light.cpp; sourceTree = ""; }; 3DCD414820D80C1B00143533 /* lightweight_matching_tests.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lightweight_matching_tests.cpp; sourceTree = ""; }; @@ -576,6 +582,9 @@ 675342E21A3F59EF00A0A8C3 /* storage */ = { isa = PBXGroup; children = ( + 3D497EA023292706000FB57D /* map_files_downloader_with_ping.cpp */, + 3D497E9F23292706000FB57D /* map_files_downloader_with_ping.hpp */, + 3D497E9E23292706000FB57D /* map_files_downloader.cpp */, 402873402295A91F0036AA1C /* country_tree.cpp */, 4028733F2295A91E0036AA1C /* country_tree.hpp */, 402873412295A91F0036AA1C /* downloader_search_params.hpp */, @@ -670,6 +679,7 @@ 6753430F1A3F5A2600A0A8C3 /* country.hpp in Headers */, F6BC312B2034366100F677FE /* pinger.hpp in Headers */, 3DCD414620D80C0900143533 /* country_info_reader_light.hpp in Headers */, + 3D497EA223292706000FB57D /* map_files_downloader_with_ping.hpp in Headers */, 6753430A1A3F5A2600A0A8C3 /* country_decl.hpp in Headers */, 67247FCF1C60BA8A00EDE56A /* fake_map_files_downloader.hpp in Headers */, 67AF4A011BC579DD0048B1ED /* country_info_getter.hpp in Headers */, @@ -763,6 +773,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -844,8 +855,10 @@ buildActionMask = 2147483647; files = ( 56D8CB991CAC17A80003F420 /* test_defines.cpp in Sources */, + 3D497EA323292706000FB57D /* map_files_downloader_with_ping.cpp in Sources */, 401ECED41F56C50900DFDF76 /* country_parent_getter.cpp in Sources */, 56D0E4811F8E40340084B18C /* routing_helpers.cpp in Sources */, + 3D497EA123292706000FB57D /* map_files_downloader.cpp in Sources */, 67AF4A001BC579DD0048B1ED /* country_info_getter.cpp in Sources */, 34B093221C61F9BA0066F4C3 /* storage_helpers.cpp in Sources */, 4586D0C71F48126A00DF9CE5 /* diff_manager.cpp in Sources */,