mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
135daeb8bb
Some checks are pending
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-15, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
Instead of checking the header in ZlibDecompressor::create(), we now check it in read_some() when it is called for the first time. This resolves a FIXME in the new DecompressionStream implementation.
93 lines
2.5 KiB
C++
93 lines
2.5 KiB
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteBuffer.h>
|
|
#include <AK/Endian.h>
|
|
#include <AK/MaybeOwned.h>
|
|
#include <AK/Optional.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <AK/Span.h>
|
|
#include <AK/Stream.h>
|
|
#include <AK/Types.h>
|
|
#include <LibCrypto/Checksum/Adler32.h>
|
|
|
|
namespace Compress {
|
|
|
|
enum class ZlibCompressionMethod : u8 {
|
|
Deflate = 8,
|
|
};
|
|
|
|
enum class ZlibCompressionLevel : u8 {
|
|
Fastest,
|
|
Fast,
|
|
Default,
|
|
Best,
|
|
};
|
|
|
|
struct ZlibHeader {
|
|
union {
|
|
struct {
|
|
ZlibCompressionMethod compression_method : 4;
|
|
u8 compression_info : 4;
|
|
|
|
u8 check_bits : 5;
|
|
bool present_dictionary : 1;
|
|
ZlibCompressionLevel compression_level : 2;
|
|
};
|
|
NetworkOrdered<u16> as_u16;
|
|
};
|
|
};
|
|
static_assert(sizeof(ZlibHeader) == sizeof(u16));
|
|
|
|
class ZlibDecompressor : public Stream {
|
|
public:
|
|
static ErrorOr<NonnullOwnPtr<ZlibDecompressor>> create(MaybeOwned<Stream>);
|
|
|
|
virtual ErrorOr<Bytes> read_some(Bytes) override;
|
|
virtual ErrorOr<size_t> write_some(ReadonlyBytes) override;
|
|
virtual bool is_eof() const override;
|
|
virtual bool is_open() const override;
|
|
virtual void close() override;
|
|
|
|
private:
|
|
ZlibDecompressor(MaybeOwned<Stream>);
|
|
|
|
bool m_has_seen_header { false };
|
|
MaybeOwned<Stream> m_stream;
|
|
};
|
|
|
|
class ZlibCompressor : public Stream {
|
|
public:
|
|
static ErrorOr<NonnullOwnPtr<ZlibCompressor>> construct(MaybeOwned<Stream>, ZlibCompressionLevel = ZlibCompressionLevel::Default);
|
|
~ZlibCompressor();
|
|
|
|
virtual ErrorOr<Bytes> read_some(Bytes) override;
|
|
virtual ErrorOr<size_t> write_some(ReadonlyBytes) override;
|
|
virtual bool is_eof() const override;
|
|
virtual bool is_open() const override;
|
|
virtual void close() override;
|
|
ErrorOr<void> finish();
|
|
|
|
static ErrorOr<ByteBuffer> compress_all(ReadonlyBytes bytes, ZlibCompressionLevel = ZlibCompressionLevel::Default);
|
|
|
|
private:
|
|
ZlibCompressor(MaybeOwned<Stream> stream, NonnullOwnPtr<Stream> compressor_stream);
|
|
ErrorOr<void> write_header(ZlibCompressionMethod, ZlibCompressionLevel);
|
|
|
|
bool m_finished { false };
|
|
MaybeOwned<Stream> m_output_stream;
|
|
NonnullOwnPtr<Stream> m_compressor;
|
|
Crypto::Checksum::Adler32 m_adler32_checksum;
|
|
};
|
|
|
|
}
|
|
|
|
template<>
|
|
struct AK::Traits<Compress::ZlibHeader> : public AK::DefaultTraits<Compress::ZlibHeader> {
|
|
static constexpr bool is_trivially_serializable() { return true; }
|
|
};
|