2022-06-23 13:52:15 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#include "data/stickers/data_custom_emoji.h"
|
|
|
|
|
|
|
|
#include "chat_helpers/stickers_emoji_pack.h"
|
|
|
|
#include "main/main_session.h"
|
|
|
|
#include "data/data_session.h"
|
|
|
|
#include "data/data_document.h"
|
2022-06-24 06:49:11 +00:00
|
|
|
#include "data/data_document_media.h"
|
|
|
|
#include "data/data_file_origin.h"
|
|
|
|
#include "lottie/lottie_common.h"
|
2022-06-28 13:13:20 +00:00
|
|
|
#include "lottie/lottie_emoji.h"
|
2022-06-29 07:56:10 +00:00
|
|
|
#include "ffmpeg/ffmpeg_emoji.h"
|
2022-06-24 06:49:11 +00:00
|
|
|
#include "chat_helpers/stickers_lottie.h"
|
2022-06-23 13:52:15 +00:00
|
|
|
#include "ui/text/text_block.h"
|
2022-06-28 13:13:20 +00:00
|
|
|
#include "ui/ui_utility.h"
|
2022-06-24 11:14:23 +00:00
|
|
|
#include "apiwrap.h"
|
2022-06-23 13:52:15 +00:00
|
|
|
|
2022-06-28 13:47:28 +00:00
|
|
|
#include "data/stickers/data_stickers.h"
|
2022-07-05 19:36:25 +00:00
|
|
|
#include "ui/widgets/input_fields.h"
|
|
|
|
#include "ui/text/text_block.h"
|
2022-06-28 13:47:28 +00:00
|
|
|
|
2022-06-23 13:52:15 +00:00
|
|
|
namespace Data {
|
2022-06-24 11:14:23 +00:00
|
|
|
namespace {
|
|
|
|
|
2022-07-05 19:36:25 +00:00
|
|
|
constexpr auto kMaxPerRequest = 100;
|
|
|
|
|
2022-06-28 13:13:20 +00:00
|
|
|
using SizeTag = CustomEmojiManager::SizeTag;
|
|
|
|
|
|
|
|
[[nodiscard]] ChatHelpers::StickerLottieSize LottieSizeFromTag(SizeTag tag) {
|
|
|
|
using LottieSize = ChatHelpers::StickerLottieSize;
|
|
|
|
switch (tag) {
|
|
|
|
case SizeTag::Normal: return LottieSize::MessageHistory;
|
|
|
|
case SizeTag::Large: return LottieSize::EmojiInteraction;
|
|
|
|
}
|
|
|
|
Unexpected("SizeTag value in CustomEmojiManager-LottieSizeFromTag.");
|
|
|
|
}
|
|
|
|
|
2022-07-06 08:20:51 +00:00
|
|
|
[[nodiscard]] int EmojiSizeFromTag(SizeTag tag) {
|
2022-06-28 13:13:20 +00:00
|
|
|
switch (tag) {
|
|
|
|
case SizeTag::Normal: return Ui::Emoji::GetSizeNormal();
|
|
|
|
case SizeTag::Large: return Ui::Emoji::GetSizeLarge();
|
|
|
|
}
|
|
|
|
Unexpected("SizeTag value in CustomEmojiManager-SizeFromTag.");
|
|
|
|
}
|
|
|
|
|
2022-07-06 08:20:51 +00:00
|
|
|
[[nodiscard]] int SizeFromTag(SizeTag tag) {
|
|
|
|
const auto emoji = EmojiSizeFromTag(tag);
|
|
|
|
const auto factor = style::DevicePixelRatio();
|
|
|
|
return Ui::Text::AdjustCustomEmojiSize(emoji / factor) * factor;
|
|
|
|
}
|
|
|
|
|
2022-06-24 11:14:23 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
class CustomEmojiLoader final
|
|
|
|
: public Ui::CustomEmoji::Loader
|
|
|
|
, public base::has_weak_ptr {
|
2022-06-23 13:52:15 +00:00
|
|
|
public:
|
2022-06-28 13:13:20 +00:00
|
|
|
CustomEmojiLoader(
|
|
|
|
not_null<Session*> owner,
|
|
|
|
const CustomEmojiId id,
|
|
|
|
SizeTag tag);
|
|
|
|
CustomEmojiLoader(not_null<DocumentData*> document, SizeTag tag);
|
2022-06-23 13:52:15 +00:00
|
|
|
|
2022-06-24 11:14:23 +00:00
|
|
|
[[nodiscard]] bool resolving() const;
|
|
|
|
void resolved(not_null<DocumentData*> document);
|
|
|
|
|
2022-06-28 13:13:20 +00:00
|
|
|
QString entityData() override;
|
|
|
|
|
|
|
|
void load(Fn<void(LoadResult)> loaded) override;
|
|
|
|
bool loading() override;
|
2022-06-24 11:14:23 +00:00
|
|
|
void cancel() override;
|
|
|
|
Ui::CustomEmoji::Preview preview() override;
|
2022-06-23 13:52:15 +00:00
|
|
|
|
|
|
|
private:
|
2022-06-24 11:14:23 +00:00
|
|
|
struct Resolve {
|
2022-06-28 13:13:20 +00:00
|
|
|
Fn<void(LoadResult)> requested;
|
|
|
|
QString entityData;
|
2022-06-24 11:14:23 +00:00
|
|
|
};
|
|
|
|
struct Process {
|
|
|
|
std::shared_ptr<DocumentMedia> media;
|
2022-06-28 13:13:20 +00:00
|
|
|
Fn<void(LoadResult)> loaded;
|
|
|
|
base::has_weak_ptr guard;
|
2022-06-24 11:14:23 +00:00
|
|
|
rpl::lifetime lifetime;
|
|
|
|
};
|
2022-06-28 13:13:20 +00:00
|
|
|
struct Requested {
|
2022-06-24 11:14:23 +00:00
|
|
|
not_null<DocumentData*> document;
|
|
|
|
std::unique_ptr<Process> process;
|
|
|
|
};
|
2022-06-28 13:13:20 +00:00
|
|
|
struct Lookup : Requested {
|
|
|
|
};
|
|
|
|
struct Load : Requested {
|
|
|
|
};
|
|
|
|
|
|
|
|
void check();
|
|
|
|
[[nodiscard]] Storage::Cache::Key cacheKey(
|
|
|
|
not_null<DocumentData*> document) const;
|
|
|
|
void startCacheLookup(
|
|
|
|
not_null<Lookup*> lookup,
|
|
|
|
Fn<void(LoadResult)> loaded);
|
|
|
|
void lookupDone(
|
|
|
|
not_null<Lookup*> lookup,
|
|
|
|
std::optional<Ui::CustomEmoji::Cache> result);
|
|
|
|
void loadNoCache(
|
|
|
|
not_null<DocumentData*> document,
|
|
|
|
Fn<void(LoadResult)> loaded);
|
2022-06-24 11:14:23 +00:00
|
|
|
|
2022-06-28 13:13:20 +00:00
|
|
|
[[nodiscard]] static std::variant<Resolve, Lookup, Load> InitialState(
|
2022-06-24 11:14:23 +00:00
|
|
|
not_null<Session*> owner,
|
|
|
|
const CustomEmojiId &id);
|
|
|
|
|
2022-06-28 13:13:20 +00:00
|
|
|
std::variant<Resolve, Lookup, Load> _state;
|
|
|
|
SizeTag _tag = SizeTag::Normal;
|
2022-06-23 13:52:15 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2022-06-24 11:14:23 +00:00
|
|
|
CustomEmojiLoader::CustomEmojiLoader(
|
|
|
|
not_null<Session*> owner,
|
2022-06-28 13:13:20 +00:00
|
|
|
const CustomEmojiId id,
|
|
|
|
SizeTag tag)
|
|
|
|
: _state(InitialState(owner, id))
|
|
|
|
, _tag(tag) {
|
|
|
|
}
|
|
|
|
|
|
|
|
CustomEmojiLoader::CustomEmojiLoader(
|
|
|
|
not_null<DocumentData*> document,
|
|
|
|
SizeTag tag)
|
|
|
|
: _state(Lookup{ document })
|
|
|
|
, _tag(tag) {
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CustomEmojiLoader::resolving() const {
|
|
|
|
return v::is<Resolve>(_state);
|
2022-06-23 13:52:15 +00:00
|
|
|
}
|
|
|
|
|
2022-06-24 11:14:23 +00:00
|
|
|
void CustomEmojiLoader::resolved(not_null<DocumentData*> document) {
|
|
|
|
Expects(resolving());
|
|
|
|
|
|
|
|
auto requested = std::move(v::get<Resolve>(_state).requested);
|
2022-06-28 13:13:20 +00:00
|
|
|
_state = Lookup{ document };
|
2022-06-24 11:14:23 +00:00
|
|
|
if (requested) {
|
|
|
|
load(std::move(requested));
|
2022-06-23 13:52:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-28 13:13:20 +00:00
|
|
|
void CustomEmojiLoader::load(Fn<void(LoadResult)> loaded) {
|
2022-06-24 11:14:23 +00:00
|
|
|
if (const auto resolve = std::get_if<Resolve>(&_state)) {
|
2022-06-28 13:13:20 +00:00
|
|
|
resolve->requested = std::move(loaded);
|
|
|
|
} else if (const auto lookup = std::get_if<Lookup>(&_state)) {
|
|
|
|
if (!lookup->process) {
|
|
|
|
startCacheLookup(lookup, std::move(loaded));
|
|
|
|
} else {
|
|
|
|
lookup->process->loaded = std::move(loaded);
|
|
|
|
}
|
2022-06-24 11:14:23 +00:00
|
|
|
} else if (const auto load = std::get_if<Load>(&_state)) {
|
|
|
|
if (!load->process) {
|
|
|
|
load->process = std::make_unique<Process>(Process{
|
|
|
|
.media = load->document->createMediaView(),
|
2022-06-28 13:13:20 +00:00
|
|
|
.loaded = std::move(loaded),
|
2022-06-24 11:14:23 +00:00
|
|
|
});
|
2022-07-08 15:00:30 +00:00
|
|
|
load->process->media->owner()->resetCancelled();
|
2022-06-24 11:14:23 +00:00
|
|
|
load->process->media->checkStickerLarge();
|
2022-06-28 13:13:20 +00:00
|
|
|
if (load->process->media->loaded()) {
|
|
|
|
check();
|
|
|
|
} else {
|
|
|
|
load->document->session().downloaderTaskFinished(
|
|
|
|
) | rpl::start_with_next([=] {
|
|
|
|
check();
|
|
|
|
}, load->process->lifetime);
|
|
|
|
}
|
2022-06-24 11:14:23 +00:00
|
|
|
} else {
|
2022-06-28 13:13:20 +00:00
|
|
|
load->process->loaded = std::move(loaded);
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-28 13:13:20 +00:00
|
|
|
QString CustomEmojiLoader::entityData() {
|
|
|
|
if (const auto resolve = std::get_if<Resolve>(&_state)) {
|
|
|
|
return resolve->entityData;
|
|
|
|
} else if (const auto lookup = std::get_if<Lookup>(&_state)) {
|
|
|
|
return SerializeCustomEmojiId(lookup->document);
|
|
|
|
} else if (const auto load = std::get_if<Load>(&_state)) {
|
|
|
|
return SerializeCustomEmojiId(load->document);
|
|
|
|
}
|
|
|
|
Unexpected("State in CustomEmojiLoader::entityData.");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CustomEmojiLoader::loading() {
|
|
|
|
if (const auto resolve = std::get_if<Resolve>(&_state)) {
|
|
|
|
return (resolve->requested != nullptr);
|
|
|
|
} else if (const auto lookup = std::get_if<Lookup>(&_state)) {
|
|
|
|
return (lookup->process != nullptr);
|
|
|
|
} else if (const auto load = std::get_if<Load>(&_state)) {
|
|
|
|
return (load->process != nullptr);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Storage::Cache::Key CustomEmojiLoader::cacheKey(
|
|
|
|
not_null<DocumentData*> document) const {
|
|
|
|
const auto baseKey = document->bigFileBaseCacheKey();
|
|
|
|
if (!baseKey) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return Storage::Cache::Key{
|
|
|
|
baseKey.high,
|
|
|
|
baseKey.low + ChatHelpers::LottieCacheKeyShift(
|
|
|
|
0x0F,
|
|
|
|
LottieSizeFromTag(_tag)),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
void CustomEmojiLoader::startCacheLookup(
|
|
|
|
not_null<Lookup*> lookup,
|
|
|
|
Fn<void(LoadResult)> loaded) {
|
|
|
|
const auto document = lookup->document;
|
|
|
|
const auto key = cacheKey(document);
|
|
|
|
if (!key) {
|
|
|
|
loadNoCache(document, std::move(loaded));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
lookup->process = std::make_unique<Process>(Process{
|
|
|
|
.loaded = std::move(loaded),
|
|
|
|
});
|
2022-07-06 08:20:51 +00:00
|
|
|
const auto size = SizeFromTag(_tag);
|
2022-06-28 13:13:20 +00:00
|
|
|
const auto weak = base::make_weak(&lookup->process->guard);
|
|
|
|
document->owner().cacheBigFile().get(key, [=](QByteArray value) {
|
2022-07-06 08:20:51 +00:00
|
|
|
auto cache = Ui::CustomEmoji::Cache::FromSerialized(value, size);
|
2022-06-28 13:13:20 +00:00
|
|
|
crl::on_main(weak, [=, result = std::move(cache)]() mutable {
|
|
|
|
lookupDone(lookup, std::move(result));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void CustomEmojiLoader::lookupDone(
|
|
|
|
not_null<Lookup*> lookup,
|
|
|
|
std::optional<Ui::CustomEmoji::Cache> result) {
|
|
|
|
const auto document = lookup->document;
|
|
|
|
if (!result) {
|
|
|
|
loadNoCache(document, std::move(lookup->process->loaded));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto tag = _tag;
|
|
|
|
auto loader = [=] {
|
|
|
|
return std::make_unique<CustomEmojiLoader>(document, tag);
|
|
|
|
};
|
2022-07-01 16:06:23 +00:00
|
|
|
auto done = std::move(lookup->process->loaded);
|
|
|
|
done(Ui::CustomEmoji::Cached(
|
2022-06-28 13:13:20 +00:00
|
|
|
SerializeCustomEmojiId(document),
|
|
|
|
std::move(loader),
|
|
|
|
std::move(*result)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CustomEmojiLoader::loadNoCache(
|
|
|
|
not_null<DocumentData*> document,
|
|
|
|
Fn<void(LoadResult)> loaded) {
|
|
|
|
_state = Load{ document };
|
|
|
|
load(std::move(loaded));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CustomEmojiLoader::check() {
|
|
|
|
using namespace Ui::CustomEmoji;
|
|
|
|
|
|
|
|
const auto load = std::get_if<Load>(&_state);
|
|
|
|
Assert(load != nullptr);
|
|
|
|
Assert(load->process != nullptr);
|
|
|
|
|
|
|
|
const auto media = load->process->media.get();
|
|
|
|
const auto document = media->owner();
|
|
|
|
const auto data = media->bytes();
|
|
|
|
const auto filepath = document->filepath();
|
|
|
|
if (data.isEmpty() && filepath.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
load->process->lifetime.destroy();
|
|
|
|
|
|
|
|
const auto tag = _tag;
|
|
|
|
const auto size = SizeFromTag(_tag);
|
|
|
|
auto bytes = Lottie::ReadContent(data, filepath);
|
|
|
|
auto loader = [=] {
|
|
|
|
return std::make_unique<CustomEmojiLoader>(document, tag);
|
|
|
|
};
|
|
|
|
auto put = [=, key = cacheKey(document)](QByteArray value) {
|
|
|
|
document->owner().cacheBigFile().put(key, std::move(value));
|
|
|
|
};
|
2022-06-29 07:56:10 +00:00
|
|
|
const auto type = document->sticker()->type;
|
|
|
|
auto generator = [=, bytes = Lottie::ReadContent(data, filepath)]()
|
|
|
|
-> std::unique_ptr<Ui::FrameGenerator> {
|
|
|
|
switch (type) {
|
|
|
|
case StickerType::Tgs:
|
|
|
|
return std::make_unique<Lottie::EmojiGenerator>(bytes);
|
|
|
|
case StickerType::Webm:
|
|
|
|
return std::make_unique<FFmpeg::EmojiGenerator>(bytes);
|
|
|
|
case StickerType::Webp:
|
|
|
|
return std::make_unique<Ui::ImageFrameGenerator>(bytes);
|
|
|
|
}
|
|
|
|
Unexpected("Type in custom emoji sticker frame generator.");
|
2022-06-28 13:13:20 +00:00
|
|
|
};
|
|
|
|
auto renderer = std::make_unique<Renderer>(RendererDescriptor{
|
|
|
|
.generator = std::move(generator),
|
|
|
|
.put = std::move(put),
|
|
|
|
.loader = std::move(loader),
|
2022-07-06 08:20:51 +00:00
|
|
|
.size = size,
|
2022-06-28 13:13:20 +00:00
|
|
|
});
|
|
|
|
base::take(load->process)->loaded(Caching{
|
|
|
|
std::move(renderer),
|
|
|
|
SerializeCustomEmojiId(document),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-24 11:14:23 +00:00
|
|
|
auto CustomEmojiLoader::InitialState(
|
|
|
|
not_null<Session*> owner,
|
|
|
|
const CustomEmojiId &id)
|
2022-06-28 13:13:20 +00:00
|
|
|
-> std::variant<Resolve, Lookup, Load> {
|
2022-06-24 11:14:23 +00:00
|
|
|
const auto document = owner->document(id.id);
|
2022-07-05 19:36:25 +00:00
|
|
|
if (document->sticker()) {
|
2022-06-28 13:13:20 +00:00
|
|
|
return Lookup{ document };
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
2022-07-04 06:14:24 +00:00
|
|
|
return Resolve{ .entityData = SerializeCustomEmojiId(id) };
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CustomEmojiLoader::cancel() {
|
2022-06-28 13:13:20 +00:00
|
|
|
if (const auto lookup = std::get_if<Lookup>(&_state)) {
|
|
|
|
base::take(lookup->process);
|
|
|
|
} else if (const auto load = std::get_if<Load>(&_state)) {
|
2022-06-24 11:14:23 +00:00
|
|
|
if (base::take(load->process)) {
|
|
|
|
load->document->cancel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ui::CustomEmoji::Preview CustomEmojiLoader::preview() {
|
2022-06-28 13:13:20 +00:00
|
|
|
using Preview = Ui::CustomEmoji::Preview;
|
|
|
|
const auto make = [&](not_null<DocumentData*> document) -> Preview {
|
|
|
|
const auto dimensions = document->dimensions;
|
|
|
|
if (!document->inlineThumbnailIsPath()
|
|
|
|
|| !dimensions.width()) {
|
|
|
|
return {};
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
2022-06-28 13:13:20 +00:00
|
|
|
const auto scale = (SizeFromTag(_tag) * 1.)
|
|
|
|
/ (style::DevicePixelRatio() * dimensions.width());
|
|
|
|
return { document->createMediaView()->thumbnailPath(), scale };
|
|
|
|
};
|
|
|
|
if (const auto lookup = std::get_if<Lookup>(&_state)) {
|
|
|
|
return make(lookup->document);
|
|
|
|
} else if (const auto load = std::get_if<Load>(&_state)) {
|
|
|
|
return make(load->document);
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
2022-06-23 13:52:15 +00:00
|
|
|
|
|
|
|
CustomEmojiManager::CustomEmojiManager(not_null<Session*> owner)
|
2022-06-28 13:13:20 +00:00
|
|
|
: _owner(owner)
|
|
|
|
, _repaintTimer([=] { invokeRepaints(); }) {
|
2022-06-23 13:52:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CustomEmojiManager::~CustomEmojiManager() = default;
|
|
|
|
|
|
|
|
std::unique_ptr<Ui::Text::CustomEmoji> CustomEmojiManager::create(
|
2022-06-29 14:56:59 +00:00
|
|
|
QStringView data,
|
2022-06-24 06:49:11 +00:00
|
|
|
Fn<void()> update) {
|
2022-06-23 13:52:15 +00:00
|
|
|
const auto parsed = ParseCustomEmojiData(data);
|
2022-07-05 19:36:25 +00:00
|
|
|
if (!parsed.id) {
|
2022-06-23 13:52:15 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2022-07-05 19:36:25 +00:00
|
|
|
auto i = _instances.find(parsed.id);
|
2022-06-24 11:14:23 +00:00
|
|
|
if (i == end(_instances)) {
|
|
|
|
using Loading = Ui::CustomEmoji::Loading;
|
2022-06-28 13:13:20 +00:00
|
|
|
auto loader = std::make_unique<CustomEmojiLoader>(
|
|
|
|
_owner,
|
|
|
|
parsed,
|
|
|
|
SizeTag::Normal);
|
2022-06-24 11:14:23 +00:00
|
|
|
if (loader->resolving()) {
|
|
|
|
_loaders[parsed.id].push_back(base::make_weak(loader.get()));
|
2022-07-05 19:36:25 +00:00
|
|
|
_pendingForRequest.emplace(parsed.id);
|
|
|
|
if (!_requestId && _pendingForRequest.size() == 1) {
|
|
|
|
crl::on_main(this, [=] { request(); });
|
|
|
|
}
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
2022-06-28 13:13:20 +00:00
|
|
|
const auto repaint = [=](
|
|
|
|
not_null<Ui::CustomEmoji::Instance*> instance,
|
|
|
|
Ui::CustomEmoji::RepaintRequest request) {
|
|
|
|
repaintLater(instance, request);
|
|
|
|
};
|
2022-07-05 19:36:25 +00:00
|
|
|
i = _instances.emplace(
|
2022-06-24 11:14:23 +00:00
|
|
|
parsed.id,
|
2022-06-28 13:13:20 +00:00
|
|
|
std::make_unique<Ui::CustomEmoji::Instance>(Loading{
|
2022-06-24 11:14:23 +00:00
|
|
|
std::move(loader),
|
|
|
|
Ui::CustomEmoji::Preview()
|
2022-06-28 13:13:20 +00:00
|
|
|
}, std::move(repaint))).first;
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
|
|
|
|
2022-06-28 13:13:20 +00:00
|
|
|
return std::make_unique<Ui::CustomEmoji::Object>(
|
2022-07-05 19:36:25 +00:00
|
|
|
i->second.get(),
|
2022-06-28 13:13:20 +00:00
|
|
|
std::move(update));
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-08 15:00:30 +00:00
|
|
|
std::unique_ptr<Ui::CustomEmoji::Loader> CustomEmojiManager::createLoader(
|
|
|
|
not_null<DocumentData*> document,
|
|
|
|
SizeTag tag) {
|
|
|
|
return std::make_unique<CustomEmojiLoader>(document, tag);
|
|
|
|
}
|
|
|
|
|
2022-07-05 19:36:25 +00:00
|
|
|
void CustomEmojiManager::request() {
|
|
|
|
auto ids = QVector<MTPlong>();
|
|
|
|
ids.reserve(std::min(kMaxPerRequest, int(_pendingForRequest.size())));
|
|
|
|
while (!_pendingForRequest.empty() && ids.size() < kMaxPerRequest) {
|
|
|
|
const auto i = _pendingForRequest.end() - 1;
|
|
|
|
ids.push_back(MTP_long(*i));
|
|
|
|
_pendingForRequest.erase(i);
|
2022-06-23 13:52:15 +00:00
|
|
|
}
|
2022-07-05 19:36:25 +00:00
|
|
|
if (ids.isEmpty()) {
|
2022-06-24 11:14:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto api = &_owner->session().api();
|
2022-07-05 19:36:25 +00:00
|
|
|
_requestId = api->request(MTPmessages_GetCustomEmojiDocuments(
|
|
|
|
MTP_vector<MTPlong>(ids)
|
|
|
|
)).done([=](const MTPVector<MTPDocument> &result) {
|
|
|
|
for (const auto &entry : result.v) {
|
|
|
|
const auto document = _owner->processDocument(entry);
|
|
|
|
const auto id = document->id;
|
|
|
|
if (const auto loaders = _loaders.take(id)) {
|
|
|
|
for (const auto &weak : *loaders) {
|
|
|
|
if (const auto strong = weak.get()) {
|
|
|
|
strong->resolved(document);
|
2022-06-24 11:14:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-07-05 19:36:25 +00:00
|
|
|
requestFinished();
|
2022-06-24 11:14:23 +00:00
|
|
|
}).fail([=] {
|
2022-07-05 19:36:25 +00:00
|
|
|
LOG(("API Error: Failed to get documents for emoji."));
|
|
|
|
requestFinished();
|
2022-06-24 11:14:23 +00:00
|
|
|
}).send();
|
2022-06-23 13:52:15 +00:00
|
|
|
}
|
|
|
|
|
2022-07-05 19:36:25 +00:00
|
|
|
void CustomEmojiManager::requestFinished() {
|
|
|
|
_requestId = 0;
|
|
|
|
if (!_pendingForRequest.empty()) {
|
|
|
|
request();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-28 13:13:20 +00:00
|
|
|
void CustomEmojiManager::repaintLater(
|
|
|
|
not_null<Ui::CustomEmoji::Instance*> instance,
|
|
|
|
Ui::CustomEmoji::RepaintRequest request) {
|
|
|
|
auto &bunch = _repaints[request.duration];
|
|
|
|
if (bunch.when < request.when) {
|
|
|
|
bunch.when = request.when;
|
|
|
|
}
|
|
|
|
bunch.instances.emplace_back(instance);
|
|
|
|
scheduleRepaintTimer();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CustomEmojiManager::scheduleRepaintTimer() {
|
|
|
|
if (_repaintTimerScheduled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_repaintTimerScheduled = true;
|
|
|
|
Ui::PostponeCall(this, [=] {
|
|
|
|
_repaintTimerScheduled = false;
|
|
|
|
|
|
|
|
auto next = crl::time();
|
|
|
|
for (const auto &[duration, bunch] : _repaints) {
|
|
|
|
if (!next || next > bunch.when) {
|
|
|
|
next = bunch.when;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (next && (!_repaintNext || _repaintNext > next)) {
|
|
|
|
const auto now = crl::now();
|
|
|
|
if (now >= next) {
|
|
|
|
_repaintNext = 0;
|
|
|
|
_repaintTimer.cancel();
|
|
|
|
invokeRepaints();
|
|
|
|
} else {
|
|
|
|
_repaintNext = next;
|
|
|
|
_repaintTimer.callOnce(next - now);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void CustomEmojiManager::invokeRepaints() {
|
|
|
|
_repaintNext = 0;
|
|
|
|
const auto now = crl::now();
|
|
|
|
for (auto i = begin(_repaints); i != end(_repaints);) {
|
|
|
|
if (i->second.when > now) {
|
|
|
|
++i;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto bunch = std::move(i->second);
|
|
|
|
i = _repaints.erase(i);
|
|
|
|
for (const auto &weak : bunch.instances) {
|
|
|
|
if (const auto strong = weak.get()) {
|
|
|
|
strong->repaint();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
scheduleRepaintTimer();
|
|
|
|
}
|
|
|
|
|
2022-06-23 13:52:15 +00:00
|
|
|
Main::Session &CustomEmojiManager::session() const {
|
|
|
|
return _owner->session();
|
|
|
|
}
|
|
|
|
|
|
|
|
Session &CustomEmojiManager::owner() const {
|
|
|
|
return *_owner;
|
|
|
|
}
|
|
|
|
|
2022-06-29 14:56:59 +00:00
|
|
|
QString SerializeCustomEmojiId(const CustomEmojiId &id) {
|
2022-07-05 19:36:25 +00:00
|
|
|
return QString::number(id.id)
|
2022-06-29 14:56:59 +00:00
|
|
|
+ ':'
|
2022-07-05 19:36:25 +00:00
|
|
|
+ QString::number(id.selfId);
|
2022-06-29 14:56:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString SerializeCustomEmojiId(not_null<DocumentData*> document) {
|
|
|
|
return SerializeCustomEmojiId({
|
|
|
|
.selfId = document->session().userId().bare,
|
|
|
|
.id = document->id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
CustomEmojiId ParseCustomEmojiData(QStringView data) {
|
2022-07-05 19:36:25 +00:00
|
|
|
const auto components = data.split(':');
|
2022-06-29 14:56:59 +00:00
|
|
|
if (components.size() != 2) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
return {
|
2022-07-05 19:36:25 +00:00
|
|
|
.selfId = components[1].toULongLong(),
|
|
|
|
.id = components[0].toULongLong(),
|
2022-06-29 14:56:59 +00:00
|
|
|
};
|
2022-06-23 13:52:15 +00:00
|
|
|
}
|
|
|
|
|
2022-07-05 19:36:25 +00:00
|
|
|
void InsertCustomEmoji(
|
|
|
|
not_null<Ui::InputField*> field,
|
|
|
|
not_null<DocumentData*> document) {
|
|
|
|
const auto sticker = document->sticker();
|
|
|
|
if (!sticker || sticker->alt.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Ui::InsertCustomEmojiAtCursor(
|
|
|
|
field->textCursor(),
|
|
|
|
sticker->alt,
|
|
|
|
Ui::InputField::CustomEmojiLink(SerializeCustomEmojiId(document)));
|
|
|
|
}
|
|
|
|
|
2022-06-23 13:52:15 +00:00
|
|
|
} // namespace Data
|