mirror of https://github.com/procxx/kepka.git
Fix possible crash in local file streaming.
Cache file size instead of requesting it from file system each time.
This commit is contained in:
parent
9ed064b7fc
commit
31dbe2278e
|
@ -11,12 +11,23 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
|
||||
namespace Media {
|
||||
namespace Streaming {
|
||||
namespace {
|
||||
|
||||
// This is the maximum file size in Telegram API.
|
||||
constexpr auto kMaxFileSize = 3000 * 512 * 1024;
|
||||
|
||||
int ValidateLocalSize(int64 size) {
|
||||
return (size > 0 && size <= kMaxFileSize) ? int(size) : 0;
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
LoaderLocal::LoaderLocal(std::unique_ptr<QIODevice> device)
|
||||
: _device(std::move(device)) {
|
||||
: _device(std::move(device))
|
||||
, _size(ValidateLocalSize(_device->size())) {
|
||||
Expects(_device != nullptr);
|
||||
|
||||
if (!_device->open(QIODevice::ReadOnly)) {
|
||||
if (!_size || !_device->open(QIODevice::ReadOnly)) {
|
||||
fail();
|
||||
}
|
||||
}
|
||||
|
@ -26,7 +37,7 @@ std::optional<Storage::Cache::Key> LoaderLocal::baseCacheKey() const {
|
|||
}
|
||||
|
||||
int LoaderLocal::size() const {
|
||||
return _device->size();
|
||||
return _size;
|
||||
}
|
||||
|
||||
void LoaderLocal::load(int offset) {
|
||||
|
|
|
@ -35,7 +35,8 @@ public:
|
|||
private:
|
||||
void fail();
|
||||
|
||||
std::unique_ptr<QIODevice> _device;
|
||||
const std::unique_ptr<QIODevice> _device;
|
||||
const int _size = 0;
|
||||
rpl::event_stream<LoadedPart> _parts;
|
||||
|
||||
};
|
||||
|
|
|
@ -568,7 +568,9 @@ Reader::SerializedSlice Reader::Slices::serializeAndUnloadUnused() {
|
|||
}
|
||||
|
||||
Reader::SerializedSlice Reader::Slices::serializeAndUnloadSlice(
|
||||
int sliceNumber) {
|
||||
int sliceNumber) {
|
||||
Expects(_headerMode != HeaderMode::Unknown);
|
||||
Expects(_headerMode != HeaderMode::NoCache);
|
||||
Expects(sliceNumber >= 0 && sliceNumber <= _data.size());
|
||||
|
||||
if (isGoodHeader() && (sliceNumber == 1)) {
|
||||
|
|
Loading…
Reference in New Issue