summaryrefslogtreecommitdiff
path: root/src/archive.cpp
blob: 0339d8502eaebc49810b76d27ef4a74aad925cb7 (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#include "archive.hpp"

#include "main_window.hpp"

#include <algorithm>

namespace getsuyomi {

ZipArchive::ZipArchive(const QString& filename)
{
    auto filenameUtf8 = filename.toUtf8();
    qDebug("Open file %s", filenameUtf8.data());
    int err;
    m_archive = zip_open(filenameUtf8.data(), 0, &err);
    if (m_archive == nullptr) {
        zip_error_t error;
        zip_error_init_with_code(&error, err);
        qCritical("%s: cannot open zip archive '%s': %s", AppName, filenameUtf8.data(), zip_error_strerror(&error));
        zip_error_fini(&error);
        throw std::runtime_error("Bad zip file");
    }

    populate();
}

void ZipArchive::populate()
{
    auto numEntries = zip_get_num_entries(m_archive, ZIP_FL_UNCHANGED);
    qDebug("%zu pages", numEntries);

    struct NameIndex {
        std::string name;
        size_t index;
        size_t filesize;
    };

    std::vector<NameIndex> nameIndices{};
    nameIndices.reserve(numEntries);
    m_pages.reserve(numEntries);

    for (size_t idx = 0; idx < numEntries; ++idx) {
        struct zip_stat stats;

        auto status = zip_stat_index(m_archive, idx, 0, &stats);
        static_assert(ZIP_STAT_NAME != 0);
        static_assert(ZIP_STAT_SIZE != 0);
        static_assert(ZIP_STAT_INDEX != 0);
        // auto* nameCString = zip_get_name(m_archive, idx, ZIP_FL_ENC_RAW);
        auto* nameCString = stats.name;
        if (nameCString == nullptr) {
            zip_error_t* error = zip_get_error(m_archive);
            qWarning("cannot get name %s", zip_error_strerror(error));
            continue;
        }
        std::string name{nameCString};
        if (name.empty() || name.back() == '/') {
            qDebug("Directory %s", name.empty() ? "N/A" : nameCString);
            continue;
        }

        nameIndices.emplace_back(NameIndex{name, idx, stats.size});
        m_pages.emplace_back(std::nullopt);
    }

    std::sort(nameIndices.begin(), nameIndices.end(), [](const auto& lhs, const auto& rhs) {
        return std::lexicographical_compare(lhs.name.begin(), lhs.name.end(), rhs.name.begin(), rhs.name.end());
    });

    m_sortedIndices.reserve(nameIndices.size());
    m_filenames.reserve(nameIndices.size());
    m_fileSizes.reserve(nameIndices.size());

    for (const auto& nameIndex : nameIndices) {
        m_sortedIndices.push_back(nameIndex.index);
        m_filenames.push_back(nameIndex.name);
        m_fileSizes.push_back(nameIndex.filesize);
    }
}

ZipArchive::~ZipArchive()
{
    if (m_archive != nullptr) {
        zip_discard(m_archive);
        m_archive = nullptr;
    }
}

ArchiveResult ZipArchive::getPage(size_t page)
{
    qDebug("Getting page %zu", page);
    if (page > m_sortedIndices.size()) {
        return ArchiveResult::error(ArchiveError::BadIndex);
    }

    if (m_pages[page] != std::nullopt) {
        qDebug("Page found %zu", page);
        return ArchiveResult::okay(std::cref(*m_pages[page]));
    }

    auto* file = zip_fopen_index(m_archive, m_sortedIndices[page], 0);
    if (file == nullptr) {
        zip_error_t* error = zip_get_error(m_archive);
        qWarning("cannot get file name %s: %s", m_filenames[page].data(), zip_error_strerror(error));
        return ArchiveResult::error(ArchiveError::ZipError);
    }

    QByteArray data;
    data.resize(m_fileSizes[page]);
    auto index = m_sortedIndices[page];

    qDebug("Reading in page data");
    auto bytesRead = zip_fread(file, data.data(), data.size());
    zip_fclose(file);
    file = nullptr;

    if (bytesRead != data.size()) {
        return ArchiveResult::error(ArchiveError::ZipError);
    }

    m_pages[page] = QImage();
    qDebug("Loading QImage from page data");
    auto loaded = m_pages[page]->loadFromData(data);
    if (!loaded) {
        qWarning("Failed to load QImage");
        m_pages[page] = std::nullopt;
        return ArchiveResult::error(ArchiveError::BadData);
    }

    return ArchiveResult::okay(std::cref(*m_pages[page]));
}

size_t ZipArchive::numPages() const {
    return m_pages.size();
}

} // namespace getsuyomi