Remove old download priority arguments.

This commit is contained in:
John Preston 2019-04-12 15:52:39 +04:00
parent b2895a39ed
commit eb438e35ee
14 changed files with 188 additions and 292 deletions

View File

@ -499,13 +499,13 @@ void Panel::hideAndDestroy() {
void Panel::processUserPhoto() { void Panel::processUserPhoto() {
if (!_user->userpicLoaded()) { if (!_user->userpicLoaded()) {
_user->loadUserpic(true); _user->loadUserpic();
} }
const auto photo = _user->userpicPhotoId() const auto photo = _user->userpicPhotoId()
? _user->owner().photo(_user->userpicPhotoId()).get() ? _user->owner().photo(_user->userpicPhotoId()).get()
: nullptr; : nullptr;
if (isGoodUserPhoto(photo)) { if (isGoodUserPhoto(photo)) {
photo->large()->load(_user->userpicPhotoOrigin(), true); photo->large()->load(_user->userpicPhotoOrigin());
} else if (_user->userpicPhotoUnknown() || (photo && !photo->date)) { } else if (_user->userpicPhotoUnknown() || (photo && !photo->date)) {
_user->session().api().requestFullPeer(_user); _user->session().api().requestFullPeer(_user);
} }

View File

@ -131,10 +131,7 @@ void GoodThumbSource::ready(
}); });
} }
void GoodThumbSource::load( void GoodThumbSource::load(Data::FileOrigin origin) {
Data::FileOrigin origin,
bool loadFirst,
bool prior) {
if (loading() || _empty) { if (loading() || _empty) {
return; return;
} }
@ -163,12 +160,9 @@ void GoodThumbSource::load(
std::move(callback)); std::move(callback));
} }
void GoodThumbSource::loadEvenCancelled( void GoodThumbSource::loadEvenCancelled(Data::FileOrigin origin) {
Data::FileOrigin origin,
bool loadFirst,
bool prior) {
_empty = false; _empty = false;
load(origin, loadFirst, prior); load(origin);
} }
QImage GoodThumbSource::takeLoaded() { QImage GoodThumbSource::takeLoaded() {

View File

@ -17,14 +17,8 @@ class GoodThumbSource : public Images::Source {
public: public:
explicit GoodThumbSource(not_null<DocumentData*> document); explicit GoodThumbSource(not_null<DocumentData*> document);
void load( void load(Data::FileOrigin origin) override;
Data::FileOrigin origin, void loadEvenCancelled(Data::FileOrigin origin) override;
bool loadFirst,
bool prior) override;
void loadEvenCancelled(
Data::FileOrigin origin,
bool loadFirst,
bool prior) override;
QImage takeLoaded() override; QImage takeLoaded() override;
void unload() override; void unload() override;

View File

@ -239,8 +239,8 @@ void PeerData::paintUserpicSquare(Painter &p, int x, int y, int size) const {
} }
} }
void PeerData::loadUserpic(bool loadFirst, bool prior) { void PeerData::loadUserpic() {
_userpic->load(userpicOrigin(), loadFirst, prior); _userpic->load(userpicOrigin());
} }
bool PeerData::userpicLoaded() const { bool PeerData::userpicLoaded() const {

View File

@ -229,7 +229,7 @@ public:
int x, int x,
int y, int y,
int size) const; int size) const;
void loadUserpic(bool loadFirst = false, bool prior = true); void loadUserpic();
[[nodiscard]] bool userpicLoaded() const; [[nodiscard]] bool userpicLoaded() const;
[[nodiscard]] bool useEmptyUserpic() const; [[nodiscard]] bool useEmptyUserpic() const;
[[nodiscard]] InMemoryKey userpicUniqueKey() const; [[nodiscard]] InMemoryKey userpicUniqueKey() const;

View File

@ -62,5 +62,5 @@ LocationData::LocationData(const LocationCoords &coords)
} }
void LocationData::load(Data::FileOrigin origin) { void LocationData::load(Data::FileOrigin origin) {
thumb->load(origin, false, false); thumb->load(origin);
} }

View File

