init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
253
Telegram/SourceFiles/data/data_streaming.cpp
Normal file
253
Telegram/SourceFiles/data/data_streaming.cpp
Normal file
@@ -0,0 +1,253 @@
|
||||
/*
|
||||
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_streaming.h"
|
||||
|
||||
#include "data/data_photo.h"
|
||||
#include "data/data_document.h"
|
||||
#include "data/data_session.h"
|
||||
#include "data/data_file_origin.h"
|
||||
#include "media/streaming/media_streaming_loader.h"
|
||||
#include "media/streaming/media_streaming_reader.h"
|
||||
#include "media/streaming/media_streaming_document.h"
|
||||
|
||||
namespace Data {
|
||||
namespace {
|
||||
|
||||
constexpr auto kKeepAliveTimeout = 5 * crl::time(1000);
|
||||
|
||||
template <typename Object, typename Data>
|
||||
bool PruneDestroyedAndSet(
|
||||
base::flat_map<
|
||||
not_null<Data*>,
|
||||
std::weak_ptr<Object>> &objects,
|
||||
not_null<Data*> data,
|
||||
const std::shared_ptr<Object> &object) {
|
||||
auto result = false;
|
||||
for (auto i = begin(objects); i != end(objects);) {
|
||||
if (i->first == data) {
|
||||
(i++)->second = object;
|
||||
result = true;
|
||||
} else if (i->second.lock() != nullptr) {
|
||||
++i;
|
||||
} else {
|
||||
i = objects.erase(i);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
[[nodiscard]] auto LookupOtherQualities(
|
||||
DocumentData *original,
|
||||
not_null<DocumentData*> quality,
|
||||
HistoryItem *context)
|
||||
-> std::vector<Media::Streaming::QualityDescriptor> {
|
||||
if (!original || !context) {
|
||||
return {};
|
||||
}
|
||||
auto qualities = original->resolveQualities(context);
|
||||
if (qualities.empty()) {
|
||||
return {};
|
||||
}
|
||||
auto result = std::vector<Media::Streaming::QualityDescriptor>();
|
||||
result.reserve(qualities.size());
|
||||
for (const auto &video : qualities) {
|
||||
if (video != quality) {
|
||||
if (const auto height = video->resolveVideoQuality()) {
|
||||
result.push_back({
|
||||
.sizeInBytes = uint32(video->size),
|
||||
.height = uint32(height),
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
[[nodiscard]] auto LookupOtherQualities(
|
||||
DocumentData *original,
|
||||
not_null<PhotoData*> quality,
|
||||
HistoryItem *context)
|
||||
-> std::vector<Media::Streaming::QualityDescriptor> {
|
||||
Expects(!original);
|
||||
|
||||
return {};
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
Streaming::Streaming(not_null<Session*> owner)
|
||||
: _owner(owner)
|
||||
, _keptAliveTimer([=] { clearKeptAlive(); }) {
|
||||
}
|
||||
|
||||
Streaming::~Streaming() = default;
|
||||
|
||||
template <typename Data>
|
||||
[[nodiscard]] std::shared_ptr<Streaming::Reader> Streaming::sharedReader(
|
||||
base::flat_map<not_null<Data*>, std::weak_ptr<Reader>> &readers,
|
||||
not_null<Data*> data,
|
||||
FileOrigin origin,
|
||||
bool forceRemoteLoader) {
|
||||
const auto i = readers.find(data);
|
||||
if (i != end(readers)) {
|
||||
if (auto result = i->second.lock()) {
|
||||
if (!forceRemoteLoader || result->isRemoteLoader()) {
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
auto loader = data->createStreamingLoader(origin, forceRemoteLoader);
|
||||
if (!loader) {
|
||||
return nullptr;
|
||||
}
|
||||
auto result = std::make_shared<Reader>(
|
||||
std::move(loader),
|
||||
&_owner->cacheBigFile());
|
||||
if (!PruneDestroyedAndSet(readers, data, result)) {
|
||||
readers.emplace_or_assign(data, result);
|
||||
}
|
||||
return result;
|
||||
|
||||
}
|
||||
|
||||
template <typename Data>
|
||||
[[nodiscard]] std::shared_ptr<Streaming::Document> Streaming::sharedDocument(
|
||||
base::flat_map<not_null<Data*>, std::weak_ptr<Document>> &documents,
|
||||
base::flat_map<not_null<Data*>, std::weak_ptr<Reader>> &readers,
|
||||
not_null<Data*> data,
|
||||
DocumentData *original,
|
||||
HistoryItem *context,
|
||||
FileOrigin origin) {
|
||||
auto otherQualities = LookupOtherQualities(original, data, context);
|
||||
const auto i = documents.find(data);
|
||||
if (i != end(documents)) {
|
||||
if (auto result = i->second.lock()) {
|
||||
if (!otherQualities.empty()) {
|
||||
result->setOtherQualities(std::move(otherQualities));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
auto reader = sharedReader(readers, data, origin);
|
||||
if (!reader) {
|
||||
return nullptr;
|
||||
}
|
||||
auto result = std::make_shared<Document>(
|
||||
data,
|
||||
std::move(reader),
|
||||
std::move(otherQualities));
|
||||
if (!PruneDestroyedAndSet(documents, data, result)) {
|
||||
documents.emplace_or_assign(data, result);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
template <typename Data>
|
||||
void Streaming::keepAlive(
|
||||
base::flat_map<not_null<Data*>, std::weak_ptr<Document>> &documents,
|
||||
not_null<Data*> data) {
|
||||
const auto i = documents.find(data);
|
||||
if (i == end(documents)) {
|
||||
return;
|
||||
}
|
||||
auto shared = i->second.lock();
|
||||
if (!shared) {
|
||||
return;
|
||||
}
|
||||
const auto till = crl::now() + kKeepAliveTimeout;
|
||||
const auto j = _keptAlive.find(shared);
|
||||
if (j != end(_keptAlive)) {
|
||||
j->second = till;
|
||||
} else {
|
||||
_keptAlive.emplace(std::move(shared), till);
|
||||
}
|
||||
if (!_keptAliveTimer.isActive()) {
|
||||
_keptAliveTimer.callOnce(kKeepAliveTimeout);
|
||||
}
|
||||
}
|
||||
|
||||
std::shared_ptr<Streaming::Reader> Streaming::sharedReader(
|
||||
not_null<DocumentData*> document,
|
||||
FileOrigin origin,
|
||||
bool forceRemoteLoader) {
|
||||
return sharedReader(_fileReaders, document, origin, forceRemoteLoader);
|
||||
}
|
||||
|
||||
std::shared_ptr<Streaming::Document> Streaming::sharedDocument(
|
||||
not_null<DocumentData*> document,
|
||||
FileOrigin origin) {
|
||||
return sharedDocument(
|
||||
_fileDocuments,
|
||||
_fileReaders,
|
||||
document,
|
||||
nullptr,
|
||||
nullptr,
|
||||
origin);
|
||||
}
|
||||
|
||||
std::shared_ptr<Streaming::Document> Streaming::sharedDocument(
|
||||
not_null<DocumentData*> quality,
|
||||
not_null<DocumentData*> original,
|
||||
HistoryItem *context,
|
||||
FileOrigin origin) {
|
||||
return sharedDocument(
|
||||
_fileDocuments,
|
||||
_fileReaders,
|
||||
quality,
|
||||
original,
|
||||
context,
|
||||
origin);
|
||||
}
|
||||
|
||||
std::shared_ptr<Streaming::Reader> Streaming::sharedReader(
|
||||
not_null<PhotoData*> photo,
|
||||
FileOrigin origin,
|
||||
bool forceRemoteLoader) {
|
||||
return sharedReader(_photoReaders, photo, origin, forceRemoteLoader);
|
||||
}
|
||||
|
||||
std::shared_ptr<Streaming::Document> Streaming::sharedDocument(
|
||||
not_null<PhotoData*> photo,
|
||||
FileOrigin origin) {
|
||||
return sharedDocument(
|
||||
_photoDocuments,
|
||||
_photoReaders,
|
||||
photo,
|
||||
nullptr,
|
||||
nullptr,
|
||||
origin);
|
||||
}
|
||||
|
||||
void Streaming::keepAlive(not_null<DocumentData*> document) {
|
||||
keepAlive(_fileDocuments, document);
|
||||
}
|
||||
|
||||
void Streaming::keepAlive(not_null<PhotoData*> photo) {
|
||||
keepAlive(_photoDocuments, photo);
|
||||
}
|
||||
|
||||
void Streaming::clearKeptAlive() {
|
||||
const auto now = crl::now();
|
||||
auto min = std::numeric_limits<crl::time>::max();
|
||||
for (auto i = begin(_keptAlive); i != end(_keptAlive);) {
|
||||
const auto wait = (i->second - now);
|
||||
if (wait <= 0) {
|
||||
i = _keptAlive.erase(i);
|
||||
} else {
|
||||
++i;
|
||||
if (min > wait) {
|
||||
min = wait;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!_keptAlive.empty()) {
|
||||
_keptAliveTimer.callOnce(min);
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace Data
|
||||
Reference in New Issue
Block a user