mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:47:35 +00:00
AK+LibCompress: Remove the Deflate back-reference intermediate buffer
Instead of reading bytes from the output stream into a buffer, just to immediately write them back out, we can skip the middle-man and copy the bytes directly into the output buffer.
This commit is contained in:
parent
9f238793e0
commit
8b56d82865
3 changed files with 19 additions and 3 deletions
|
@ -206,4 +206,20 @@ ErrorOr<size_t> CircularBuffer::fill_from_stream(Stream& stream)
|
||||||
return bytes.size();
|
return bytes.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ErrorOr<void> CircularBuffer::copy_from_seekback(size_t distance, size_t length)
|
||||||
|
{
|
||||||
|
if (distance > m_seekback_limit)
|
||||||
|
return Error::from_string_literal("Tried a seekback copy beyond the seekback limit");
|
||||||
|
|
||||||
|
while (length > 0) {
|
||||||
|
auto next_span = next_read_span_with_seekback(distance);
|
||||||
|
if (next_span.size() == 0)
|
||||||
|
break;
|
||||||
|
|
||||||
|
length -= write(next_span.trim(length));
|
||||||
|
}
|
||||||
|
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,8 @@ public:
|
||||||
/// before the current write pointer and allows for reading already-read data.
|
/// before the current write pointer and allows for reading already-read data.
|
||||||
ErrorOr<Bytes> read_with_seekback(Bytes bytes, size_t distance);
|
ErrorOr<Bytes> read_with_seekback(Bytes bytes, size_t distance);
|
||||||
|
|
||||||
|
ErrorOr<void> copy_from_seekback(size_t distance, size_t length);
|
||||||
|
|
||||||
[[nodiscard]] size_t empty_space() const;
|
[[nodiscard]] size_t empty_space() const;
|
||||||
[[nodiscard]] size_t used_space() const;
|
[[nodiscard]] size_t used_space() const;
|
||||||
[[nodiscard]] size_t capacity() const;
|
[[nodiscard]] size_t capacity() const;
|
||||||
|
|
|
@ -207,9 +207,7 @@ ErrorOr<bool> DeflateDecompressor::CompressedBlock::try_read_more()
|
||||||
m_decompressor.m_output_buffer.write({ &byte, sizeof(byte) });
|
m_decompressor.m_output_buffer.write({ &byte, sizeof(byte) });
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
Array<u8, DeflateDecompressor::max_back_reference_length> buffer;
|
TRY(m_decompressor.m_output_buffer.copy_from_seekback(distance, length));
|
||||||
auto bytes = TRY(m_decompressor.m_output_buffer.read_with_seekback({ buffer.data(), length }, distance));
|
|
||||||
m_decompressor.m_output_buffer.write(bytes);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue