From a0584ea7a19b377cd0a578bee2c2610aa8533cd3 Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Wed, 26 Feb 2020 12:38:24 +0300 Subject: [PATCH] Moved all destruction calls of DictLoader to main thread. --- .../chat_helpers/spellchecker_common.cpp | 28 ++++++++----------- .../chat_helpers/spellchecker_common.h | 1 + 2 files changed, 13 insertions(+), 16 deletions(-) diff --git a/Telegram/SourceFiles/chat_helpers/spellchecker_common.cpp b/Telegram/SourceFiles/chat_helpers/spellchecker_common.cpp index ee4b0d7c6..881a495dc 100644 --- a/Telegram/SourceFiles/chat_helpers/spellchecker_common.cpp +++ b/Telegram/SourceFiles/chat_helpers/spellchecker_common.cpp @@ -133,27 +133,22 @@ void DownloadDictionaryInBackground( const auto id = langs[counter]; counter++; const auto destroyer = [=] { - // This is a temporary workaround. - const auto copyId = id; - const auto copyLangs = langs; - const auto copySession = session; - const auto copyCounter = counter; BackgroundLoader = nullptr; BackgroundLoaderChanged.fire(0); - if (DictionaryExists(copyId)) { - auto dicts = copySession->settings().dictionariesEnabled(); - if (!ranges::contains(dicts, copyId)) { - dicts.push_back(copyId); - copySession->settings().setDictionariesEnabled(std::move(dicts)); - copySession->saveSettingsDelayed(); + if (DictionaryExists(id)) { + auto dicts = session->settings().dictionariesEnabled(); + if (!ranges::contains(dicts, id)) { + dicts.push_back(id); + session->settings().setDictionariesEnabled(std::move(dicts)); + session->saveSettingsDelayed(); } } - if (copyCounter >= copyLangs.size()) { + if (counter >= langs.size()) { return; } - DownloadDictionaryInBackground(copySession, copyCounter, copyLangs); + DownloadDictionaryInBackground(session, counter, langs); }; if (DictionaryExists(id)) { destroyer(); @@ -194,20 +189,21 @@ DictLoader::DictLoader( } void DictLoader::unpack(const QString &path) { - Expects(_destroyCallback); crl::async([=] { const auto success = Spellchecker::UnpackDictionary(path, id()); if (success) { QFile(path).remove(); + destroy(); + return; } - crl::on_main(success ? _destroyCallback : [=] { fail(); }); + crl::on_main([=] { fail(); }); }); } void DictLoader::destroy() { Expects(_destroyCallback); - _destroyCallback(); + crl::on_main(_destroyCallback); } void DictLoader::fail() { diff --git a/Telegram/SourceFiles/chat_helpers/spellchecker_common.h b/Telegram/SourceFiles/chat_helpers/spellchecker_common.h index 203c4e047..f806ceb08 100644 --- a/Telegram/SourceFiles/chat_helpers/spellchecker_common.h +++ b/Telegram/SourceFiles/chat_helpers/spellchecker_common.h @@ -60,6 +60,7 @@ private: void unpack(const QString &path) override; void fail() override; + // Be sure to always call it in the main thread. Fn _destroyCallback; rpl::lifetime _lifetime;