1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/* Copyright (C) Teemu Suutari */
#ifndef LZBSDECOMPRESSOR_HPP
#define LZBSDECOMPRESSOR_HPP
#include "XPKDecompressor.hpp"
namespace ancient::internal
{
class LZBSDecompressor : public XPKDecompressor
{
public:
LZBSDecompressor(uint32_t hdr,uint32_t recursionLevel,const Buffer &packedData,std::shared_ptr<XPKDecompressor::State> &state,bool verify);
~LZBSDecompressor() noexcept=default;
const std::string &getSubName() const noexcept final;
void decompressImpl(Buffer &rawData,const Buffer &previousData,bool verify) final;
static bool detectHeaderXPK(uint32_t hdr) noexcept;
static std::shared_ptr<XPKDecompressor> create(uint32_t hdr,uint32_t recursionLevel,const Buffer &packedData,std::shared_ptr<XPKDecompressor::State> &state,bool verify);
private:
const Buffer &_packedData;
};
}
#endif
|