summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibCompress/Gzip.cpp51
-rw-r--r--Userland/Libraries/LibCompress/Gzip.h16
2 files changed, 40 insertions, 27 deletions
diff --git a/Userland/Libraries/LibCompress/Gzip.cpp b/Userland/Libraries/LibCompress/Gzip.cpp
index 2aeccf7757..4f2426d04c 100644
--- a/Userland/Libraries/LibCompress/Gzip.cpp
+++ b/Userland/Libraries/LibCompress/Gzip.cpp
@@ -173,12 +173,17 @@ ErrorOr<size_t> GzipDecompressor::write(ReadonlyBytes)
VERIFY_NOT_REACHED();
}
-GzipCompressor::GzipCompressor(OutputStream& stream)
- : m_output_stream(stream)
+GzipCompressor::GzipCompressor(Core::Stream::Handle<Core::Stream::Stream> stream)
+ : m_output_stream(move(stream))
{
}
-size_t GzipCompressor::write(ReadonlyBytes bytes)
+ErrorOr<Bytes> GzipCompressor::read(Bytes)
+{
+ return Error::from_errno(EBADF);
+}
+
+ErrorOr<size_t> GzipCompressor::write(ReadonlyBytes bytes)
{
BlockHeader header;
header.identification_1 = 0x1f;
@@ -188,39 +193,45 @@ size_t GzipCompressor::write(ReadonlyBytes bytes)
header.modification_time = 0;
header.extra_flags = 3; // DEFLATE sets 2 for maximum compression and 4 for minimum compression
header.operating_system = 3; // unix
- m_output_stream << Bytes { &header, sizeof(header) };
- DeflateCompressor compressed_stream { m_output_stream };
- VERIFY(compressed_stream.write_or_error(bytes));
+ TRY(m_output_stream->write_entire_buffer({ &header, sizeof(header) }));
+ Core::Stream::WrapInAKOutputStream wrapped_stream { *m_output_stream };
+ DeflateCompressor compressed_stream { wrapped_stream };
+ if (!compressed_stream.write_or_error(bytes))
+ return Error::from_string_literal("Underlying DeflateCompressor indicated an error");
compressed_stream.final_flush();
Crypto::Checksum::CRC32 crc32;
crc32.update(bytes);
LittleEndian<u32> digest = crc32.digest();
LittleEndian<u32> size = bytes.size();
- m_output_stream << digest << size;
+ TRY(m_output_stream->write_entire_buffer(digest.bytes()));
+ TRY(m_output_stream->write_entire_buffer(size.bytes()));
return bytes.size();
}
-bool GzipCompressor::write_or_error(ReadonlyBytes bytes)
+bool GzipCompressor::is_eof() const
{
- if (write(bytes) < bytes.size()) {
- set_fatal_error();
- return false;
- }
-
return true;
}
-Optional<ByteBuffer> GzipCompressor::compress_all(ReadonlyBytes bytes)
+bool GzipCompressor::is_open() const
{
- DuplexMemoryStream output_stream;
- GzipCompressor gzip_stream { output_stream };
+ return m_output_stream->is_open();
+}
- gzip_stream.write_or_error(bytes);
+void GzipCompressor::close()
+{
+}
- if (gzip_stream.handle_any_error())
- return {};
+ErrorOr<ByteBuffer> GzipCompressor::compress_all(ReadonlyBytes bytes)
+{
+ auto output_stream = TRY(try_make<Core::Stream::AllocatingMemoryStream>());
+ GzipCompressor gzip_stream { Core::Stream::Handle<Core::Stream::Stream>(*output_stream) };
- return output_stream.copy_into_contiguous_buffer();
+ TRY(gzip_stream.write_entire_buffer(bytes));
+
+ auto buffer = TRY(ByteBuffer::create_uninitialized(output_stream->used_buffer_size()));
+ TRY(output_stream->read_entire_buffer(buffer.bytes()));
+ return buffer;
}
}
diff --git a/Userland/Libraries/LibCompress/Gzip.h b/Userland/Libraries/LibCompress/Gzip.h
index 74ab4a7b6a..5a038515ab 100644
--- a/Userland/Libraries/LibCompress/Gzip.h
+++ b/Userland/Libraries/LibCompress/Gzip.h
@@ -79,18 +79,20 @@ private:
bool m_eof { false };
};
-class GzipCompressor final : public OutputStream {
+class GzipCompressor final : public Core::Stream::Stream {
public:
- GzipCompressor(OutputStream&);
- ~GzipCompressor() = default;
+ GzipCompressor(Core::Stream::Handle<Core::Stream::Stream>);
- size_t write(ReadonlyBytes) override;
- bool write_or_error(ReadonlyBytes) override;
+ virtual ErrorOr<Bytes> read(Bytes) override;
+ virtual ErrorOr<size_t> write(ReadonlyBytes) override;
+ virtual bool is_eof() const override;
+ virtual bool is_open() const override;
+ virtual void close() override;
- static Optional<ByteBuffer> compress_all(ReadonlyBytes bytes);
+ static ErrorOr<ByteBuffer> compress_all(ReadonlyBytes bytes);
private:
- OutputStream& m_output_stream;
+ Core::Stream::Handle<Core::Stream::Stream> m_output_stream;
};
}