[iOS][android] Fixed possible infinite recursion in downloader.

Signed-off-by: vng <viktor.govako@gmail.com>
This commit is contained in:
vng 2021-06-04 10:14:49 +03:00 committed by Roman Tsisyk
parent bfe401a602
commit bc3ef16d5d
2 changed files with 10 additions and 4 deletions

View file

@ -97,9 +97,11 @@ void BackgroundDownloaderAdapter::Download(QueuedCountry && queuedCountry)
auto urls = MakeUrlList(queuedCountry.GetRelativeUrl());
auto const path = queuedCountry.GetFileDownloadPath();
queuedCountry.OnStartDownloading();
// For safety reasons, add to the queue first and notify start downloading then,
// to avoid possible recursion.
m_queue.Append(QueuedCountry(queuedCountry));
m_queue.Append(std::move(queuedCountry));
queuedCountry.OnStartDownloading();
DownloadFromLastUrl(countryId, path, std::move(urls));
}

View file

@ -71,9 +71,13 @@ void BackgroundDownloaderAdapter::Download(QueuedCountry && queuedCountry)
auto urls = MakeUrlList(queuedCountry.GetRelativeUrl());
auto const path = queuedCountry.GetFileDownloadPath();
queuedCountry.OnStartDownloading();
// The order is important here: add to the queue first, notify start downloading then.
// Infinite recursion possible here, otherwise:
// OnStartDownloading -> NotifyStatusChanged -> processCountryEvent -> configDialog (?!)
// -> downloadNode for the same country if autodownload enabled -> Download.
m_queue.Append(QueuedCountry(queuedCountry));
m_queue.Append(std::move(queuedCountry));
queuedCountry.OnStartDownloading();
DownloadFromLastUrl(countryId, path, std::move(urls));
}