[storage] diffs are injected into downloader

This commit is contained in:
Arsentiy Milchakov 2019-09-23 11:05:44 +03:00 committed by Roman Kuznetsov
parent 9ae91337c9
commit 5f73de653a
3 changed files with 13 additions and 0 deletions

View file

@ -77,11 +77,19 @@ void MapFilesDownloader::SetServersList(ServersList const & serversList)
m_serversList = serversList;
}
void MapFilesDownloader::SetDiffs(diffs::NameDiffInfoMap const & diffs)
{
m_diffs = diffs;
}
// static
MapFilesDownloader::ServersList MapFilesDownloader::LoadServersList()
{
auto constexpr kTimeoutInSeconds = 10.0;
platform::HttpClient request(GetPlatform().MetaServerUrl());
std::string httpResult;
request.SetTimeout(kTimeoutInSeconds);
request.RunHttpRequest(httpResult);
std::vector<std::string> urls;
downloader::GetServersList(httpResult, urls);

View file

@ -1,5 +1,7 @@
#pragma once
#include "storage/diff_scheme/diff_types.hpp"
#include "platform/http_request.hpp"
#include "platform/safe_callback.hpp"
@ -50,6 +52,7 @@ public:
int64_t dataVersion);
void SetServersList(ServersList const & serversList);
void SetDiffs(diffs::NameDiffInfoMap const & diffs);
protected:
// Synchronously loads list of servers by http client.
@ -65,5 +68,6 @@ private:
DownloadingProgressCallback const & onProgress) = 0;
ServersList m_serversList;
diffs::NameDiffInfoMap m_diffs;
};
} // namespace storage

View file

@ -1642,6 +1642,7 @@ void Storage::SetStartDownloadingCallback(StartDownloadingCallback const & cb)
void Storage::OnDiffStatusReceived(diffs::NameDiffInfoMap && diffs)
{
m_downloader->SetDiffs(diffs);
m_diffManager.Load(move(diffs));
if (m_diffManager.GetStatus() != diffs::Status::NotAvailable)
{