@ -34,6 +34,12 @@ constexpr auto kMaxFileQueries = 16;
// Max 8 http[s] files downloaded at the same time. // Max 8 http[s] files downloaded at the same time.
constexpr auto kMaxWebFileQueries = 8; constexpr auto kMaxWebFileQueries = 8;
// Different part sizes are not supported for now :(
// Because we start downloading with some part size
// and then we get a cdn-redirect where we support only
// fixed part size download for hash checking.
constexpr auto kPartSize = 128 * 1024;
} // namespace } // namespace
Downloader::Downloader(not_null<ApiWrap*> api) Downloader::Downloader(not_null<ApiWrap*> api)
@ -136,14 +142,6 @@ Downloader::~Downloader() {
namespace { namespace {
constexpr auto kDownloadPhotoPartSize = 64 * 1024; // 64kb for photo
constexpr auto kDownloadDocumentPartSize = 128 * 1024; // 128kb for document
constexpr auto kDownloadCdnPartSize = 128 * 1024; // 128kb for cdn requests
} // namespace
namespace {
QThread *_webLoadThread = nullptr; QThread *_webLoadThread = nullptr;
WebLoadManager *_webLoadManager = nullptr; WebLoadManager *_webLoadManager = nullptr;
WebLoadManager *webLoadManager() { WebLoadManager *webLoadManager() {
@ -292,11 +290,6 @@ void FileLoader::removeFromQueue() {
_inQueue = false; _inQueue = false;
} }
void FileLoader::pause() {
removeFromQueue();
_paused = true;
}
FileLoader::~FileLoader() { FileLoader::~FileLoader() {
removeFromQueue(); removeFromQueue();
} }
@ -308,7 +301,7 @@ void FileLoader::localLoaded(
_localLoading = nullptr; _localLoading = nullptr;
if (result.data.isEmpty()) { if (result.data.isEmpty()) {
_localStatus = LocalStatus::NotFound; _localStatus = LocalStatus::NotFound;
start(true); start();
return; return;
} }
if (!imageData.isNull()) { if (!imageData.isNull()) {
@ -319,10 +312,7 @@ void FileLoader::localLoaded(
notifyAboutProgress(); notifyAboutProgress();
} }
void FileLoader::start(bool loadFirst, bool prior) { void FileLoader::start() {
if (_paused) {
_paused = false;
}
if (_finished || tryLoadLocal()) { if (_finished || tryLoadLocal()) {
return; return;
} else if (_fromCloud == LoadFromLocalOnly) { } else if (_fromCloud == LoadFromLocalOnly) {
@ -339,59 +329,36 @@ void FileLoader::start(bool loadFirst, bool prior) {
auto currentPriority = _downloader->currentPriority(); auto currentPriority = _downloader->currentPriority();
FileLoader *before = nullptr, *after = nullptr; FileLoader *before = nullptr, *after = nullptr;
if (prior) { if (_inQueue && _priority == currentPriority) {
if (_inQueue && _priority == currentPriority) { if (!_next || _next->_priority < currentPriority) return startLoading();
if (loadFirst) { after = _next;
if (!_prev) return startLoading(loadFirst, prior); while (after->_next && after->_next->_priority == currentPriority) {
before = _queue->start; after = after->_next;
} else {
if (!_next || _next->_priority < currentPriority) return startLoading(loadFirst, prior);
after = _next;
while (after->_next && after->_next->_priority == currentPriority) {
after = after->_next;
}
}
} else {
_priority = currentPriority;
if (loadFirst) {
if (_inQueue && !_prev) return startLoading(loadFirst, prior);
before = _queue->start;
} else {
if (_inQueue) {
if (_next && _next->_priority == currentPriority) {
after = _next;
} else if (_prev && _prev->_priority < currentPriority) {
before = _prev;
while (before->_prev && before->_prev->_priority < currentPriority) {
before = before->_prev;
}
} else {
return startLoading(loadFirst, prior);
}
} else {
if (_queue->start && _queue->start->_priority == currentPriority) {
after = _queue->start;
} else {
before = _queue->start;
}
}
if (after) {
while (after->_next && after->_next->_priority == currentPriority) {
after = after->_next;
}
}
}
} }
} else { } else {
if (loadFirst) { _priority = currentPriority;
if (_inQueue && (!_prev || _prev->_priority == currentPriority)) return startLoading(loadFirst, prior); if (_inQueue) {
before = _prev; if (_next && _next->_priority == currentPriority) {
while (before->_prev && before->_prev->_priority != currentPriority) { after = _next;
before = before->_prev; } else if (_prev && _prev->_priority < currentPriority) {
before = _prev;
while (before->_prev && before->_prev->_priority < currentPriority) {
before = before->_prev;
}
} else {
return startLoading();
} }
} else { } else {
if (_inQueue && !_next) return startLoading(loadFirst, prior); if (_queue->start && _queue->start->_priority == currentPriority) {
after = _queue->end; after = _queue->start;
} else {
before = _queue->start;
}
}
if (after) {
while (after->_next && after->_next->_priority == currentPriority) {
after = after->_next;
}
} }
} }
@ -423,7 +390,7 @@ void FileLoader::start(bool loadFirst, bool prior) {
} else { } else {
LOG(("Queue Error: _start && !before && !after")); LOG(("Queue Error: _start && !before && !after"));
} }
return startLoading(loadFirst, prior); return startLoading();
} }
void FileLoader::loadLocal(const Storage::Cache::Key &key) { void FileLoader::loadLocal(const Storage::Cache::Key &key) {
@ -524,8 +491,8 @@ void FileLoader::cancel(bool fail) {
LoadNextFromQueue(queue); LoadNextFromQueue(queue);
} }
void FileLoader::startLoading(bool loadFirst, bool prior) { void FileLoader::startLoading() {
if ((_queue->queriesCount >= _queue->queriesLimit && (!loadFirst || !prior)) || _finished) { if ((_queue->queriesCount >= _queue->queriesLimit) || _finished) {
return; return;
} }
loadPart(); loadPart();
@ -736,7 +703,7 @@ bool mtpFileLoader::loadPart() {
} }
makeRequest(_nextRequestOffset); makeRequest(_nextRequestOffset);
_nextRequestOffset += partSize(); _nextRequestOffset += Storage::kPartSize;
return true; return true;
} }
@ -747,22 +714,6 @@ MTP::DcId mtpFileLoader::dcId() const {
return Global::WebFileDcId(); return Global::WebFileDcId();
} }
int mtpFileLoader::partSize() const {
return kDownloadCdnPartSize;
// Different part sizes are not supported for now :(
// Because we start downloading with some part size
// and then we get a cdn-redirect where we support only
// fixed part size download for hash checking.
//
//if (_cdnDcId) {
// return kDownloadCdnPartSize;
//} else if (_locationType == UnknownFileLocation) {
// return kDownloadPhotoPartSize;
//}
//return kDownloadDocumentPartSize;
}
mtpFileLoader::RequestData mtpFileLoader::prepareRequest(int offset) const { mtpFileLoader::RequestData mtpFileLoader::prepareRequest(int offset) const {
auto result = RequestData(); auto result = RequestData();
result.dcId = _cdnDcId ? _cdnDcId : dcId(); result.dcId = _cdnDcId ? _cdnDcId : dcId();
@ -775,7 +726,7 @@ mtpFileLoader::RequestData mtpFileLoader::prepareRequest(int offset) const {
mtpRequestId mtpFileLoader::sendRequest(const RequestData &requestData) { mtpRequestId mtpFileLoader::sendRequest(const RequestData &requestData) {
const auto offset = requestData.offset; const auto offset = requestData.offset;
const auto limit = partSize(); const auto limit = Storage::kPartSize;
const auto shiftedDcId = MTP::downloadDcId( const auto shiftedDcId = MTP::downloadDcId(
requestData.dcId, requestData.dcId,
requestData.dcIndex); requestData.dcIndex);
@ -885,90 +836,107 @@ void mtpFileLoader::normalPartLoaded(
void mtpFileLoader::webPartLoaded( void mtpFileLoader::webPartLoaded(
const MTPupload_WebFile &result, const MTPupload_WebFile &result,
mtpRequestId requestId) { mtpRequestId requestId) {
Expects(result.type() == mtpc_upload_webFile); result.match([&](const MTPDupload_webFile &data) {
const auto offset = finishSentRequestGetOffset(requestId);
auto offset = finishSentRequestGetOffset(requestId); if (!_size) {
auto &webFile = result.c_upload_webFile(); _size = data.vsize.v;
if (!_size) { } else if (data.vsize.v != _size) {
_size = webFile.vsize.v; LOG(("MTP Error: "
} else if (webFile.vsize.v != _size) { "Bad size provided by bot for webDocument: %1, real: %2"
LOG(("MTP Error: Bad size provided by bot for webDocument: %1, real: %2").arg(_size).arg(webFile.vsize.v)); ).arg(_size
return cancel(true); ).arg(data.vsize.v));
} cancel(true);
auto buffer = bytes::make_span(webFile.vbytes.v); return;
return partLoaded(offset, buffer); }
partLoaded(offset, bytes::make_span(data.vbytes.v));
});
} }
void mtpFileLoader::cdnPartLoaded(const MTPupload_CdnFile &result, mtpRequestId requestId) { void mtpFileLoader::cdnPartLoaded(const MTPupload_CdnFile &result, mtpRequestId requestId) {
Expects(!_finished); Expects(!_finished);
auto offset = finishSentRequestGetOffset(requestId); const auto offset = finishSentRequestGetOffset(requestId);
if (result.type() == mtpc_upload_cdnFileReuploadNeeded) { result.match([&](const MTPDupload_cdnFileReuploadNeeded &data) {
auto requestData = RequestData(); auto requestData = RequestData();
requestData.dcId = dcId(); requestData.dcId = dcId();
requestData.dcIndex = 0; requestData.dcIndex = 0;
requestData.offset = offset; requestData.offset = offset;
auto shiftedDcId = MTP::downloadDcId(requestData.dcId, requestData.dcIndex); const auto shiftedDcId = MTP::downloadDcId(
auto requestId = MTP::send(MTPupload_ReuploadCdnFile(MTP_bytes(_cdnToken), result.c_upload_cdnFileReuploadNeeded().vrequest_token), rpcDone(&mtpFileLoader::reuploadDone), rpcFail(&mtpFileLoader::cdnPartFailed), shiftedDcId); requestData.dcId,
requestData.dcIndex);
const auto requestId = MTP::send(
MTPupload_ReuploadCdnFile(
MTP_bytes(_cdnToken),
data.vrequest_token),
rpcDone(&mtpFileLoader::reuploadDone),
rpcFail(&mtpFileLoader::cdnPartFailed),
shiftedDcId);
placeSentRequest(requestId, requestData); placeSentRequest(requestId, requestData);
return; }, [&](const MTPDupload_cdnFile &data) {
} auto key = bytes::make_span(_cdnEncryptionKey);
Expects(result.type() == mtpc_upload_cdnFile); auto iv = bytes::make_span(_cdnEncryptionIV);
Expects(key.size() == MTP::CTRState::KeySize);
Expects(iv.size() == MTP::CTRState::IvecSize);
auto key = bytes::make_span(_cdnEncryptionKey); auto state = MTP::CTRState();
auto iv = bytes::make_span(_cdnEncryptionIV); auto ivec = bytes::make_span(state.ivec);
Expects(key.size() == MTP::CTRState::KeySize); std::copy(iv.begin(), iv.end(), ivec.begin());
Expects(iv.size() == MTP::CTRState::IvecSize);
auto state = MTP::CTRState(); auto counterOffset = static_cast<uint32>(offset) >> 4;
auto ivec = bytes::make_span(state.ivec); state.ivec[15] = static_cast<uchar>(counterOffset & 0xFF);
std::copy(iv.begin(), iv.end(), ivec.begin()); state.ivec[14] = static_cast<uchar>((counterOffset >> 8) & 0xFF);
state.ivec[13] = static_cast<uchar>((counterOffset >> 16) & 0xFF);
state.ivec[12] = static_cast<uchar>((counterOffset >> 24) & 0xFF);
auto counterOffset = static_cast<uint32>(offset) >> 4; auto decryptInPlace = data.vbytes.v;
state.ivec[15] = static_cast<uchar>(counterOffset & 0xFF); auto buffer = bytes::make_detached_span(decryptInPlace);
state.ivec[14] = static_cast<uchar>((counterOffset >> 8) & 0xFF); MTP::aesCtrEncrypt(buffer, key.data(), &state);
state.ivec[13] = static_cast<uchar>((counterOffset >> 16) & 0xFF);
state.ivec[12] = static_cast<uchar>((counterOffset >> 24) & 0xFF);
auto decryptInPlace = result.c_upload_cdnFile().vbytes.v; switch (checkCdnFileHash(offset, buffer)) {
auto buffer = bytes::make_detached_span(decryptInPlace); case CheckCdnHashResult::NoHash: {
MTP::aesCtrEncrypt(buffer, key.data(), &state); _cdnUncheckedParts.emplace(offset, decryptInPlace);
requestMoreCdnFileHashes();
} return;
switch (checkCdnFileHash(offset, buffer)) { case CheckCdnHashResult::Invalid: {
case CheckCdnHashResult::NoHash: { LOG(("API Error: Wrong cdnFileHash for offset %1.").arg(offset));
_cdnUncheckedParts.emplace(offset, decryptInPlace); cancel(true);
requestMoreCdnFileHashes(); } return;
} return;
case CheckCdnHashResult::Invalid: { case CheckCdnHashResult::Good: {
LOG(("API Error: Wrong cdnFileHash for offset %1.").arg(offset)); partLoaded(offset, buffer);
cancel(true); } return;
} return; }
Unexpected("Result of checkCdnFileHash()");
case CheckCdnHashResult::Good: return partLoaded(offset, buffer); });
}
Unexpected("Result of checkCdnFileHash()");
} }
mtpFileLoader::CheckCdnHashResult mtpFileLoader::checkCdnFileHash(int offset, bytes::const_span buffer) { mtpFileLoader::CheckCdnHashResult mtpFileLoader::checkCdnFileHash(
auto cdnFileHashIt = _cdnFileHashes.find(offset); int offset,
bytes::const_span buffer) {
const auto cdnFileHashIt = _cdnFileHashes.find(offset);
if (cdnFileHashIt == _cdnFileHashes.cend()) { if (cdnFileHashIt == _cdnFileHashes.cend()) {
return CheckCdnHashResult::NoHash; return CheckCdnHashResult::NoHash;
} }
auto realHash = openssl::Sha256(buffer); const auto realHash = openssl::Sha256(buffer);
if (bytes::compare(realHash, bytes::make_span(cdnFileHashIt->second.hash))) { const auto receivedHash = bytes::make_span(cdnFileHashIt->second.hash);
if (bytes::compare(realHash, receivedHash)) {
return CheckCdnHashResult::Invalid; return CheckCdnHashResult::Invalid;
} }
return CheckCdnHashResult::Good; return CheckCdnHashResult::Good;
} }
void mtpFileLoader::reuploadDone(const MTPVector<MTPFileHash> &result, mtpRequestId requestId) { void mtpFileLoader::reuploadDone(
const MTPVector<MTPFileHash> &result,
mtpRequestId requestId) {
auto offset = finishSentRequestGetOffset(requestId); auto offset = finishSentRequestGetOffset(requestId);
addCdnHashes(result.v); addCdnHashes(result.v);
makeRequest(offset); makeRequest(offset);
} }
void mtpFileLoader::getCdnFileHashesDone(const MTPVector<MTPFileHash> &result, mtpRequestId requestId) { void mtpFileLoader::getCdnFileHashesDone(
const MTPVector<MTPFileHash> &result,
mtpRequestId requestId) {
Expects(!_finished); Expects(!_finished);
Expects(_cdnHashesRequestId == requestId); Expects(_cdnHashesRequestId == requestId);
@ -1018,14 +986,22 @@ void mtpFileLoader::getCdnFileHashesDone(const MTPVector<MTPFileHash> &result, m
} }
return; return;
} }
LOG(("API Error: Could not find cdnFileHash for offset %1 after getCdnFileHashes request.").arg(offset)); LOG(("API Error: "
"Could not find cdnFileHash for offset %1 "
"after getCdnFileHashes request."
).arg(offset));
cancel(true); cancel(true);
} }
void mtpFileLoader::placeSentRequest(mtpRequestId requestId, const RequestData &requestData) { void mtpFileLoader::placeSentRequest(
mtpRequestId requestId,
const RequestData &requestData) {
Expects(!_finished); Expects(!_finished);
_downloader->requestedAmountIncrement(requestData.dcId, requestData.dcIndex, partSize()); _downloader->requestedAmountIncrement(
requestData.dcId,
requestData.dcIndex,
Storage::kPartSize);
++_queue->queriesCount; ++_queue->queriesCount;
_sentRequests.emplace(requestId, requestData); _sentRequests.emplace(requestId, requestData);
} }
@ -1035,7 +1011,10 @@ int mtpFileLoader::finishSentRequestGetOffset(mtpRequestId requestId) {
Assert(it != _sentRequests.cend()); Assert(it != _sentRequests.cend());
auto requestData = it->second; auto requestData = it->second;
_downloader->requestedAmountIncrement(requestData.dcId, requestData.dcIndex, -partSize()); _downloader->requestedAmountIncrement(
requestData.dcId,
requestData.dcIndex,
-Storage::kPartSize);
--_queue->queriesCount; --_queue->queriesCount;
_sentRequests.erase(it); _sentRequests.erase(it);
@ -1141,12 +1120,12 @@ void mtpFileLoader::switchToCDN(
} }
void mtpFileLoader::addCdnHashes(const QVector<MTPFileHash> &hashes) { void mtpFileLoader::addCdnHashes(const QVector<MTPFileHash> &hashes) {
for_const (auto &hash, hashes) { for (const auto &hash : hashes) {
Assert(hash.type() == mtpc_fileHash); hash.match([&](const MTPDfileHash &data) {
auto &data = hash.c_fileHash(); _cdnFileHashes.emplace(
_cdnFileHashes.emplace( data.voffset.v,
data.voffset.v, CdnFileHash{ data.vlimit.v, data.vhash.v });
CdnFileHash { data.vlimit.v, data.vhash.v }); });
} }
} }
@ -1226,9 +1205,7 @@ webFileLoader::webFileLoader(
fromCloud, fromCloud,
autoLoading, autoLoading,
cacheTag) cacheTag)
, _url(url) , _url(url) {
, _requestSent(false)
, _already(0) {
_queue = _downloader->queueForWeb(); _queue = _downloader->queueForWeb();
} }

View File

@ -133,18 +133,14 @@ public:
bool setFileName(const QString &filename); // set filename for loaders to cache bool setFileName(const QString &filename); // set filename for loaders to cache
void permitLoadFromCloud(); void permitLoadFromCloud();
void pause(); void start();
void start(bool loadFirst = false, bool prior = true);
void cancel(); void cancel();
bool loading() const { bool loading() const {
return _inQueue; return _inQueue;
} }
bool paused() const {
return _paused;
}
bool started() const { bool started() const {
return _inQueue || _paused; return _inQueue;
} }
bool loadingLocal() const { bool loadingLocal() const {
return (_localStatus == LocalStatus::Loading); return (_localStatus == LocalStatus::Loading);
@ -184,7 +180,7 @@ protected:
virtual std::optional<MediaKey> fileLocationKey() const = 0; virtual std::optional<MediaKey> fileLocationKey() const = 0;
virtual void cancelRequests() = 0; virtual void cancelRequests() = 0;
void startLoading(bool loadFirst, bool prior); void startLoading();
void removeFromQueue(); void removeFromQueue();
void cancel(bool failed); void cancel(bool failed);
@ -202,7 +198,6 @@ protected:
int _priority = 0; int _priority = 0;
Queue *_queue = nullptr; Queue *_queue = nullptr;
bool _paused = false;
bool _autoLoading = false; bool _autoLoading = false;
uint8 _cacheTag = 0; uint8 _cacheTag = 0;
bool _inQueue = false; bool _inQueue = false;
@ -287,7 +282,6 @@ private:
void cancelRequests() override; void cancelRequests() override;
MTP::DcId dcId() const; MTP::DcId dcId() const;
int partSize() const;
RequestData prepareRequest(int offset) const; RequestData prepareRequest(int offset) const;
void makeRequest(int offset); void makeRequest(int offset);
@ -373,11 +367,11 @@ protected:
QString _url; QString _url;
bool _requestSent; bool _requestSent = false;
int32 _already; int32 _already = 0;
friend class WebLoadManager; friend class WebLoadManager;
webFileLoaderPrivate *_private; webFileLoaderPrivate *_private = nullptr;
}; };

View File

@ -913,18 +913,15 @@ void Image::automaticLoad(
} }
} }
void Image::load(Data::FileOrigin origin, bool loadFirst, bool prior) { void Image::load(Data::FileOrigin origin) {
if (!loaded()) { if (!loaded()) {
_source->load(origin, loadFirst, prior); _source->load(origin);
} }
} }
void Image::loadEvenCancelled( void Image::loadEvenCancelled(Data::FileOrigin origin) {
Data::FileOrigin origin,
bool loadFirst,
bool prior) {
if (!loaded()) { if (!loaded()) {
_source->loadEvenCancelled(origin, loadFirst, prior); _source->loadEvenCancelled(origin);
} }
} }

View File

@ -55,14 +55,8 @@ public:
Source &operator=(Source &&other) = delete; Source &operator=(Source &&other) = delete;
virtual ~Source() = default; virtual ~Source() = default;
virtual void load( virtual void load(Data::FileOrigin origin) = 0;
Data::FileOrigin origin, virtual void loadEvenCancelled(Data::FileOrigin origin) = 0;
bool loadFirst,
bool prior) = 0;
virtual void loadEvenCancelled(
Data::FileOrigin origin,
bool loadFirst,
bool prior) = 0;
virtual QImage takeLoaded() = 0; virtual QImage takeLoaded() = 0;
virtual void unload() = 0; virtual void unload() = 0;
@ -211,14 +205,8 @@ public:
void setInformation(int size, int width, int height) { void setInformation(int size, int width, int height) {
_source->setInformation(size, width, height); _source->setInformation(size, width, height);
} }
void load( void load(Data::FileOrigin origin);
Data::FileOrigin origin, void loadEvenCancelled(Data::FileOrigin origin);
bool loadFirst = false,
bool prior = true);
void loadEvenCancelled(
Data::FileOrigin origin,
bool loadFirst = false,
bool prior = true);
const StorageImageLocation &location() const { const StorageImageLocation &location() const {
return _source->location(); return _source->location();
} }

View File

@ -24,24 +24,18 @@ ImageSource::ImageSource(QImage &&data, const QByteArray &format)
, _height(_data.height()) { , _height(_data.height()) {
} }
void ImageSource::load( void ImageSource::load(Data::FileOrigin origin) {
Data::FileOrigin origin,
bool loadFirst,
bool prior) {
if (_data.isNull() && !_bytes.isEmpty()) { if (_data.isNull() && !_bytes.isEmpty()) {
_data = App::readImage(_bytes, &_format, false); _data = App::readImage(_bytes, &_format, false);
} }
} }
void ImageSource::loadEvenCancelled( void ImageSource::loadEvenCancelled(Data::FileOrigin origin) {
Data::FileOrigin origin, load(origin);
bool loadFirst,
bool prior) {
load(origin, loadFirst, prior);
} }
QImage ImageSource::takeLoaded() { QImage ImageSource::takeLoaded() {
load({}, false, false); load({});
return _data; return _data;
} }
@ -60,8 +54,8 @@ void ImageSource::unload() {
} }
void ImageSource::automaticLoad( void ImageSource::automaticLoad(
Data::FileOrigin origin, Data::FileOrigin origin,
const HistoryItem *item) { const HistoryItem *item) {
} }
void ImageSource::automaticLoadSettingsChanged() { void ImageSource::automaticLoadSettingsChanged() {
@ -156,10 +150,7 @@ LocalFileSource::LocalFileSource(
, _height(_data.height()) { , _height(_data.height()) {
} }
void LocalFileSource::load( void LocalFileSource::load(Data::FileOrigin origin) {
Data::FileOrigin origin,
bool loadFirst,
bool prior) {
if (!_data.isNull()) { if (!_data.isNull()) {
return; return;
} }
@ -179,11 +170,8 @@ void LocalFileSource::load(
_height = std::max(_data.height(), 1); _height = std::max(_data.height(), 1);
} }
void LocalFileSource::loadEvenCancelled( void LocalFileSource::loadEvenCancelled(Data::FileOrigin origin) {
Data::FileOrigin origin, load(origin);
bool loadFirst,
bool prior) {
load(origin, loadFirst, prior);
} }
QImage LocalFileSource::takeLoaded() { QImage LocalFileSource::takeLoaded() {
@ -195,8 +183,8 @@ void LocalFileSource::unload() {
} }
void LocalFileSource::automaticLoad( void LocalFileSource::automaticLoad(
Data::FileOrigin origin, Data::FileOrigin origin,
const HistoryItem *item) { const HistoryItem *item) {
} }
void LocalFileSource::automaticLoadSettingsChanged() { void LocalFileSource::automaticLoadSettingsChanged() {
@ -245,7 +233,7 @@ bool LocalFileSource::isDelayedStorageImage() const {
void LocalFileSource::setImageBytes(const QByteArray &bytes) { void LocalFileSource::setImageBytes(const QByteArray &bytes) {
_bytes = bytes; _bytes = bytes;
load({}, false, true); load({});
} }
int LocalFileSource::width() { int LocalFileSource::width() {
@ -273,7 +261,7 @@ void LocalFileSource::setInformation(int size, int width, int height) {
void LocalFileSource::ensureDimensionsKnown() { void LocalFileSource::ensureDimensionsKnown() {
if (!_width || !_height) { if (!_width || !_height) {
load({}, false, false); load({});
} }
} }
@ -381,15 +369,12 @@ void RemoteSource::automaticLoadSettingsChanged() {
} }
} }
void RemoteSource::load( void RemoteSource::load(Data::FileOrigin origin) {
Data::FileOrigin origin,
bool loadFirst,
bool prior) {
if (!_loader) { if (!_loader) {
_loader = createLoader(origin, LoadFromCloudOrLocal, false); _loader = createLoader(origin, LoadFromCloudOrLocal, false);
} }
if (loaderValid()) { if (loaderValid()) {
_loader->start(loadFirst, prior); _loader->start();
} }
} }
@ -397,14 +382,11 @@ bool RemoteSource::cancelled() const {
return (_loader == CancelledFileLoader); return (_loader == CancelledFileLoader);
} }
void RemoteSource::loadEvenCancelled( void RemoteSource::loadEvenCancelled(Data::FileOrigin origin) {
Data::FileOrigin origin,
bool loadFirst,
bool prior) {
if (cancelled()) { if (cancelled()) {
_loader = nullptr; _loader = nullptr;
} }
return load(origin, loadFirst, prior); return load(origin);
} }
bool RemoteSource::displayLoading() { bool RemoteSource::displayLoading() {
@ -656,7 +638,7 @@ void DelayedStorageSource::performDelayedLoad(Data::FileOrigin origin) {
return; return;
} }
if (base::take(_loadFromCloud)) { if (base::take(_loadFromCloud)) {
load(origin, false, true); load(origin);
} else { } else {
loadLocal(); loadLocal();
} }
@ -689,23 +671,17 @@ void DelayedStorageSource::automaticLoadSettingsChanged() {
StorageSource::automaticLoadSettingsChanged(); StorageSource::automaticLoadSettingsChanged();
} }
void DelayedStorageSource::load( void DelayedStorageSource::load(Data::FileOrigin origin) {
Data::FileOrigin origin,
bool loadFirst,
bool prior) {
if (_location.valid()) { if (_location.valid()) {
StorageSource::load(origin, loadFirst, prior); StorageSource::load(origin);
} else { } else {
_loadRequested = _loadFromCloud = true; _loadRequested = _loadFromCloud = true;
} }
} }
void DelayedStorageSource::loadEvenCancelled( void DelayedStorageSource::loadEvenCancelled(Data::FileOrigin origin) {
Data::FileOrigin origin,
bool loadFirst,
bool prior) {
_loadCancelled = false; _loadCancelled = false;
StorageSource::loadEvenCancelled(origin, loadFirst, prior); StorageSource::loadEvenCancelled(origin);
} }
bool DelayedStorageSource::displayLoading() { bool DelayedStorageSource::displayLoading() {

View File

@ -15,14 +15,8 @@ class ImageSource : public Source {
public: public:
ImageSource(QImage &&data, const QByteArray &format); ImageSource(QImage &&data, const QByteArray &format);
void load( void load(Data::FileOrigin origin) override;
Data::FileOrigin origin, void loadEvenCancelled(Data::FileOrigin origin) override;
bool loadFirst,
bool prior) override;
void loadEvenCancelled(
Data::FileOrigin origin,
bool loadFirst,
bool prior) override;
QImage takeLoaded() override; QImage takeLoaded() override;
void unload() override; void unload() override;
@ -70,14 +64,8 @@ public:
const QByteArray &format = QByteArray(), const QByteArray &format = QByteArray(),
QImage &&data = QImage()); QImage &&data = QImage());
void load( void load(Data::FileOrigin origin) override;
Data::FileOrigin origin, void loadEvenCancelled(Data::FileOrigin origin) override;
bool loadFirst,
bool prior) override;
void loadEvenCancelled(
Data::FileOrigin origin,
bool loadFirst,
bool prior) override;
QImage takeLoaded() override; QImage takeLoaded() override;
void unload() override; void unload() override;
@ -122,14 +110,8 @@ private:
class RemoteSource : public Source { class RemoteSource : public Source {
public: public:
void load( void load(Data::FileOrigin origin) override;
Data::FileOrigin origin, void loadEvenCancelled(Data::FileOrigin origin) override;
bool loadFirst,
bool prior) override;
void loadEvenCancelled(
Data::FileOrigin origin,
bool loadFirst,
bool prior) override;
QImage takeLoaded() override; QImage takeLoaded() override;
void unload() override; void unload() override;
@ -263,14 +245,8 @@ public:
DelayedStorageSource(); DelayedStorageSource();
DelayedStorageSource(int width, int height); DelayedStorageSource(int width, int height);
void load( void load(Data::FileOrigin origin) override;
Data::FileOrigin origin, void loadEvenCancelled(Data::FileOrigin origin) override;
bool loadFirst,
bool prior) override;
void loadEvenCancelled(
Data::FileOrigin origin,
bool loadFirst,
bool prior) override;
void setDelayedStorageLocation( void setDelayedStorageLocation(
const StorageImageLocation &location) override; const StorageImageLocation &location) override;

View File

@ -691,7 +691,7 @@ void UserpicButton::processPeerPhoto() {
_waiting = !_peer->userpicLoaded(); _waiting = !_peer->userpicLoaded();
if (_waiting) { if (_waiting) {
_peer->loadUserpic(true); _peer->loadUserpic();
} }
if (_role == Role::OpenPhoto) { if (_role == Role::OpenPhoto) {
if (_peer->userpicPhotoUnknown()) { if (_peer->userpicPhotoUnknown()) {

View File

@ -666,7 +666,7 @@ void Notification::updateNotifyDisplay() {
p.fillRect(0, st::notifyBorderWidth, st::notifyBorderWidth, h - st::notifyBorderWidth, st::notifyBorder); p.fillRect(0, st::notifyBorderWidth, st::notifyBorderWidth, h - st::notifyBorderWidth, st::notifyBorder);
if (!options.hideNameAndPhoto) { if (!options.hideNameAndPhoto) {
_history->peer->loadUserpic(true, true); _history->peer->loadUserpic();
_history->peer->paintUserpicLeft(p, st::notifyPhotoPos.x(), st::notifyPhotoPos.y(), width(), st::notifyPhotoSize); _history->peer->paintUserpicLeft(p, st::notifyPhotoPos.x(), st::notifyPhotoPos.y(), width(), st::notifyPhotoSize);
} else { } else {
p.drawPixmap(st::notifyPhotoPos.x(), st::notifyPhotoPos.y(), manager()->hiddenUserpicPlaceholder()); p.drawPixmap(st::notifyPhotoPos.x(), st::notifyPhotoPos.y(), manager()->hiddenUserpicPlaceholder());