From f510b577aadad43c2ade55c0be3f8289209d559f Mon Sep 17 00:00:00 2001 From: Chris Loer Date: Tue, 16 Oct 2018 14:42:20 -0700 Subject: [core] Promote DefaultFileSource::put to general use. --- include/mbgl/storage/default_file_source.hpp | 12 +++++++++++- platform/default/default_file_source.cpp | 8 ++++---- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/include/mbgl/storage/default_file_source.hpp b/include/mbgl/storage/default_file_source.hpp index 929fb3d7c3..6ce7e8c6f9 100644 --- a/include/mbgl/storage/default_file_source.hpp +++ b/include/mbgl/storage/default_file_source.hpp @@ -160,10 +160,20 @@ public: * expired while the file source was paused. */ void resume(); + + /* + * Insert the provided resource into the ambient cache + * + * Consumers of the resource will expect the uncompressed version; the + * OfflineDatabase will determine whether to compress the data on disk. + * This call is asynchronous: the data may not be immediately available + * for in-progress requests, although subsequent requests should have + * access to the cached data. + */ + void put(const Resource&, const Response&); // For testing only. void setOnlineStatus(bool); - void put(const Resource&, const Response&); class Impl; diff --git a/platform/default/default_file_source.cpp b/platform/default/default_file_source.cpp index 99e5c4dff3..cad68e7de9 100644 --- a/platform/default/default_file_source.cpp +++ b/platform/default/default_file_source.cpp @@ -302,6 +302,10 @@ void DefaultFileSource::pause() { void DefaultFileSource::resume() { impl->resume(); } + +void DefaultFileSource::put(const Resource& resource, const Response& response) { + impl->actor().invoke(&Impl::put, resource, response); +} // For testing only: @@ -309,8 +313,4 @@ void DefaultFileSource::setOnlineStatus(const bool status) { impl->actor().invoke(&Impl::setOnlineStatus, status); } -void DefaultFileSource::put(const Resource& resource, const Response& response) { - impl->actor().invoke(&Impl::put, resource, response); -} - } // namespace mbgl -- cgit v1.2.1