QGCZlib.cc 2.66 KB
Newer Older
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
/****************************************************************************
 *
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/

#include "QGCZlib.h"

#include <QFile>
#include <QDir>
#include <QtDebug>

#include "zlib.h"

bool QGCZlib::inflateGzipFile(const QString& gzippedFileName, const QString& decompressedFilename)
{
    bool            success                 = true;
    int             ret;
    const int       cBuffer                 = 1024 * 5;
    unsigned char   inputBuffer[cBuffer];
    unsigned char   outputBuffer[cBuffer];
    z_stream        strm;

    QFile inputFile(gzippedFileName);
    if (!inputFile.open(QIODevice::ReadOnly)) {
        qWarning() << "QGCZlib::inflateGzipFile: open input file failed" << gzippedFileName << inputFile.errorString();
        return false;
    }

    QFile outputFile(decompressedFilename);
    if (!outputFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
        qWarning() << "QGCZlib::inflateGzipFile: open input file failed" << outputFile.fileName() << outputFile.errorString();
        return false;
    }

    strm.zalloc     = nullptr;
    strm.zfree      = nullptr;
    strm.opaque     = nullptr;
    strm.avail_in   = 0;
    strm.next_in    = nullptr;

    ret = inflateInit2(&strm, 16+MAX_WBITS);
    if (ret != Z_OK) {
        qWarning() << "QGCZlib::inflateGzipFile: inflateInit2 failed:" << ret;
        goto Error;
    }

    do {
        strm.avail_in = static_cast<unsigned>(inputFile.read((char*)inputBuffer, cBuffer));
        if (strm.avail_in == 0) {
            break;
        }
        strm.next_in = inputBuffer;

        do {
            strm.avail_out  = cBuffer;
            strm.next_out   = outputBuffer;

            ret = inflate(&strm, Z_NO_FLUSH);
            if (ret != Z_OK && ret != Z_STREAM_END) {
                qWarning() << "QGCZlib::inflateGzipFile: inflate failed:" << ret;
                goto Error;
            }

            unsigned cBytesInflated = cBuffer - strm.avail_out;
            qint64 cBytesWritten = outputFile.write((char*)outputBuffer, static_cast<int>(cBytesInflated));
            if (cBytesWritten != cBytesInflated) {
                qWarning() << "QGCZlib::inflateGzipFile: output file write failed:" << outputFile.fileName() << outputFile.errorString();
                goto Error;

            }
        } while (strm.avail_out == 0);
    } while (ret != Z_STREAM_END);

Out:
    inflateEnd(&strm);
    return success;

Error:
    success = false;
    goto Out;
}