mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
Don't unload all media on switching between chats.
This commit is contained in:
parent
959859f57c
commit
8e7117fa22
Telegram/SourceFiles
chat_helpers
data
data_document.cppdata_document.hdata_game.hdata_photo.cppdata_photo.hdata_session.cppdata_session.hdata_web_page.h
history
inline_bots
mediaview.cppoverview
ui/image
@ -405,24 +405,24 @@ void GifsListWidget::processHideFinished() {
|
||||
}
|
||||
|
||||
void GifsListWidget::processPanelHideFinished() {
|
||||
auto itemForget = [](auto &item) {
|
||||
if (auto document = item->getDocument()) {
|
||||
document->forget();
|
||||
const auto itemForget = [](const auto &item) {
|
||||
if (const auto document = item->getDocument()) {
|
||||
document->unload();
|
||||
}
|
||||
if (auto photo = item->getPhoto()) {
|
||||
photo->forget();
|
||||
if (const auto photo = item->getPhoto()) {
|
||||
photo->unload();
|
||||
}
|
||||
if (auto result = item->getResult()) {
|
||||
result->forget();
|
||||
if (const auto result = item->getResult()) {
|
||||
result->unload();
|
||||
}
|
||||
};
|
||||
// Preserve panel state through visibility toggles.
|
||||
//clearInlineRows(false);
|
||||
for_const (auto &item, _gifLayouts) {
|
||||
itemForget(item.second);
|
||||
for (const auto &[document, layout] : _gifLayouts) {
|
||||
itemForget(layout);
|
||||
}
|
||||
for_const (auto &item, _inlineLayouts) {
|
||||
itemForget(item.second);
|
||||
for (const auto &[document, layout] : _inlineLayouts) {
|
||||
itemForget(layout);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -34,7 +34,7 @@ constexpr auto kMemoryForCache = 32 * 1024 * 1024;
|
||||
Core::MediaActiveCache<DocumentData> &ActiveCache() {
|
||||
static auto Instance = Core::MediaActiveCache<DocumentData>(
|
||||
kMemoryForCache,
|
||||
[](DocumentData *document) { document->forget(); });
|
||||
[](DocumentData *document) { document->unload(); });
|
||||
return Instance;
|
||||
}
|
||||
|
||||
@ -536,7 +536,9 @@ bool DocumentData::saveToCache() const {
|
||||
|| (isVoiceMessage() && size < Storage::kMaxVoiceInMemory);
|
||||
}
|
||||
|
||||
void DocumentData::forget() {
|
||||
void DocumentData::unload() {
|
||||
// Forget thumb only when image cache limit exceeds.
|
||||
//thumb->unload();
|
||||
if (sticker()) {
|
||||
if (!sticker()->img->isNull()) {
|
||||
ActiveCache().decrement(ComputeUsage(sticker()));
|
||||
@ -551,6 +553,7 @@ void DocumentData::forget() {
|
||||
delete replyPreview.get();
|
||||
replyPreview = ImagePtr();
|
||||
}
|
||||
|
||||
ActiveCache().decrement(_data.size());
|
||||
_data.clear();
|
||||
}
|
||||
|
@ -121,7 +121,7 @@ public:
|
||||
|
||||
void performActionOnLoad();
|
||||
|
||||
void forget();
|
||||
void unload();
|
||||
ImagePtr makeReplyPreview(Data::FileOrigin origin);
|
||||
|
||||
StickerData *sticker() const;
|
||||
|
@ -30,11 +30,6 @@ struct GameData {
|
||||
, document(document) {
|
||||
}
|
||||
|
||||
void forget() {
|
||||
if (document) document->forget();
|
||||
if (photo) photo->forget();
|
||||
}
|
||||
|
||||
GameId id = 0;
|
||||
uint64 accessHash = 0;
|
||||
QString shortName;
|
||||
|
@ -103,15 +103,16 @@ bool PhotoData::uploading() const {
|
||||
return (uploadingData != nullptr);
|
||||
}
|
||||
|
||||
void PhotoData::forget() {
|
||||
thumb->forget();
|
||||
void PhotoData::unload() {
|
||||
// Forget thumb only when image cache limit exceeds.
|
||||
//thumb->unload();
|
||||
medium->unload();
|
||||
full->unload();
|
||||
if (!replyPreview->isNull()) {
|
||||
// Should be std::unique_ptr<Image>.
|
||||
delete replyPreview.get();
|
||||
replyPreview = ImagePtr();
|
||||
}
|
||||
medium->forget();
|
||||
full->forget();
|
||||
}
|
||||
|
||||
ImagePtr PhotoData::makeReplyPreview(Data::FileOrigin origin) {
|
||||
|
@ -38,7 +38,7 @@ public:
|
||||
void setWaitingForAlbum();
|
||||
bool waitingForAlbum() const;
|
||||
|
||||
void forget();
|
||||
void unload();
|
||||
ImagePtr makeReplyPreview(Data::FileOrigin origin);
|
||||
|
||||
MTPInputPhoto mtpInput() const;
|
||||
|
@ -2008,18 +2008,6 @@ void Session::insertCheckedServiceNotification(
|
||||
sendHistoryChangeNotifications();
|
||||
}
|
||||
|
||||
void Session::forgetMedia() {
|
||||
for (const auto &[id, photo] : _photos) {
|
||||
photo->forget();
|
||||
}
|
||||
for (const auto &[id, document] : _documents) {
|
||||
document->forget();
|
||||
}
|
||||
for (const auto &[coords, location] : _locations) {
|
||||
location->thumb->forget();
|
||||
}
|
||||
}
|
||||
|
||||
void Session::setMimeForwardIds(MessageIdsList &&list) {
|
||||
_mimeForwardIds = std::move(list);
|
||||
}
|
||||
|
@ -420,8 +420,6 @@ public:
|
||||
const TextWithEntities &message,
|
||||
const MTPMessageMedia &media = MTP_messageMediaEmpty());
|
||||
|
||||
void forgetMedia();
|
||||
|
||||
void setMimeForwardIds(MessageIdsList &&list);
|
||||
MessageIdsList takeMimeForwardIds();
|
||||
|
||||
|
@ -54,11 +54,6 @@ struct WebPageData {
|
||||
, pendingTill(pendingTill) {
|
||||
}
|
||||
|
||||
void forget() {
|
||||
if (document) document->forget();
|
||||
if (photo) photo->forget();
|
||||
}
|
||||
|
||||
bool applyChanges(
|
||||
const QString &newType,
|
||||
const QString &newUrl,
|
||||
|
@ -2758,7 +2758,7 @@ void HistoryGif::stopAnimation() {
|
||||
if (_gif) {
|
||||
clearClipReader();
|
||||
Auth().data().requestViewResize(_parent);
|
||||
_data->forget();
|
||||
_data->unload();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1922,7 +1922,6 @@ void HistoryWidget::showHistory(const PeerId &peerId, MsgId showAtMsgId, bool re
|
||||
_nonEmptySelection = false;
|
||||
|
||||
if (_peer) {
|
||||
Auth().data().forgetMedia();
|
||||
Auth().downloader().clearPriorities();
|
||||
|
||||
_history = App::history(_peer);
|
||||
|
@ -353,14 +353,14 @@ void Gif::clipCallback(Media::Clip::Notification notification) {
|
||||
if (_gif) {
|
||||
if (_gif->state() == State::Error) {
|
||||
_gif.setBad();
|
||||
getShownDocument()->forget();
|
||||
getShownDocument()->unload();
|
||||
} else if (_gif->ready() && !_gif->started()) {
|
||||
auto height = st::inlineMediaHeight;
|
||||
auto frame = countFrameSize();
|
||||
_gif->start(frame.width(), frame.height(), _width, height, ImageRoundRadius::None, RectPart::None);
|
||||
} else if (_gif->autoPausedGif() && !context()->inlineItemVisible(this)) {
|
||||
_gif.reset();
|
||||
getShownDocument()->forget();
|
||||
getShownDocument()->unload();
|
||||
}
|
||||
}
|
||||
|
||||
@ -1373,12 +1373,12 @@ void Game::clipCallback(Media::Clip::Notification notification) {
|
||||
if (_gif) {
|
||||
if (_gif->state() == State::Error) {
|
||||
_gif.setBad();
|
||||
getResultDocument()->forget();
|
||||
getResultDocument()->unload();
|
||||
} else if (_gif->ready() && !_gif->started()) {
|
||||
_gif->start(_frameSize.width(), _frameSize.height(), st::inlineThumbSize, st::inlineThumbSize, ImageRoundRadius::None, RectPart::None);
|
||||
} else if (_gif->autoPausedGif() && !context()->inlineItemVisible(this)) {
|
||||
_gif.reset();
|
||||
getResultDocument()->forget();
|
||||
getResultDocument()->unload();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -279,13 +279,12 @@ bool Result::onChoose(Layout::ItemBase *layout) {
|
||||
return true;
|
||||
}
|
||||
|
||||
void Result::forget() {
|
||||
_thumb->forget();
|
||||
void Result::unload() {
|
||||
if (_document) {
|
||||
_document->forget();
|
||||
_document->unload();
|
||||
}
|
||||
if (_photo) {
|
||||
_photo->forget();
|
||||
_photo->unload();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -45,7 +45,7 @@ public:
|
||||
// inline bot result. If it returns true you need to send this result.
|
||||
bool onChoose(Layout::ItemBase *layout);
|
||||
|
||||
void forget();
|
||||
void unload();
|
||||
void openFile();
|
||||
void cancelFile();
|
||||
|
||||
|
@ -267,20 +267,20 @@ void Inner::clearSelection() {
|
||||
|
||||
void Inner::hideFinish(bool completely) {
|
||||
if (completely) {
|
||||
auto itemForget = [](auto &item) {
|
||||
if (auto document = item->getDocument()) {
|
||||
document->forget();
|
||||
const auto unload = [](const auto &item) {
|
||||
if (const auto document = item->getDocument()) {
|
||||
document->unload();
|
||||
}
|
||||
if (auto photo = item->getPhoto()) {
|
||||
photo->forget();
|
||||
if (const auto photo = item->getPhoto()) {
|
||||
photo->unload();
|
||||
}
|
||||
if (auto result = item->getResult()) {
|
||||
result->forget();
|
||||
if (const auto result = item->getResult()) {
|
||||
result->unload();
|
||||
}
|
||||
};
|
||||
clearInlineRows(false);
|
||||
for_const (auto &item, _inlineLayouts) {
|
||||
itemForget(item.second);
|
||||
for (const auto &[result, layout] : _inlineLayouts) {
|
||||
unload(layout);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2589,9 +2589,9 @@ void MediaView::preloadData(int delta) {
|
||||
auto forgetIndex = *_index - delta * 2;
|
||||
auto entity = entityByIndex(forgetIndex);
|
||||
if (auto photo = base::get_if<not_null<PhotoData*>>(&entity.data)) {
|
||||
(*photo)->forget();
|
||||
(*photo)->unload();
|
||||
} else if (auto document = base::get_if<not_null<DocumentData*>>(&entity.data)) {
|
||||
(*document)->forget();
|
||||
(*document)->unload();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -342,7 +342,7 @@ void Photo::paint(Painter &p, const QRect &clip, TextSelection selection, const
|
||||
img = img.copy(0, (img.height() - img.width()) / 2, img.width(), img.width()).scaled(size, size, Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation);
|
||||
}
|
||||
img.setDevicePixelRatio(cRetinaFactor());
|
||||
_data->forget();
|
||||
_data->unload();
|
||||
|
||||
_pix = App::pixmapFromImageInPlace(std::move(img));
|
||||
} else if (!_pix.isNull()) {
|
||||
@ -426,7 +426,7 @@ void Video::paint(Painter &p, const QRect &clip, TextSelection selection, const
|
||||
img = img.copy(0, (img.height() - img.width()) / 2, img.width(), img.width()).scaled(size, size, Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation);
|
||||
}
|
||||
img.setDevicePixelRatio(cRetinaFactor());
|
||||
_data->forget();
|
||||
_data->unload();
|
||||
|
||||
_pix = App::pixmapFromImageInPlace(std::move(img));
|
||||
} else if (!_pix.isNull()) {
|
||||
|
@ -42,7 +42,7 @@ int64 ComputeUsage(const QImage &image) {
|
||||
Core::MediaActiveCache<const Image> &ActiveCache() {
|
||||
static auto Instance = Core::MediaActiveCache<const Image>(
|
||||
kMemoryForCache,
|
||||
[](const Image *image) { image->forget(); });
|
||||
[](const Image *image) { image->unload(); });
|
||||
return Instance;
|
||||
}
|
||||
|
||||
@ -769,9 +769,9 @@ void Image::checkSource() const {
|
||||
ActiveCache().up(this);
|
||||
}
|
||||
|
||||
void Image::forget() const {
|
||||
void Image::unload() const {
|
||||
_source->takeLoaded();
|
||||
_source->forget();
|
||||
_source->unload();
|
||||
invalidateSizeCache();
|
||||
ActiveCache().decrement(ComputeUsage(_data));
|
||||
_data = QImage();
|
||||
@ -800,6 +800,6 @@ void Image::invalidateSizeCache() const {
|
||||
}
|
||||
|
||||
Image::~Image() {
|
||||
forget();
|
||||
unload();
|
||||
ActiveCache().remove(this);
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ public:
|
||||
bool loadFirst,
|
||||
bool prior) = 0;
|
||||
virtual QImage takeLoaded() = 0;
|
||||
virtual void forget() = 0;
|
||||
virtual void unload() = 0;
|
||||
|
||||
virtual void automaticLoad(
|
||||
Data::FileOrigin origin,
|
||||
@ -229,7 +229,7 @@ public:
|
||||
|
||||
bool loaded() const;
|
||||
bool isNull() const;
|
||||
void forget() const;
|
||||
void unload() const;
|
||||
void setDelayedStorageLocation(
|
||||
Data::FileOrigin origin,
|
||||
const StorageImageLocation &location);
|
||||
|
@ -37,7 +37,7 @@ QImage ImageSource::takeLoaded() {
|
||||
return _data;
|
||||
}
|
||||
|
||||
void ImageSource::forget() {
|
||||
void ImageSource::unload() {
|
||||
}
|
||||
|
||||
void ImageSource::automaticLoad(
|
||||
@ -161,7 +161,7 @@ QImage LocalFileSource::takeLoaded() {
|
||||
return std::move(_data);
|
||||
}
|
||||
|
||||
void LocalFileSource::forget() {
|
||||
void LocalFileSource::unload() {
|
||||
_data = QImage();
|
||||
}
|
||||
|
||||
@ -361,10 +361,6 @@ void RemoteSource::loadEvenCancelled(
|
||||
return load(origin, loadFirst, prior);
|
||||
}
|
||||
|
||||
RemoteSource::~RemoteSource() {
|
||||
forget();
|
||||
}
|
||||
|
||||
bool RemoteSource::displayLoading() {
|
||||
return loaderValid()
|
||||
&& (!_loader->loadingLocal() || !_loader->autoLoading());
|
||||
@ -380,7 +376,7 @@ void RemoteSource::cancel() {
|
||||
std::unique_ptr<FileLoader>(loader));
|
||||
}
|
||||
|
||||
void RemoteSource::forget() {
|
||||
void RemoteSource::unload() {
|
||||
if (loaderValid()) {
|
||||
destroyLoaderDelayed();
|
||||
}
|
||||
@ -394,6 +390,10 @@ int RemoteSource::loadOffset() {
|
||||
return loaderValid() ? _loader->currentOffset() : 0;
|
||||
}
|
||||
|
||||
RemoteSource::~RemoteSource() {
|
||||
unload();
|
||||
}
|
||||
|
||||
const StorageImageLocation &RemoteSource::location() {
|
||||
return StorageImageLocation::Null;
|
||||
}
|
||||
|
@ -24,7 +24,7 @@ public:
|
||||
bool loadFirst,
|
||||
bool prior) override;
|
||||
QImage takeLoaded() override;
|
||||
void forget() override;
|
||||
void unload() override;
|
||||
|
||||
void automaticLoad(
|
||||
Data::FileOrigin origin,
|
||||
@ -75,7 +75,7 @@ public:
|
||||
bool loadFirst,
|
||||
bool prior) override;
|
||||
QImage takeLoaded() override;
|
||||
void forget() override;
|
||||
void unload() override;
|
||||
|
||||
void automaticLoad(
|
||||
Data::FileOrigin origin,
|
||||
@ -126,7 +126,7 @@ public:
|
||||
bool loadFirst,
|
||||
bool prior) override;
|
||||
QImage takeLoaded() override;
|
||||
void forget() override;
|
||||
void unload() override;
|
||||
|
||||
void automaticLoad(
|
||||
Data::FileOrigin origin,
|
||||
|
Loading…
Reference in New Issue
Block a user