/**************************************************************************** ** ** Copyright (C) 2022 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtNetwork module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ******************************************************************************/ #ifndef DECOMPRESS_HELPER_P_H #define DECOMPRESS_HELPER_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of the Network Access API. This header file may change from // version to version without notice, or even be removed. // // We mean it. // #include #include #include QT_BEGIN_NAMESPACE class QIODevice; class Q_AUTOTEST_EXPORT QDecompressHelper { public: enum ContentEncoding { None, Deflate, GZip, Brotli, Zstandard, }; QDecompressHelper() = default; ~QDecompressHelper(); bool setEncoding(const QByteArray &contentEncoding); bool isCountingBytes() const; void setCountingBytesEnabled(bool shouldCount); qint64 uncompressedSize() const; bool hasData() const; void feed(const QByteArray &data); void feed(QByteArray &&data); void feed(const QByteDataBuffer &buffer); void feed(QByteDataBuffer &&buffer); qsizetype read(char *data, qsizetype maxSize); bool isValid() const; void clear(); void setDecompressedSafetyCheckThreshold(qint64 threshold); static bool isSupportedEncoding(const QByteArray &encoding); static QByteArrayList acceptedEncoding(); QString errorString() const; private: bool isPotentialArchiveBomb() const; bool countInternal(); bool countInternal(const QByteArray &data); bool countInternal(const QByteDataBuffer &buffer); bool setEncoding(ContentEncoding ce); qint64 encodedBytesAvailable() const; qsizetype readZLib(char *data, qsizetype maxSize); qsizetype readBrotli(char *data, qsizetype maxSize); qsizetype readZstandard(char *data, qsizetype maxSize); QByteDataBuffer compressedDataBuffer; bool decoderHasData = false; bool countDecompressed = false; std::unique_ptr countHelper; qint64 uncompressedBytes = 0; QString errorStr; // Used for calculating the ratio qint64 archiveBombCheckThreshold = 10 * 1024 * 1024; qint64 totalUncompressedBytes = 0; qint64 totalCompressedBytes = 0; ContentEncoding contentEncoding = None; void *decoderPointer = nullptr; #if QT_CONFIG(brotli) const uint8_t *brotliUnconsumedDataPtr = nullptr; size_t brotliUnconsumedAmount = 0; #endif }; QT_END_NAMESPACE #endif // DECOMPRESS_HELPER_P_H