Fix download task finalizing.

This commit is contained in:
John Preston 2020-04-17 18:02:10 +04:00
parent 3797753d16
commit cbb9657044
5 changed files with 30 additions and 16 deletions

View File

@ -67,15 +67,23 @@ struct StickerIcon {
: setId(setId) : setId(setId)
, thumbnail(thumbnail) , thumbnail(thumbnail)
, sticker(sticker) , sticker(sticker)
, stickerMedia(sticker ? sticker->createMediaView() : nullptr)
, pixw(pixw) , pixw(pixw)
, pixh(pixh) { , pixh(pixh) {
} }
void ensureMediaCreated() const {
if (stickerMedia || !sticker) {
return;
}
stickerMedia = sticker->createMediaView();
stickerMedia->thumbnailWanted(sticker->stickerSetOrigin());
}
uint64 setId = 0; uint64 setId = 0;
ImagePtr thumbnail; ImagePtr thumbnail;
mutable Lottie::SinglePlayer *lottie = nullptr; mutable Lottie::SinglePlayer *lottie = nullptr;
DocumentData *sticker = nullptr; DocumentData *sticker = nullptr;
std::shared_ptr<Data::DocumentMedia> stickerMedia; mutable std::shared_ptr<Data::DocumentMedia> stickerMedia;
ChannelData *megagroup = nullptr; ChannelData *megagroup = nullptr;
int pixw = 0; int pixw = 0;
int pixh = 0; int pixh = 0;
@ -700,6 +708,7 @@ void StickersListWidget::Footer::paintSearchIcon(Painter &p) const {
void StickersListWidget::Footer::validateIconLottieAnimation( void StickersListWidget::Footer::validateIconLottieAnimation(
const StickerIcon &icon) { const StickerIcon &icon) {
icon.ensureMediaCreated();
if (icon.lottie if (icon.lottie
|| !Stickers::HasLottieThumbnail( || !Stickers::HasLottieThumbnail(
icon.thumbnail, icon.thumbnail,
@ -745,6 +754,7 @@ void StickersListWidget::Footer::paintSetIcon(
const StickerIcon &icon, const StickerIcon &icon,
int x) const { int x) const {
if (icon.sticker) { if (icon.sticker) {
icon.ensureMediaCreated();
const auto origin = icon.sticker->stickerSetOrigin(); const auto origin = icon.sticker->stickerSetOrigin();
const auto thumb = icon.thumbnail const auto thumb = icon.thumbnail
? icon.thumbnail.get() ? icon.thumbnail.get()

View File

@ -617,10 +617,17 @@ void DocumentData::updateThumbnails(
|| _thumbnailLocation.height() < thumbnail.location.height())) { || _thumbnailLocation.height() < thumbnail.location.height())) {
_thumbnailLocation = thumbnail.location; _thumbnailLocation = thumbnail.location;
_thumbnailByteSize = thumbnail.bytesCount; _thumbnailByteSize = thumbnail.bytesCount;
if (_thumbnailLoader) { if (!thumbnail.preloaded.isNull()) {
_thumbnailLoader = nullptr;
if (const auto media = activeMediaView()) {
media->setThumbnail(thumbnail.preloaded);
}
} else if (_thumbnailLoader) {
const auto origin = base::take(_thumbnailLoader)->fileOrigin(); const auto origin = base::take(_thumbnailLoader)->fileOrigin();
loadThumbnail(origin); loadThumbnail(origin);
// #TODO optimize replace thumbnail in activeMediaView(). }
if (!thumbnail.bytes.isEmpty()) {
// #TODO optimize put to cache
} }
} }
} }

View File

@ -185,8 +185,8 @@ ClickHandlerPtr ItemBase::getResultPreviewHandler() const {
return std::make_shared<UrlClickHandler>( return std::make_shared<UrlClickHandler>(
_result->_content_url, _result->_content_url,
false); false);
} else if (_result->_document } else if (const auto document = _result->_document
&& _result->_document->createMediaView()->canBePlayed()) { // #TODO optimize && _result->_document->createMediaView()->canBePlayed()) {
return std::make_shared<DocumentOpenClickHandler>( return std::make_shared<DocumentOpenClickHandler>(
_result->_document); _result->_document);
} else if (_result->_photo) { } else if (_result->_photo) {

View File

@ -495,9 +495,7 @@ void webFileLoader::loadProgress(qint64 ready, qint64 total) {
void webFileLoader::loadFinished(const QByteArray &data) { void webFileLoader::loadFinished(const QByteArray &data) {
cancelRequest(); cancelRequest();
if (writeResultPart(0, bytes::make_span(data))) { if (writeResultPart(0, bytes::make_span(data))) {
if (finalizeResult()) { finalizeResult();
notifyAboutProgress();
}
} }
} }

View File

@ -153,14 +153,13 @@ void StreamedFileDownloader::savePart(const LoadedPart &part) {
if (!writeResultPart(offset, bytes::make_span(part.bytes))) { if (!writeResultPart(offset, bytes::make_span(part.bytes))) {
return; return;
} }
if (_partsSaved == _partsCount) {
if (!finalizeResult()) {
return;
}
}
_reader->doneForDownloader(offset); _reader->doneForDownloader(offset);
requestParts(); if (_partsSaved == _partsCount) {
notifyAboutProgress(); finalizeResult();
} else {
requestParts();
notifyAboutProgress();
}
} }
} // namespace Storage } // namespace Storage