mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
AK: Add DuplexMemoryStream::copy_into_contiguous_buffer.
This commit is contained in:
parent
b68a873067
commit
3a2658951b
Notes:
sideshowbarker
2024-07-19 02:56:38 +09:00
Author: https://github.com/asynts Commit: https://github.com/SerenityOS/serenity/commit/3a2658951b6 Pull-request: https://github.com/SerenityOS/serenity/pull/3376
1 changed files with 18 additions and 2 deletions
|
@ -225,7 +225,7 @@ public:
|
|||
return {};
|
||||
}
|
||||
|
||||
size_t read(Bytes bytes) override
|
||||
size_t read_without_consuming(Bytes bytes) const
|
||||
{
|
||||
size_t nread = 0;
|
||||
while (bytes.size() - nread > 0 && m_write_offset - m_read_offset - nread > 0) {
|
||||
|
@ -234,8 +234,14 @@ public:
|
|||
nread += chunk_bytes.copy_trimmed_to(bytes.slice(nread));
|
||||
}
|
||||
|
||||
m_read_offset += nread;
|
||||
return nread;
|
||||
}
|
||||
|
||||
size_t read(Bytes bytes) override
|
||||
{
|
||||
const auto nread = read_without_consuming(bytes);
|
||||
|
||||
m_read_offset += nread;
|
||||
try_discard_chunks();
|
||||
|
||||
return nread;
|
||||
|
@ -272,6 +278,16 @@ public:
|
|||
return true;
|
||||
}
|
||||
|
||||
ByteBuffer copy_into_contiguous_buffer() const
|
||||
{
|
||||
auto buffer = ByteBuffer::create_uninitialized(remaining());
|
||||
|
||||
const auto nread = read_without_consuming(buffer);
|
||||
ASSERT(nread == buffer.size());
|
||||
|
||||
return buffer;
|
||||
}
|
||||
|
||||
size_t roffset() const { return m_read_offset; }
|
||||
size_t woffset() const { return m_write_offset; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue