2022-02-21 15:40:20 +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/data_download_manager.h"
|
|
|
|
|
|
|
|
#include "data/data_session.h"
|
|
|
|
#include "data/data_photo.h"
|
|
|
|
#include "data/data_document.h"
|
2022-03-07 14:10:01 +00:00
|
|
|
#include "data/data_document_media.h"
|
2022-03-16 16:14:50 +00:00
|
|
|
#include "data/data_web_page.h"
|
2022-02-21 15:40:20 +00:00
|
|
|
#include "data/data_changes.h"
|
|
|
|
#include "data/data_user.h"
|
|
|
|
#include "data/data_channel.h"
|
2022-03-07 14:10:01 +00:00
|
|
|
#include "data/data_file_origin.h"
|
2022-02-26 11:51:54 +00:00
|
|
|
#include "base/unixtime.h"
|
2022-02-26 16:08:44 +00:00
|
|
|
#include "base/random.h"
|
2022-02-21 15:40:20 +00:00
|
|
|
#include "main/main_session.h"
|
|
|
|
#include "main/main_account.h"
|
2022-02-26 16:08:44 +00:00
|
|
|
#include "storage/storage_account.h"
|
2022-02-21 15:40:20 +00:00
|
|
|
#include "history/history.h"
|
|
|
|
#include "history/history_item.h"
|
2022-02-26 11:51:54 +00:00
|
|
|
#include "history/history_message.h"
|
2022-02-22 13:58:55 +00:00
|
|
|
#include "core/application.h"
|
2022-02-26 16:08:44 +00:00
|
|
|
#include "core/mime_type.h"
|
2022-02-22 13:58:55 +00:00
|
|
|
#include "ui/controls/download_bar.h"
|
2022-02-27 14:34:22 +00:00
|
|
|
#include "ui/text/format_song_document_name.h"
|
2022-03-09 11:30:22 +00:00
|
|
|
#include "ui/layers/generic_box.h"
|
2022-02-26 16:08:44 +00:00
|
|
|
#include "storage/serialize_common.h"
|
2022-03-09 11:30:22 +00:00
|
|
|
#include "window/window_controller.h"
|
|
|
|
#include "window/window_session_controller.h"
|
2022-02-26 16:08:44 +00:00
|
|
|
#include "apiwrap.h"
|
2022-03-09 11:30:22 +00:00
|
|
|
#include "styles/style_layers.h"
|
2022-02-21 15:40:20 +00:00
|
|
|
|
|
|
|
namespace Data {
|
|
|
|
namespace {
|
|
|
|
|
2022-02-22 13:58:55 +00:00
|
|
|
constexpr auto kClearLoadingTimeout = 5 * crl::time(1000);
|
2022-05-12 08:04:36 +00:00
|
|
|
constexpr auto kMaxFileSize = 4000 * int64(1024 * 1024);
|
2022-02-26 16:08:44 +00:00
|
|
|
constexpr auto kMaxResolvePerAttempt = 100;
|
2022-02-22 13:58:55 +00:00
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
constexpr auto ByItem = [](const auto &entry) {
|
|
|
|
if constexpr (std::is_same_v<decltype(entry), const DownloadingId&>) {
|
|
|
|
return entry.object.item;
|
|
|
|
} else {
|
|
|
|
const auto resolved = entry.object.get();
|
2022-02-26 11:51:54 +00:00
|
|
|
return resolved ? resolved->item.get() : nullptr;
|
2022-02-21 15:40:20 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-03-01 14:32:39 +00:00
|
|
|
constexpr auto ByDocument = [](const auto &entry) {
|
|
|
|
return entry.object.document;
|
|
|
|
};
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
[[nodiscard]] uint64 PeerAccessHash(not_null<PeerData*> peer) {
|
|
|
|
if (const auto user = peer->asUser()) {
|
|
|
|
return user->accessHash();
|
|
|
|
} else if (const auto channel = peer->asChannel()) {
|
|
|
|
return channel->access;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-03-16 16:14:50 +00:00
|
|
|
[[nodiscard]] PhotoData *ItemPhoto(not_null<HistoryItem*> item) {
|
|
|
|
if (const auto media = item->media()) {
|
|
|
|
if (const auto page = media->webpage()) {
|
|
|
|
return page->document ? nullptr : page->photo;
|
|
|
|
} else if (const auto photo = media->photo()) {
|
|
|
|
return photo;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] DocumentData *ItemDocument(not_null<HistoryItem*> item) {
|
|
|
|
if (const auto media = item->media()) {
|
|
|
|
if (const auto page = media->webpage()) {
|
|
|
|
return page->document;
|
|
|
|
} else if (const auto document = media->document()) {
|
|
|
|
return document;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2022-03-10 14:02:38 +00:00
|
|
|
struct DocumentDescriptor {
|
|
|
|
uint64 sessionUniqueId = 0;
|
|
|
|
DocumentId documentId = 0;
|
|
|
|
FullMsgId itemId;
|
|
|
|
};
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
} // namespace
|
|
|
|
|
2022-03-10 14:02:38 +00:00
|
|
|
struct DownloadManager::DeleteFilesDescriptor {
|
|
|
|
base::flat_set<not_null<Main::Session*>> sessions;
|
|
|
|
base::flat_map<QString, DocumentDescriptor> files;
|
|
|
|
};
|
|
|
|
|
2022-02-22 13:58:55 +00:00
|
|
|
DownloadManager::DownloadManager()
|
|
|
|
: _clearLoadingTimer([=] { clearLoading(); }) {
|
|
|
|
}
|
2022-02-21 15:40:20 +00:00
|
|
|
|
|
|
|
DownloadManager::~DownloadManager() = default;
|
|
|
|
|
|
|
|
void DownloadManager::trackSession(not_null<Main::Session*> session) {
|
|
|
|
auto &data = _sessions.emplace(session, SessionData()).first->second;
|
2022-02-26 16:08:44 +00:00
|
|
|
data.downloaded = deserialize(session);
|
|
|
|
data.resolveNeeded = data.downloaded.size();
|
2022-02-21 15:40:20 +00:00
|
|
|
|
2022-03-01 14:32:39 +00:00
|
|
|
session->data().documentLoadProgress(
|
|
|
|
) | rpl::filter([=](not_null<DocumentData*> document) {
|
|
|
|
return _loadingDocuments.contains(document);
|
|
|
|
}) | rpl::start_with_next([=](not_null<DocumentData*> document) {
|
|
|
|
check(document);
|
2022-02-21 15:40:20 +00:00
|
|
|
}, data.lifetime);
|
|
|
|
|
|
|
|
session->data().itemLayoutChanged(
|
|
|
|
) | rpl::filter([=](not_null<const HistoryItem*> item) {
|
2022-02-22 13:58:55 +00:00
|
|
|
return _loading.contains(item);
|
2022-02-21 15:40:20 +00:00
|
|
|
}) | rpl::start_with_next([=](not_null<const HistoryItem*> item) {
|
|
|
|
check(item);
|
|
|
|
}, data.lifetime);
|
|
|
|
|
|
|
|
session->data().itemViewRefreshRequest(
|
|
|
|
) | rpl::start_with_next([=](not_null<HistoryItem*> item) {
|
|
|
|
changed(item);
|
|
|
|
}, data.lifetime);
|
|
|
|
|
|
|
|
session->changes().messageUpdates(
|
|
|
|
MessageUpdate::Flag::Destroyed
|
|
|
|
) | rpl::start_with_next([=](const MessageUpdate &update) {
|
|
|
|
removed(update.item);
|
|
|
|
}, data.lifetime);
|
|
|
|
|
|
|
|
session->account().sessionChanges(
|
|
|
|
) | rpl::filter(
|
|
|
|
rpl::mappers::_1 != session
|
|
|
|
) | rpl::take(1) | rpl::start_with_next([=] {
|
|
|
|
untrack(session);
|
|
|
|
}, data.lifetime);
|
|
|
|
}
|
|
|
|
|
2022-03-09 10:52:44 +00:00
|
|
|
void DownloadManager::itemVisibilitiesUpdated(
|
|
|
|
not_null<Main::Session*> session) {
|
|
|
|
const auto i = _sessions.find(session);
|
|
|
|
if (i == end(_sessions)
|
|
|
|
|| i->second.downloading.empty()
|
|
|
|
|| !i->second.downloading.front().hiddenByView) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (const auto &id : i->second.downloading) {
|
2022-03-10 14:02:38 +00:00
|
|
|
if (!id.done
|
|
|
|
&& !session->data().queryItemVisibility(id.object.item)) {
|
2022-03-09 10:52:44 +00:00
|
|
|
for (auto &id : i->second.downloading) {
|
|
|
|
id.hiddenByView = false;
|
|
|
|
}
|
|
|
|
_loadingListChanges.fire({});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-27 13:32:36 +00:00
|
|
|
int64 DownloadManager::computeNextStartDate() {
|
2022-02-26 11:51:54 +00:00
|
|
|
const auto now = base::unixtime::now();
|
|
|
|
if (_lastStartedBase != now) {
|
|
|
|
_lastStartedBase = now;
|
|
|
|
_lastStartedAdded = 0;
|
|
|
|
} else {
|
|
|
|
++_lastStartedAdded;
|
|
|
|
}
|
|
|
|
return int64(_lastStartedBase) * 1000 + _lastStartedAdded;
|
|
|
|
}
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
void DownloadManager::addLoading(DownloadObject object) {
|
|
|
|
Expects(object.item != nullptr);
|
2022-02-27 13:32:36 +00:00
|
|
|
Expects(object.document != nullptr);
|
2022-02-21 15:40:20 +00:00
|
|
|
|
|
|
|
const auto item = object.item;
|
|
|
|
auto &data = sessionData(item);
|
|
|
|
|
|
|
|
const auto already = ranges::find(data.downloading, item, ByItem);
|
|
|
|
if (already != end(data.downloading)) {
|
|
|
|
const auto document = already->object.document;
|
|
|
|
const auto photo = already->object.photo;
|
|
|
|
if (document == object.document && photo == object.photo) {
|
|
|
|
check(item);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
remove(data, already);
|
|
|
|
}
|
|
|
|
|
2022-02-27 13:32:36 +00:00
|
|
|
const auto size = object.document->size;
|
|
|
|
const auto path = object.document->loadingFilePath();
|
|
|
|
if (path.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2022-02-21 15:40:20 +00:00
|
|
|
|
2022-03-09 10:52:44 +00:00
|
|
|
const auto shownExists = !data.downloading.empty()
|
|
|
|
&& !data.downloading.front().hiddenByView;
|
2022-02-26 11:51:54 +00:00
|
|
|
data.downloading.push_back({
|
|
|
|
.object = object,
|
2022-02-27 13:32:36 +00:00
|
|
|
.started = computeNextStartDate(),
|
|
|
|
.path = path,
|
2022-02-26 11:51:54 +00:00
|
|
|
.total = size,
|
2022-03-09 10:52:44 +00:00
|
|
|
.hiddenByView = (!shownExists
|
|
|
|
&& item->history()->owner().queryItemVisibility(item)),
|
2022-02-26 11:51:54 +00:00
|
|
|
});
|
2022-02-22 13:58:55 +00:00
|
|
|
_loading.emplace(item);
|
2022-03-01 14:32:39 +00:00
|
|
|
_loadingDocuments.emplace(object.document);
|
2022-02-22 13:58:55 +00:00
|
|
|
_loadingProgress = DownloadProgress{
|
|
|
|
.ready = _loadingProgress.current().ready,
|
|
|
|
.total = _loadingProgress.current().total + size,
|
|
|
|
};
|
|
|
|
_loadingListChanges.fire({});
|
|
|
|
_clearLoadingTimer.cancel();
|
2022-02-21 15:40:20 +00:00
|
|
|
|
|
|
|
check(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::check(not_null<const HistoryItem*> item) {
|
|
|
|
auto &data = sessionData(item);
|
|
|
|
const auto i = ranges::find(data.downloading, item, ByItem);
|
|
|
|
Assert(i != end(data.downloading));
|
2022-03-01 14:32:39 +00:00
|
|
|
check(data, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::check(not_null<DocumentData*> document) {
|
|
|
|
auto &data = sessionData(document);
|
|
|
|
const auto i = ranges::find(
|
|
|
|
data.downloading,
|
|
|
|
document.get(),
|
|
|
|
ByDocument);
|
|
|
|
Assert(i != end(data.downloading));
|
|
|
|
check(data, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::check(
|
|
|
|
SessionData &data,
|
|
|
|
std::vector<DownloadingId>::iterator i) {
|
2022-02-21 15:40:20 +00:00
|
|
|
auto &entry = *i;
|
|
|
|
|
2022-03-16 16:14:50 +00:00
|
|
|
const auto photo = ItemPhoto(entry.object.item);
|
|
|
|
const auto document = ItemDocument(entry.object.item);
|
2022-02-21 15:40:20 +00:00
|
|
|
if (entry.object.photo != photo || entry.object.document != document) {
|
2022-02-22 13:58:55 +00:00
|
|
|
cancel(data, i);
|
2022-02-21 15:40:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Load with progress only documents for now.
|
|
|
|
Assert(document != nullptr);
|
|
|
|
|
|
|
|
const auto path = document->filepath(true);
|
|
|
|
if (!path.isEmpty()) {
|
2022-03-01 14:32:39 +00:00
|
|
|
if (_loading.contains(entry.object.item)) {
|
2022-02-22 13:58:55 +00:00
|
|
|
addLoaded(entry.object, path, entry.started);
|
|
|
|
}
|
2022-02-21 15:40:20 +00:00
|
|
|
} else if (!document->loading()) {
|
|
|
|
remove(data, i);
|
|
|
|
} else {
|
2022-02-22 13:58:55 +00:00
|
|
|
const auto totalChange = document->size - entry.total;
|
|
|
|
const auto readyChange = document->loadOffset() - entry.ready;
|
|
|
|
if (!readyChange && !totalChange) {
|
2022-02-21 15:40:20 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-02-22 13:58:55 +00:00
|
|
|
entry.ready += readyChange;
|
|
|
|
entry.total += totalChange;
|
|
|
|
_loadingProgress = DownloadProgress{
|
|
|
|
.ready = _loadingProgress.current().ready + readyChange,
|
|
|
|
.total = _loadingProgress.current().total + totalChange,
|
|
|
|
};
|
2022-02-21 15:40:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::addLoaded(
|
|
|
|
DownloadObject object,
|
|
|
|
const QString &path,
|
|
|
|
DownloadDate started) {
|
|
|
|
Expects(object.item != nullptr);
|
|
|
|
Expects(object.document || object.photo);
|
|
|
|
|
2022-02-26 16:08:44 +00:00
|
|
|
const auto size = QFileInfo(path).size();
|
|
|
|
if (size <= 0 || size > kMaxFileSize) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
const auto item = object.item;
|
|
|
|
auto &data = sessionData(item);
|
|
|
|
|
|
|
|
const auto id = object.document
|
|
|
|
? DownloadId{ object.document->id, DownloadType::Document }
|
|
|
|
: DownloadId{ object.photo->id, DownloadType::Photo };
|
|
|
|
data.downloaded.push_back({
|
|
|
|
.download = id,
|
|
|
|
.started = started,
|
|
|
|
.path = path,
|
2022-05-10 14:22:28 +00:00
|
|
|
.size = size,
|
2022-02-21 15:40:20 +00:00
|
|
|
.itemId = item->fullId(),
|
|
|
|
.peerAccessHash = PeerAccessHash(item->history()->peer),
|
|
|
|
.object = std::make_unique<DownloadObject>(object),
|
|
|
|
});
|
2022-02-22 13:58:55 +00:00
|
|
|
_loaded.emplace(item);
|
2022-02-26 11:51:54 +00:00
|
|
|
_loadedAdded.fire(&data.downloaded.back());
|
2022-02-21 15:40:20 +00:00
|
|
|
|
2022-02-26 16:08:44 +00:00
|
|
|
writePostponed(&item->history()->session());
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
const auto i = ranges::find(data.downloading, item, ByItem);
|
|
|
|
if (i != end(data.downloading)) {
|
|
|
|
auto &entry = *i;
|
2022-03-01 14:32:39 +00:00
|
|
|
const auto document = entry.object.document;
|
|
|
|
if (document) {
|
|
|
|
_loadingDocuments.remove(document);
|
|
|
|
}
|
2022-02-22 13:58:55 +00:00
|
|
|
const auto j = _loading.find(entry.object.item);
|
|
|
|
if (j == end(_loading)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto totalChange = document->size - entry.total;
|
|
|
|
const auto readyChange = document->size - entry.ready;
|
|
|
|
entry.ready += readyChange;
|
|
|
|
entry.total += totalChange;
|
|
|
|
entry.done = true;
|
|
|
|
_loading.erase(j);
|
|
|
|
_loadingDone.emplace(entry.object.item);
|
|
|
|
_loadingProgress = DownloadProgress{
|
|
|
|
.ready = _loadingProgress.current().ready + readyChange,
|
|
|
|
.total = _loadingProgress.current().total + totalChange,
|
|
|
|
};
|
2022-03-07 09:33:29 +00:00
|
|
|
_loadingListChanges.fire({});
|
2022-02-22 13:58:55 +00:00
|
|
|
if (_loading.empty()) {
|
|
|
|
_clearLoadingTimer.callOnce(kClearLoadingTimeout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-27 11:27:19 +00:00
|
|
|
void DownloadManager::clearIfFinished() {
|
|
|
|
if (_clearLoadingTimer.isActive()) {
|
|
|
|
_clearLoadingTimer.cancel();
|
|
|
|
clearLoading();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-27 11:14:39 +00:00
|
|
|
void DownloadManager::deleteFiles(const std::vector<GlobalMsgId> &ids) {
|
2022-03-10 14:02:38 +00:00
|
|
|
auto descriptor = DeleteFilesDescriptor();
|
2022-02-27 11:14:39 +00:00
|
|
|
for (const auto &id : ids) {
|
|
|
|
if (const auto item = MessageByGlobalId(id)) {
|
|
|
|
const auto session = &item->history()->session();
|
|
|
|
const auto i = _sessions.find(session);
|
|
|
|
if (i == end(_sessions)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto &data = i->second;
|
|
|
|
const auto j = ranges::find(
|
|
|
|
data.downloading,
|
|
|
|
not_null{ item },
|
|
|
|
ByItem);
|
|
|
|
if (j != end(data.downloading)) {
|
|
|
|
cancel(data, j);
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto k = ranges::find(data.downloaded, item, ByItem);
|
|
|
|
if (k != end(data.downloaded)) {
|
|
|
|
const auto document = k->object->document;
|
2022-03-10 14:02:38 +00:00
|
|
|
descriptor.files.emplace(k->path, DocumentDescriptor{
|
2022-02-27 11:14:39 +00:00
|
|
|
.sessionUniqueId = id.sessionUniqueId,
|
|
|
|
.documentId = document ? document->id : DocumentId(),
|
|
|
|
.itemId = id.itemId,
|
|
|
|
});
|
|
|
|
_loaded.remove(item);
|
|
|
|
_generated.remove(item);
|
|
|
|
if (document) {
|
|
|
|
_generatedDocuments.remove(document);
|
|
|
|
}
|
|
|
|
data.downloaded.erase(k);
|
|
|
|
_loadedRemoved.fire_copy(item);
|
|
|
|
|
2022-03-10 14:02:38 +00:00
|
|
|
descriptor.sessions.emplace(session);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
finishFilesDelete(std::move(descriptor));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::deleteAll() {
|
|
|
|
auto descriptor = DeleteFilesDescriptor();
|
|
|
|
for (auto &[session, data] : _sessions) {
|
|
|
|
if (!data.downloaded.empty()) {
|
|
|
|
descriptor.sessions.emplace(session);
|
|
|
|
} else if (data.downloading.empty()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const auto sessionUniqueId = session->uniqueId();
|
|
|
|
while (!data.downloading.empty()) {
|
|
|
|
cancel(data, data.downloading.end() - 1);
|
|
|
|
}
|
|
|
|
for (auto &id : base::take(data.downloaded)) {
|
|
|
|
const auto object = id.object.get();
|
|
|
|
const auto document = object ? object->document : nullptr;
|
|
|
|
descriptor.files.emplace(id.path, DocumentDescriptor{
|
|
|
|
.sessionUniqueId = sessionUniqueId,
|
|
|
|
.documentId = document ? document->id : DocumentId(),
|
|
|
|
.itemId = id.itemId,
|
|
|
|
});
|
|
|
|
if (document) {
|
|
|
|
_generatedDocuments.remove(document);
|
|
|
|
}
|
|
|
|
if (const auto item = object ? object->item.get() : nullptr) {
|
|
|
|
_loaded.remove(item);
|
|
|
|
_generated.remove(item);
|
|
|
|
_loadedRemoved.fire_copy(item);
|
2022-02-27 11:14:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-10 14:02:38 +00:00
|
|
|
for (const auto &session : descriptor.sessions) {
|
2022-02-27 11:14:39 +00:00
|
|
|
writePostponed(session);
|
|
|
|
}
|
2022-03-10 14:02:38 +00:00
|
|
|
finishFilesDelete(std::move(descriptor));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::finishFilesDelete(DeleteFilesDescriptor &&descriptor) {
|
|
|
|
for (const auto &session : descriptor.sessions) {
|
|
|
|
writePostponed(session);
|
|
|
|
}
|
|
|
|
crl::async([files = std::move(descriptor.files)]{
|
2022-02-28 05:40:01 +00:00
|
|
|
for (const auto &file : files) {
|
|
|
|
QFile(file.first).remove();
|
|
|
|
crl::on_main([descriptor = file.second] {
|
2022-02-27 11:14:39 +00:00
|
|
|
if (const auto session = SessionByUniqueId(
|
|
|
|
descriptor.sessionUniqueId)) {
|
|
|
|
if (const auto id = descriptor.documentId) {
|
|
|
|
[[maybe_unused]] const auto location
|
|
|
|
= session->data().document(id)->location(true);
|
|
|
|
}
|
|
|
|
const auto itemId = descriptor.itemId;
|
|
|
|
if (const auto item = session->data().message(itemId)) {
|
|
|
|
session->data().requestItemRepaint(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-10 14:02:38 +00:00
|
|
|
bool DownloadManager::loadedHasNonCloudFile() const {
|
|
|
|
for (const auto &[session, data] : _sessions) {
|
|
|
|
for (const auto &id : data.downloaded) {
|
|
|
|
if (const auto object = id.object.get()) {
|
|
|
|
if (!object->item->isHistoryEntry()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-02-22 13:58:55 +00:00
|
|
|
auto DownloadManager::loadingList() const
|
2022-02-26 11:51:54 +00:00
|
|
|
-> ranges::any_view<const DownloadingId*, ranges::category::input> {
|
2022-02-22 13:58:55 +00:00
|
|
|
return ranges::views::all(
|
|
|
|
_sessions
|
|
|
|
) | ranges::views::transform([=](const auto &pair) {
|
2022-02-26 11:51:54 +00:00
|
|
|
return ranges::views::all(
|
|
|
|
pair.second.downloading
|
|
|
|
) | ranges::views::transform([](const DownloadingId &id) {
|
|
|
|
return &id;
|
|
|
|
});
|
2022-02-22 13:58:55 +00:00
|
|
|
}) | ranges::views::join;
|
|
|
|
}
|
|
|
|
|
|
|
|
DownloadProgress DownloadManager::loadingProgress() const {
|
|
|
|
return _loadingProgress.current();
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<> DownloadManager::loadingListChanges() const {
|
|
|
|
return _loadingListChanges.events();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto DownloadManager::loadingProgressValue() const
|
|
|
|
-> rpl::producer<DownloadProgress> {
|
|
|
|
return _loadingProgress.value();
|
|
|
|
}
|
|
|
|
|
2022-03-09 11:30:22 +00:00
|
|
|
bool DownloadManager::loadingInProgress(Main::Session *onlyInSession) const {
|
|
|
|
return lookupLoadingItem(onlyInSession) != nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HistoryItem *DownloadManager::lookupLoadingItem(
|
|
|
|
Main::Session *onlyInSession) const {
|
|
|
|
constexpr auto find = [](const SessionData &data) {
|
|
|
|
constexpr auto proj = &DownloadingId::done;
|
|
|
|
const auto i = ranges::find(data.downloading, false, proj);
|
|
|
|
return (i != end(data.downloading)) ? i->object.item.get() : nullptr;
|
|
|
|
};
|
|
|
|
if (onlyInSession) {
|
|
|
|
const auto i = _sessions.find(onlyInSession);
|
|
|
|
return (i != end(_sessions)) ? find(i->second) : nullptr;
|
|
|
|
} else {
|
|
|
|
for (const auto &[session, data] : _sessions) {
|
|
|
|
if (const auto result = find(data)) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::loadingStopWithConfirmation(
|
|
|
|
Fn<void()> callback,
|
|
|
|
Main::Session *onlyInSession) {
|
|
|
|
const auto window = Core::App().primaryWindow();
|
|
|
|
const auto item = lookupLoadingItem(onlyInSession);
|
|
|
|
if (!window || !item) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const auto weak = base::make_weak(&item->history()->session());
|
|
|
|
const auto id = item->fullId();
|
|
|
|
auto box = Box([=](not_null<Ui::GenericBox*> box) {
|
|
|
|
box->addRow(
|
|
|
|
object_ptr<Ui::FlatLabel>(
|
|
|
|
box.get(),
|
|
|
|
tr::lng_download_sure_stop(),
|
|
|
|
st::boxLabel),
|
|
|
|
st::boxPadding + QMargins(0, 0, 0, st::boxPadding.bottom()));
|
|
|
|
box->setStyle(st::defaultBox);
|
|
|
|
box->addButton(tr::lng_selected_upload_stop(), [=] {
|
|
|
|
box->closeBox();
|
|
|
|
|
|
|
|
if (!onlyInSession || weak.get()) {
|
|
|
|
loadingStop(onlyInSession);
|
|
|
|
}
|
|
|
|
if (callback) {
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
}, st::attentionBoxButton);
|
|
|
|
box->addButton(tr::lng_cancel(), [=] { box->closeBox(); });
|
|
|
|
box->addLeftButton(tr::lng_upload_show_file(), [=] {
|
|
|
|
box->closeBox();
|
|
|
|
|
|
|
|
if (const auto strong = weak.get()) {
|
|
|
|
if (const auto item = strong->data().message(id)) {
|
|
|
|
if (const auto window = strong->tryResolveWindow()) {
|
|
|
|
window->showPeerHistoryAtItem(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
window->show(std::move(box));
|
|
|
|
window->activate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::loadingStop(Main::Session *onlyInSession) {
|
|
|
|
const auto stopInSession = [&](SessionData &data) {
|
|
|
|
while (!data.downloading.empty()) {
|
|
|
|
cancel(data, data.downloading.end() - 1);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if (onlyInSession) {
|
|
|
|
const auto i = _sessions.find(onlyInSession);
|
|
|
|
if (i != end(_sessions)) {
|
|
|
|
stopInSession(i->second);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (auto &[session, data] : _sessions) {
|
|
|
|
stopInSession(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-22 13:58:55 +00:00
|
|
|
void DownloadManager::clearLoading() {
|
|
|
|
Expects(_loading.empty());
|
|
|
|
|
|
|
|
for (auto &[session, data] : _sessions) {
|
|
|
|
while (!data.downloading.empty()) {
|
|
|
|
remove(data, data.downloading.end() - 1);
|
2022-02-21 15:40:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-26 16:08:44 +00:00
|
|
|
auto DownloadManager::loadedList()
|
2022-02-26 11:51:54 +00:00
|
|
|
-> ranges::any_view<const DownloadedId*, ranges::category::input> {
|
2022-02-26 16:08:44 +00:00
|
|
|
for (auto &[session, data] : _sessions) {
|
|
|
|
resolve(session, data);
|
|
|
|
}
|
2022-02-26 11:51:54 +00:00
|
|
|
return ranges::views::all(
|
|
|
|
_sessions
|
|
|
|
) | ranges::views::transform([=](const auto &pair) {
|
|
|
|
return ranges::views::all(
|
|
|
|
pair.second.downloaded
|
|
|
|
) | ranges::views::filter([](const DownloadedId &id) {
|
|
|
|
return (id.object != nullptr);
|
|
|
|
}) | ranges::views::transform([](const DownloadedId &id) {
|
|
|
|
return &id;
|
|
|
|
});
|
|
|
|
}) | ranges::views::join;
|
|
|
|
}
|
|
|
|
|
2022-03-10 14:02:38 +00:00
|
|
|
rpl::producer<> DownloadManager::loadedResolveDone() const {
|
|
|
|
using namespace rpl::mappers;
|
|
|
|
return _loadedResolveDone.value() | rpl::filter(_1) | rpl::to_empty;
|
|
|
|
}
|
|
|
|
|
2022-02-26 16:08:44 +00:00
|
|
|
void DownloadManager::resolve(
|
|
|
|
not_null<Main::Session*> session,
|
|
|
|
SessionData &data) {
|
2022-03-10 14:02:38 +00:00
|
|
|
const auto guard = gsl::finally([&] {
|
|
|
|
checkFullResolveDone();
|
|
|
|
});
|
2022-02-26 16:08:44 +00:00
|
|
|
if (data.resolveSentTotal >= data.resolveNeeded
|
|
|
|
|| data.resolveSentTotal >= kMaxResolvePerAttempt) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
struct Prepared {
|
|
|
|
uint64 peerAccessHash = 0;
|
|
|
|
QVector<MTPInputMessage> ids;
|
|
|
|
};
|
|
|
|
auto &owner = session->data();
|
|
|
|
auto prepared = base::flat_map<PeerId, Prepared>();
|
|
|
|
auto last = begin(data.downloaded);
|
|
|
|
auto from = last + (data.resolveNeeded - data.resolveSentTotal);
|
|
|
|
for (auto i = from; i != last;) {
|
|
|
|
auto &id = *--i;
|
|
|
|
const auto msgId = id.itemId.msg;
|
|
|
|
const auto info = QFileInfo(id.path);
|
|
|
|
if (!info.exists() || info.size() != id.size) {
|
|
|
|
// Mark as deleted.
|
|
|
|
id.path = QString();
|
|
|
|
} else if (!owner.message(id.itemId) && IsServerMsgId(msgId)) {
|
|
|
|
const auto groupByPeer = peerIsChannel(id.itemId.peer)
|
|
|
|
? id.itemId.peer
|
|
|
|
: session->userPeerId();
|
|
|
|
auto &perPeer = prepared[groupByPeer];
|
|
|
|
if (peerIsChannel(id.itemId.peer) && !perPeer.peerAccessHash) {
|
|
|
|
perPeer.peerAccessHash = id.peerAccessHash;
|
|
|
|
}
|
|
|
|
perPeer.ids.push_back(MTP_inputMessageID(MTP_int(msgId.bare)));
|
|
|
|
}
|
|
|
|
if (++data.resolveSentTotal >= kMaxResolvePerAttempt) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const auto check = [=] {
|
|
|
|
auto &data = sessionData(session);
|
|
|
|
if (!data.resolveSentRequests) {
|
|
|
|
resolveRequestsFinished(session, data);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const auto requestFinished = [=] {
|
|
|
|
--sessionData(session).resolveSentRequests;
|
|
|
|
check();
|
|
|
|
};
|
|
|
|
for (auto &[peer, perPeer] : prepared) {
|
|
|
|
if (const auto channelId = peerToChannel(peer)) {
|
|
|
|
session->api().request(MTPchannels_GetMessages(
|
|
|
|
MTP_inputChannel(
|
|
|
|
MTP_long(channelId.bare),
|
|
|
|
MTP_long(perPeer.peerAccessHash)),
|
|
|
|
MTP_vector<MTPInputMessage>(perPeer.ids)
|
|
|
|
)).done([=](const MTPmessages_Messages &result) {
|
|
|
|
session->data().processExistingMessages(
|
|
|
|
session->data().channelLoaded(channelId),
|
|
|
|
result);
|
|
|
|
requestFinished();
|
|
|
|
}).fail(requestFinished).send();
|
|
|
|
} else {
|
|
|
|
session->api().request(MTPmessages_GetMessages(
|
|
|
|
MTP_vector<MTPInputMessage>(perPeer.ids)
|
|
|
|
)).done([=](const MTPmessages_Messages &result) {
|
|
|
|
session->data().processExistingMessages(nullptr, result);
|
|
|
|
requestFinished();
|
|
|
|
}).fail(requestFinished).send();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data.resolveSentRequests += prepared.size();
|
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::resolveRequestsFinished(
|
|
|
|
not_null<Main::Session*> session,
|
|
|
|
SessionData &data) {
|
|
|
|
auto &owner = session->data();
|
|
|
|
for (; data.resolveSentTotal > 0; --data.resolveSentTotal) {
|
|
|
|
const auto i = begin(data.downloaded) + (--data.resolveNeeded);
|
|
|
|
if (i->path.isEmpty()) {
|
|
|
|
data.downloaded.erase(i);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const auto item = owner.message(i->itemId);
|
|
|
|
const auto media = item ? item->media() : nullptr;
|
|
|
|
const auto document = media ? media->document() : nullptr;
|
|
|
|
const auto photo = media ? media->photo() : nullptr;
|
|
|
|
if (i->download.type == DownloadType::Document
|
|
|
|
&& (!document || document->id != i->download.objectId)) {
|
|
|
|
generateEntry(session, *i);
|
|
|
|
} else if (i->download.type == DownloadType::Photo
|
|
|
|
&& (!photo || photo->id != i->download.objectId)) {
|
|
|
|
generateEntry(session, *i);
|
|
|
|
} else {
|
|
|
|
i->object = std::make_unique<DownloadObject>(DownloadObject{
|
|
|
|
.item = item,
|
|
|
|
.document = document,
|
|
|
|
.photo = photo,
|
|
|
|
});
|
|
|
|
_loaded.emplace(item);
|
|
|
|
}
|
|
|
|
_loadedAdded.fire(&*i);
|
|
|
|
}
|
|
|
|
crl::on_main(session, [=] {
|
|
|
|
resolve(session, sessionData(session));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-10 14:02:38 +00:00
|
|
|
void DownloadManager::checkFullResolveDone() {
|
|
|
|
if (_loadedResolveDone.current()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (const auto &[session, data] : _sessions) {
|
|
|
|
if (data.resolveSentTotal < data.resolveNeeded
|
|
|
|
|| data.resolveSentRequests > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_loadedResolveDone = true;
|
|
|
|
}
|
|
|
|
|
2022-02-26 16:08:44 +00:00
|
|
|
void DownloadManager::generateEntry(
|
|
|
|
not_null<Main::Session*> session,
|
|
|
|
DownloadedId &id) {
|
|
|
|
Expects(!id.object);
|
|
|
|
|
|
|
|
const auto info = QFileInfo(id.path);
|
|
|
|
const auto document = session->data().document(
|
|
|
|
base::RandomValue<DocumentId>(),
|
|
|
|
0, // accessHash
|
|
|
|
QByteArray(), // fileReference
|
|
|
|
TimeId(id.started / 1000),
|
|
|
|
QVector<MTPDocumentAttribute>(
|
|
|
|
1,
|
|
|
|
MTP_documentAttributeFilename(
|
|
|
|
MTP_string(info.fileName()))),
|
|
|
|
Core::MimeTypeForFile(info).name(),
|
|
|
|
InlineImageLocation(), // inlineThumbnail
|
|
|
|
ImageWithLocation(), // thumbnail
|
|
|
|
ImageWithLocation(), // videoThumbnail
|
2022-04-21 11:06:50 +00:00
|
|
|
false, // isPremiumSticker
|
2022-02-26 16:08:44 +00:00
|
|
|
0, // dc
|
|
|
|
id.size);
|
|
|
|
document->setLocation(Core::FileLocation(info));
|
|
|
|
_generatedDocuments.emplace(document);
|
|
|
|
|
|
|
|
id.object = std::make_unique<DownloadObject>(DownloadObject{
|
|
|
|
.item = generateFakeItem(document),
|
|
|
|
.document = document,
|
|
|
|
});
|
|
|
|
_loaded.emplace(id.object->item);
|
|
|
|
}
|
|
|
|
|
2022-02-26 11:51:54 +00:00
|
|
|
auto DownloadManager::loadedAdded() const
|
|
|
|
-> rpl::producer<not_null<const DownloadedId*>> {
|
|
|
|
return _loadedAdded.events();
|
|
|
|
}
|
|
|
|
|
|
|
|
auto DownloadManager::loadedRemoved() const
|
|
|
|
-> rpl::producer<not_null<const HistoryItem*>> {
|
|
|
|
return _loadedRemoved.events();
|
|
|
|
}
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
void DownloadManager::remove(
|
|
|
|
SessionData &data,
|
|
|
|
std::vector<DownloadingId>::iterator i) {
|
2022-02-22 13:58:55 +00:00
|
|
|
const auto now = DownloadProgress{
|
|
|
|
.ready = _loadingProgress.current().ready - i->ready,
|
|
|
|
.total = _loadingProgress.current().total - i->total,
|
|
|
|
};
|
|
|
|
_loading.remove(i->object.item);
|
|
|
|
_loadingDone.remove(i->object.item);
|
2022-03-01 14:32:39 +00:00
|
|
|
if (const auto document = i->object.document) {
|
|
|
|
_loadingDocuments.remove(document);
|
|
|
|
}
|
2022-02-21 15:40:20 +00:00
|
|
|
data.downloading.erase(i);
|
2022-02-22 13:58:55 +00:00
|
|
|
_loadingListChanges.fire({});
|
|
|
|
_loadingProgress = now;
|
|
|
|
if (_loading.empty() && !_loadingDone.empty()) {
|
|
|
|
_clearLoadingTimer.callOnce(kClearLoadingTimeout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::cancel(
|
|
|
|
SessionData &data,
|
|
|
|
std::vector<DownloadingId>::iterator i) {
|
|
|
|
const auto object = i->object;
|
|
|
|
remove(data, i);
|
|
|
|
if (const auto document = object.document) {
|
|
|
|
document->cancel();
|
|
|
|
} else if (const auto photo = object.photo) {
|
|
|
|
photo->cancel();
|
|
|
|
}
|
2022-02-21 15:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::changed(not_null<const HistoryItem*> item) {
|
2022-02-22 13:58:55 +00:00
|
|
|
if (_loaded.contains(item)) {
|
2022-02-21 15:40:20 +00:00
|
|
|
auto &data = sessionData(item);
|
2022-02-26 11:51:54 +00:00
|
|
|
const auto i = ranges::find(data.downloaded, item.get(), ByItem);
|
2022-02-21 15:40:20 +00:00
|
|
|
Assert(i != end(data.downloaded));
|
|
|
|
|
|
|
|
const auto media = item->media();
|
|
|
|
const auto photo = media ? media->photo() : nullptr;
|
|
|
|
const auto document = media ? media->document() : nullptr;
|
|
|
|
if (i->object->photo != photo || i->object->document != document) {
|
2022-02-26 11:51:54 +00:00
|
|
|
detach(*i);
|
2022-02-21 15:40:20 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-22 13:58:55 +00:00
|
|
|
if (_loading.contains(item) || _loadingDone.contains(item)) {
|
|
|
|
check(item);
|
|
|
|
}
|
2022-02-21 15:40:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::removed(not_null<const HistoryItem*> item) {
|
2022-02-22 13:58:55 +00:00
|
|
|
if (_loaded.contains(item)) {
|
|
|
|
auto &data = sessionData(item);
|
2022-02-26 11:51:54 +00:00
|
|
|
const auto i = ranges::find(data.downloaded, item.get(), ByItem);
|
2022-02-22 13:58:55 +00:00
|
|
|
Assert(i != end(data.downloaded));
|
2022-02-26 11:51:54 +00:00
|
|
|
detach(*i);
|
2022-02-22 13:58:55 +00:00
|
|
|
}
|
|
|
|
if (_loading.contains(item) || _loadingDone.contains(item)) {
|
2022-02-21 15:40:20 +00:00
|
|
|
auto &data = sessionData(item);
|
|
|
|
const auto i = ranges::find(data.downloading, item, ByItem);
|
|
|
|
Assert(i != end(data.downloading));
|
|
|
|
|
|
|
|
// We don't want to download files without messages.
|
|
|
|
// For example, there is no way to refresh a file reference for them.
|
|
|
|
//entry.object.item = nullptr;
|
2022-02-22 13:58:55 +00:00
|
|
|
cancel(data, i);
|
2022-02-21 15:40:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-26 16:08:44 +00:00
|
|
|
not_null<HistoryItem*> DownloadManager::regenerateItem(
|
|
|
|
const DownloadObject &previous) {
|
|
|
|
return generateItem(previous.item, previous.document, previous.photo);
|
|
|
|
}
|
|
|
|
|
|
|
|
not_null<HistoryItem*> DownloadManager::generateFakeItem(
|
|
|
|
not_null<DocumentData*> document) {
|
|
|
|
return generateItem(nullptr, document, nullptr);
|
|
|
|
}
|
2022-02-26 11:51:54 +00:00
|
|
|
|
2022-02-26 16:08:44 +00:00
|
|
|
not_null<HistoryItem*> DownloadManager::generateItem(
|
|
|
|
HistoryItem *previousItem,
|
|
|
|
DocumentData *document,
|
|
|
|
PhotoData *photo) {
|
|
|
|
Expects(document || photo);
|
|
|
|
|
|
|
|
const auto session = document
|
|
|
|
? &document->session()
|
|
|
|
: &photo->session();
|
|
|
|
const auto fromId = previousItem
|
|
|
|
? previousItem->from()->id
|
2022-02-26 11:51:54 +00:00
|
|
|
: session->userPeerId();
|
2022-02-26 16:08:44 +00:00
|
|
|
const auto history = previousItem
|
|
|
|
? previousItem->history()
|
2022-02-26 11:51:54 +00:00
|
|
|
: session->data().history(session->user());
|
|
|
|
const auto flags = MessageFlag::FakeHistoryItem;
|
|
|
|
const auto replyTo = MsgId();
|
|
|
|
const auto viaBotId = UserId();
|
|
|
|
const auto date = base::unixtime::now();
|
|
|
|
const auto postAuthor = QString();
|
|
|
|
const auto caption = TextWithEntities();
|
|
|
|
const auto make = [&](const auto media) {
|
|
|
|
return history->makeMessage(
|
|
|
|
history->nextNonHistoryEntryId(),
|
|
|
|
flags,
|
|
|
|
replyTo,
|
|
|
|
viaBotId,
|
|
|
|
date,
|
|
|
|
fromId,
|
|
|
|
QString(),
|
|
|
|
media,
|
|
|
|
caption,
|
|
|
|
HistoryMessageMarkupData());
|
|
|
|
};
|
2022-02-26 16:08:44 +00:00
|
|
|
const auto result = document ? make(document) : make(photo);
|
2022-02-26 11:51:54 +00:00
|
|
|
_generated.emplace(result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadManager::detach(DownloadedId &id) {
|
|
|
|
Expects(id.object != nullptr);
|
|
|
|
Expects(_loaded.contains(id.object->item));
|
|
|
|
Expects(!_generated.contains(id.object->item));
|
|
|
|
|
|
|
|
// Maybe generate new document?
|
|
|
|
const auto was = id.object->item;
|
2022-02-26 16:08:44 +00:00
|
|
|
const auto now = regenerateItem(*id.object);
|
2022-02-26 11:51:54 +00:00
|
|
|
_loaded.remove(was);
|
|
|
|
_loaded.emplace(now);
|
|
|
|
id.object->item = now;
|
|
|
|
|
|
|
|
_loadedRemoved.fire_copy(was);
|
|
|
|
_loadedAdded.fire_copy(&id);
|
|
|
|
}
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
DownloadManager::SessionData &DownloadManager::sessionData(
|
|
|
|
not_null<Main::Session*> session) {
|
|
|
|
const auto i = _sessions.find(session);
|
|
|
|
Assert(i != end(_sessions));
|
|
|
|
return i->second;
|
|
|
|
}
|
|
|
|
|
2022-02-26 16:08:44 +00:00
|
|
|
const DownloadManager::SessionData &DownloadManager::sessionData(
|
|
|
|
not_null<Main::Session*> session) const {
|
|
|
|
const auto i = _sessions.find(session);
|
|
|
|
Assert(i != end(_sessions));
|
|
|
|
return i->second;
|
|
|
|
}
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
DownloadManager::SessionData &DownloadManager::sessionData(
|
|
|
|
not_null<const HistoryItem*> item) {
|
|
|
|
return sessionData(&item->history()->session());
|
|
|
|
}
|
|
|
|
|
2022-03-01 14:32:39 +00:00
|
|
|
DownloadManager::SessionData &DownloadManager::sessionData(
|
|
|
|
not_null<DocumentData*> document) {
|
|
|
|
return sessionData(&document->session());
|
|
|
|
}
|
|
|
|
|
2022-02-26 16:08:44 +00:00
|
|
|
void DownloadManager::writePostponed(not_null<Main::Session*> session) {
|
|
|
|
session->account().local().updateDownloads(serializator(session));
|
|
|
|
}
|
|
|
|
|
|
|
|
Fn<std::optional<QByteArray>()> DownloadManager::serializator(
|
|
|
|
not_null<Main::Session*> session) const {
|
|
|
|
return [this, weak = base::make_weak(session.get())]()
|
|
|
|
-> std::optional<QByteArray> {
|
|
|
|
const auto strong = weak.get();
|
|
|
|
if (!strong) {
|
|
|
|
return std::nullopt;
|
|
|
|
} else if (!_sessions.contains(strong)) {
|
|
|
|
return QByteArray();
|
|
|
|
}
|
|
|
|
auto result = QByteArray();
|
|
|
|
const auto &data = sessionData(strong);
|
|
|
|
const auto count = data.downloaded.size();
|
|
|
|
const auto constant = sizeof(quint64) // download.objectId
|
|
|
|
+ sizeof(qint32) // download.type
|
|
|
|
+ sizeof(qint64) // started
|
2022-05-12 08:04:36 +00:00
|
|
|
+ sizeof(quint32) // size
|
2022-02-26 16:08:44 +00:00
|
|
|
+ sizeof(quint64) // itemId.peer
|
|
|
|
+ sizeof(qint64) // itemId.msg
|
|
|
|
+ sizeof(quint64); // peerAccessHash
|
|
|
|
auto size = sizeof(qint32) // count
|
|
|
|
+ count * constant;
|
|
|
|
for (const auto &id : data.downloaded) {
|
|
|
|
size += Serialize::stringSize(id.path);
|
|
|
|
}
|
|
|
|
result.reserve(size);
|
|
|
|
|
|
|
|
auto stream = QDataStream(&result, QIODevice::WriteOnly);
|
|
|
|
stream.setVersion(QDataStream::Qt_5_1);
|
|
|
|
stream << qint32(count);
|
|
|
|
for (const auto &id : data.downloaded) {
|
|
|
|
stream
|
|
|
|
<< quint64(id.download.objectId)
|
|
|
|
<< qint32(id.download.type)
|
|
|
|
<< qint64(id.started)
|
2022-05-12 08:04:36 +00:00
|
|
|
// FileSize: Right now any file size fits 32 bit.
|
|
|
|
<< quint32(id.size)
|
2022-02-26 16:08:44 +00:00
|
|
|
<< quint64(id.itemId.peer.value)
|
|
|
|
<< qint64(id.itemId.msg.bare)
|
|
|
|
<< quint64(id.peerAccessHash)
|
|
|
|
<< id.path;
|
|
|
|
}
|
|
|
|
stream.device()->close();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<DownloadedId> DownloadManager::deserialize(
|
|
|
|
not_null<Main::Session*> session) const {
|
|
|
|
const auto serialized = session->account().local().downloadsSerialized();
|
|
|
|
if (serialized.isEmpty()) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
QDataStream stream(serialized);
|
|
|
|
stream.setVersion(QDataStream::Qt_5_1);
|
|
|
|
|
|
|
|
auto count = qint32();
|
|
|
|
stream >> count;
|
|
|
|
if (stream.status() != QDataStream::Ok || count <= 0 || count > 99'999) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
auto result = std::vector<DownloadedId>();
|
|
|
|
result.reserve(count);
|
|
|
|
for (auto i = 0; i != count; ++i) {
|
|
|
|
auto downloadObjectId = quint64();
|
|
|
|
auto uncheckedDownloadType = qint32();
|
|
|
|
auto started = qint64();
|
2022-05-12 08:04:36 +00:00
|
|
|
// FileSize: Right now any file size fits 32 bit.
|
|
|
|
auto size = quint32();
|
2022-02-26 16:08:44 +00:00
|
|
|
auto itemIdPeer = quint64();
|
|
|
|
auto itemIdMsg = qint64();
|
|
|
|
auto peerAccessHash = quint64();
|
|
|
|
auto path = QString();
|
|
|
|
stream
|
|
|
|
>> downloadObjectId
|
|
|
|
>> uncheckedDownloadType
|
|
|
|
>> started
|
|
|
|
>> size
|
|
|
|
>> itemIdPeer
|
|
|
|
>> itemIdMsg
|
|
|
|
>> peerAccessHash
|
|
|
|
>> path;
|
|
|
|
const auto downloadType = DownloadType(uncheckedDownloadType);
|
|
|
|
if (stream.status() != QDataStream::Ok
|
|
|
|
|| path.isEmpty()
|
|
|
|
|| size <= 0
|
|
|
|
|| size > kMaxFileSize
|
|
|
|
|| (downloadType != DownloadType::Document
|
|
|
|
&& downloadType != DownloadType::Photo)) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
result.push_back({
|
|
|
|
.download = {
|
|
|
|
.objectId = downloadObjectId,
|
|
|
|
.type = downloadType,
|
|
|
|
},
|
|
|
|
.started = started,
|
|
|
|
.path = path,
|
2022-05-12 08:04:36 +00:00
|
|
|
.size = int64(size),
|
2022-02-26 16:08:44 +00:00
|
|
|
.itemId = { PeerId(itemIdPeer), MsgId(itemIdMsg) },
|
|
|
|
.peerAccessHash = peerAccessHash,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
void DownloadManager::untrack(not_null<Main::Session*> session) {
|
|
|
|
const auto i = _sessions.find(session);
|
|
|
|
Assert(i != end(_sessions));
|
|
|
|
|
|
|
|
for (const auto &entry : i->second.downloaded) {
|
|
|
|
if (const auto resolved = entry.object.get()) {
|
2022-02-26 16:08:44 +00:00
|
|
|
const auto item = resolved->item;
|
|
|
|
_loaded.remove(item);
|
|
|
|
_generated.remove(item);
|
|
|
|
if (const auto document = resolved->document) {
|
|
|
|
_generatedDocuments.remove(document);
|
2022-02-21 15:40:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (!i->second.downloading.empty()) {
|
|
|
|
remove(i->second, i->second.downloading.end() - 1);
|
|
|
|
}
|
|
|
|
_sessions.erase(i);
|
|
|
|
}
|
|
|
|
|
2022-02-22 13:58:55 +00:00
|
|
|
rpl::producer<Ui::DownloadBarProgress> MakeDownloadBarProgress() {
|
|
|
|
return Core::App().downloadManager().loadingProgressValue(
|
|
|
|
) | rpl::map([=](const DownloadProgress &progress) {
|
|
|
|
return Ui::DownloadBarProgress{
|
|
|
|
.ready = progress.ready,
|
|
|
|
.total = progress.total,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<Ui::DownloadBarContent> MakeDownloadBarContent() {
|
2022-03-07 14:10:01 +00:00
|
|
|
return [](auto consumer) {
|
|
|
|
auto lifetime = rpl::lifetime();
|
|
|
|
|
|
|
|
struct State {
|
|
|
|
DocumentData *document = nullptr;
|
|
|
|
std::shared_ptr<Data::DocumentMedia> media;
|
|
|
|
rpl::lifetime downloadTaskLifetime;
|
|
|
|
QImage thumbnail;
|
2022-03-07 15:52:54 +00:00
|
|
|
|
|
|
|
base::has_weak_ptr guard;
|
|
|
|
bool scheduled = false;
|
2022-03-07 14:10:01 +00:00
|
|
|
Fn<void()> push;
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto state = lifetime.make_state<State>();
|
|
|
|
auto &manager = Core::App().downloadManager();
|
|
|
|
|
|
|
|
const auto resolveThumbnailRecursive = [=](auto &&self) -> bool {
|
2022-08-01 12:14:37 +00:00
|
|
|
if (state->document && !state->document->hasThumbnail()) {
|
2022-03-07 14:10:01 +00:00
|
|
|
state->media = nullptr;
|
2022-02-22 13:58:55 +00:00
|
|
|
}
|
2022-03-07 14:10:01 +00:00
|
|
|
if (!state->media) {
|
|
|
|
state->downloadTaskLifetime.destroy();
|
|
|
|
if (!state->thumbnail.isNull()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
state->thumbnail = QImage();
|
|
|
|
return true;
|
2022-02-22 13:58:55 +00:00
|
|
|
}
|
2022-03-07 14:10:01 +00:00
|
|
|
if (const auto image = state->media->thumbnail()) {
|
|
|
|
state->thumbnail = image->original();
|
|
|
|
state->downloadTaskLifetime.destroy();
|
|
|
|
state->media = nullptr;
|
|
|
|
return true;
|
|
|
|
} else if (const auto embed = state->media->thumbnailInline()) {
|
|
|
|
if (!state->thumbnail.isNull()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
state->thumbnail = Images::Prepare(embed->original(), 0, {
|
|
|
|
.options = Images::Option::Blur,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
state->document->session().downloaderTaskFinished(
|
|
|
|
) | rpl::filter([=] {
|
|
|
|
return self(self);
|
|
|
|
}) | rpl::start_with_next(
|
|
|
|
state->push,
|
|
|
|
state->downloadTaskLifetime);
|
|
|
|
return !state->thumbnail.isNull();
|
|
|
|
};
|
|
|
|
const auto resolveThumbnail = [=] {
|
|
|
|
return resolveThumbnailRecursive(resolveThumbnailRecursive);
|
|
|
|
};
|
|
|
|
|
2022-03-07 15:52:54 +00:00
|
|
|
const auto notify = [=, &manager] {
|
2022-03-07 14:10:01 +00:00
|
|
|
auto content = Ui::DownloadBarContent();
|
|
|
|
auto single = (const Data::DownloadObject*) nullptr;
|
|
|
|
for (const auto id : manager.loadingList()) {
|
2022-03-09 10:52:44 +00:00
|
|
|
if (id->hiddenByView) {
|
|
|
|
break;
|
|
|
|
}
|
2022-03-07 14:10:01 +00:00
|
|
|
if (!single) {
|
|
|
|
single = &id->object;
|
|
|
|
}
|
|
|
|
++content.count;
|
|
|
|
if (id->done) {
|
|
|
|
++content.done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (content.count == 1) {
|
|
|
|
const auto document = single->document;
|
|
|
|
const auto thumbnailed = (single->item
|
|
|
|
&& document->hasThumbnail())
|
|
|
|
? document
|
|
|
|
: nullptr;
|
|
|
|
if (state->document != thumbnailed) {
|
|
|
|
state->document = thumbnailed;
|
|
|
|
state->media = thumbnailed
|
|
|
|
? thumbnailed->createMediaView()
|
|
|
|
: nullptr;
|
2022-03-09 04:53:15 +00:00
|
|
|
if (const auto raw = state->media.get()) {
|
|
|
|
raw->thumbnailWanted(single->item->fullId());
|
|
|
|
}
|
2022-03-07 14:10:01 +00:00
|
|
|
state->thumbnail = QImage();
|
|
|
|
resolveThumbnail();
|
|
|
|
}
|
|
|
|
content.singleName = Ui::Text::FormatDownloadsName(
|
|
|
|
document);
|
|
|
|
content.singleThumbnail = state->thumbnail;
|
|
|
|
}
|
|
|
|
consumer.put_next(std::move(content));
|
|
|
|
};
|
2022-03-07 15:52:54 +00:00
|
|
|
state->push = [=] {
|
|
|
|
if (state->scheduled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
state->scheduled = true;
|
|
|
|
Ui::PostponeCall(&state->guard, [=] {
|
|
|
|
state->scheduled = false;
|
|
|
|
notify();
|
|
|
|
});
|
|
|
|
};
|
2022-03-07 14:10:01 +00:00
|
|
|
|
|
|
|
manager.loadingListChanges(
|
2022-03-07 15:52:54 +00:00
|
|
|
) | rpl::filter([=] {
|
|
|
|
return !state->scheduled;
|
|
|
|
}) | rpl::start_with_next(state->push, lifetime);
|
2022-03-07 14:10:01 +00:00
|
|
|
|
2022-03-07 15:52:54 +00:00
|
|
|
notify();
|
2022-03-07 14:10:01 +00:00
|
|
|
return lifetime;
|
|
|
|
};
|
2022-02-22 13:58:55 +00:00
|
|
|
}
|
|
|
|
|
2022-02-21 15:40:20 +00:00
|
|
|
} // namespace Data
|