summaryrefslogtreecommitdiffstats
path: root/src/common/lz4_compression.cpp
blob: d85ab1742f52632b99bca271dab24caac46056a2 (plain) (blame)
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
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include <algorithm>
#include <lz4hc.h>

#include "common/assert.h"
#include "common/lz4_compression.h"

namespace Common::Compression {

std::vector<u8> CompressDataLZ4(const u8* source, std::size_t source_size) {
    ASSERT_MSG(source_size <= LZ4_MAX_INPUT_SIZE, "Source size exceeds LZ4 maximum input size");

    const auto source_size_int = static_cast<int>(source_size);
    const auto max_compressed_size = static_cast<std::size_t>(LZ4_compressBound(source_size_int));
    std::vector<u8> compressed(max_compressed_size);

    const int compressed_size = LZ4_compress_default(
        reinterpret_cast<const char*>(source), reinterpret_cast<char*>(compressed.data()),
        source_size_int, static_cast<int>(max_compressed_size));

    if (compressed_size <= 0) {
        // Compression failed
        return {};
    }

    compressed.resize(static_cast<std::size_t>(compressed_size));

    return compressed;
}

std::vector<u8> CompressDataLZ4HC(const u8* source, std::size_t source_size,
                                  s32 compression_level) {
    ASSERT_MSG(source_size <= LZ4_MAX_INPUT_SIZE, "Source size exceeds LZ4 maximum input size");

    compression_level = std::clamp(compression_level, LZ4HC_CLEVEL_MIN, LZ4HC_CLEVEL_MAX);

    const auto source_size_int = static_cast<int>(source_size);
    const auto max_compressed_size = static_cast<std::size_t>(LZ4_compressBound(source_size_int));
    std::vector<u8> compressed(max_compressed_size);

    const int compressed_size = LZ4_compress_HC(
        reinterpret_cast<const char*>(source), reinterpret_cast<char*>(compressed.data()),
        source_size_int, static_cast<int>(max_compressed_size), compression_level);

    if (compressed_size <= 0) {
        // Compression failed
        return {};
    }

    compressed.resize(static_cast<std::size_t>(compressed_size));

    return compressed;
}

std::vector<u8> CompressDataLZ4HCMax(const u8* source, std::size_t source_size) {
    return CompressDataLZ4HC(source, source_size, LZ4HC_CLEVEL_MAX);
}

std::vector<u8> DecompressDataLZ4(std::span<const u8> compressed, std::size_t uncompressed_size) {
    std::vector<u8> uncompressed(uncompressed_size);
    const int size_check = LZ4_decompress_safe(reinterpret_cast<const char*>(compressed.data()),
                                               reinterpret_cast<char*>(uncompressed.data()),
                                               static_cast<int>(compressed.size()),
                                               static_cast<int>(uncompressed.size()));
    if (static_cast<int>(uncompressed_size) != size_check) {
        // Decompression failed
        return {};
    }
    return uncompressed;
}

int DecompressDataLZ4(void* dst, size_t dst_size, const void* src, size_t src_size) {
    // This is just a thin wrapper around LZ4.
    return LZ4_decompress_safe(reinterpret_cast<const char*>(src), reinterpret_cast<char*>(dst),
                               static_cast<int>(src_size), static_cast<int>(dst_size));
}

} // namespace Common::Compression