mirror of https://github.com/procxx/kepka.git
Added ability to download more than one dictionary at same time.
This commit is contained in:
parent
783269e256
commit
9dee4e2d25
|
@ -40,11 +40,15 @@ public:
|
||||||
int id,
|
int id,
|
||||||
MTP::DedicatedLoader::Location location,
|
MTP::DedicatedLoader::Location location,
|
||||||
const QString &folder,
|
const QString &folder,
|
||||||
int size);
|
int size,
|
||||||
|
Fn<void()> destroyCallback);
|
||||||
|
|
||||||
void destroy() override;
|
void destroy() override;
|
||||||
void unpack(const QString &path) override;
|
void unpack(const QString &path) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
Fn<void()> _destroyCallback;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class Inner : public Ui::RpWidget {
|
class Inner : public Ui::RpWidget {
|
||||||
|
@ -60,14 +64,6 @@ private:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
base::unique_qptr<Loader> GlobalLoader;
|
|
||||||
rpl::event_stream<Loader*> GlobalLoaderValues;
|
|
||||||
|
|
||||||
void SetGlobalLoader(base::unique_qptr<Loader> loader) {
|
|
||||||
GlobalLoader = std::move(loader);
|
|
||||||
GlobalLoaderValues.fire(GlobalLoader.get());
|
|
||||||
}
|
|
||||||
|
|
||||||
inline auto DictExists(int langId) {
|
inline auto DictExists(int langId) {
|
||||||
return Spellchecker::DictionaryExists(langId);
|
return Spellchecker::DictionaryExists(langId);
|
||||||
}
|
}
|
||||||
|
@ -91,29 +87,24 @@ Loader::Loader(
|
||||||
int id,
|
int id,
|
||||||
MTP::DedicatedLoader::Location location,
|
MTP::DedicatedLoader::Location location,
|
||||||
const QString &folder,
|
const QString &folder,
|
||||||
int size) : BlobLoader(parent, id, location, folder, size) {
|
int size,
|
||||||
|
Fn<void()> destroyCallback)
|
||||||
|
: BlobLoader(parent, id, location, folder, size)
|
||||||
|
, _destroyCallback(std::move(destroyCallback)) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Loader::unpack(const QString &path) {
|
void Loader::unpack(const QString &path) {
|
||||||
const auto weak = Ui::MakeWeak(this);
|
Expects(_destroyCallback);
|
||||||
crl::async([=] {
|
crl::async([=] {
|
||||||
if (Spellchecker::UnpackDictionary(path, id())) {
|
const auto success = Spellchecker::UnpackDictionary(path, id());
|
||||||
|
if (success) {
|
||||||
QFile(path).remove();
|
QFile(path).remove();
|
||||||
crl::on_main(weak, [=] {
|
|
||||||
destroy();
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
crl::on_main(weak, [=] {
|
|
||||||
fail();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
crl::on_main(success ? _destroyCallback : [=] { fail(); });
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void Loader::destroy() {
|
void Loader::destroy() {
|
||||||
Expects(GlobalLoader == this);
|
|
||||||
|
|
||||||
SetGlobalLoader(nullptr);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Inner::Inner(
|
Inner::Inner(
|
||||||
|
@ -143,6 +134,20 @@ auto AddButtonWithLoader(
|
||||||
)
|
)
|
||||||
)->entity();
|
)->entity();
|
||||||
|
|
||||||
|
|
||||||
|
const auto localLoader = button->lifetime()
|
||||||
|
.make_state<base::unique_qptr<Loader>>();
|
||||||
|
const auto localLoaderValues = button->lifetime()
|
||||||
|
.make_state<rpl::event_stream<Loader*>>();
|
||||||
|
const auto setLocalLoader = [=](base::unique_qptr<Loader> loader) {
|
||||||
|
*localLoader = std::move(loader);
|
||||||
|
localLoaderValues->fire(localLoader->get());
|
||||||
|
};
|
||||||
|
const auto destroyLocalLoader = [=] {
|
||||||
|
setLocalLoader(nullptr);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
const auto buttonState = button->lifetime()
|
const auto buttonState = button->lifetime()
|
||||||
.make_state<rpl::variable<DictState>>();
|
.make_state<rpl::variable<DictState>>();
|
||||||
|
|
||||||
|
@ -191,9 +196,9 @@ auto AddButtonWithLoader(
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
*buttonState = GlobalLoaderValues.events_starting_with(
|
*buttonState = localLoaderValues->events_starting_with(
|
||||||
GlobalLoader.get()
|
localLoader->get()
|
||||||
) | rpl::map([=](Loader *loader) {
|
) | rpl::map([=](Loader *loader) {
|
||||||
return (loader && loader->id() == id)
|
return (loader && loader->id() == id)
|
||||||
? loader->state()
|
? loader->state()
|
||||||
: rpl::single(
|
: rpl::single(
|
||||||
|
@ -212,15 +217,17 @@ auto AddButtonWithLoader(
|
||||||
) | rpl::start_with_next([=](bool toggled) {
|
) | rpl::start_with_next([=](bool toggled) {
|
||||||
const auto &state = buttonState->current();
|
const auto &state = buttonState->current();
|
||||||
if (toggled && (state.is<Available>() || state.is<Failed>())) {
|
if (toggled && (state.is<Available>() || state.is<Failed>())) {
|
||||||
SetGlobalLoader(base::make_unique_q<Loader>(
|
const auto weak = Ui::MakeWeak(button);
|
||||||
|
setLocalLoader(base::make_unique_q<Loader>(
|
||||||
App::main(),
|
App::main(),
|
||||||
id,
|
id,
|
||||||
Spellchecker::GetDownloadLocation(id),
|
Spellchecker::GetDownloadLocation(id),
|
||||||
Spellchecker::DictPathByLangId(id),
|
Spellchecker::DictPathByLangId(id),
|
||||||
Spellchecker::GetDownloadSize(id)));
|
Spellchecker::GetDownloadSize(id),
|
||||||
|
crl::guard(weak, destroyLocalLoader)));
|
||||||
} else if (!toggled && state.is<Loading>()) {
|
} else if (!toggled && state.is<Loading>()) {
|
||||||
if (GlobalLoader && GlobalLoader->id() == id) {
|
if (localLoader && localLoader->get()->id() == id) {
|
||||||
GlobalLoader->destroy();
|
destroyLocalLoader();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, button->lifetime());
|
}, button->lifetime());
|
||||||
|
|
Loading…
Reference in New Issue