aboutsummaryrefslogtreecommitdiff
path: root/spark-common/src/main/java/me/lucko/spark/common/util/Compression.java
blob: c8100e1fa782e6516ee92d19049c2813f4b1b602 (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
/*
 * This file is part of spark.
 *
 *  Copyright (c) lucko (Luck) <luck@lucko.me>
 *  Copyright (c) contributors
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package me.lucko.spark.common.util;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.function.LongConsumer;
import java.util.zip.GZIPOutputStream;

public enum Compression {
    GZIP {
        @Override
        public Path compress(Path file, LongConsumer progressHandler) throws IOException {
            Path compressedFile = file.getParent().resolve(file.getFileName().toString() + ".gz");
            try (InputStream in = Files.newInputStream(file)) {
                try (OutputStream out = Files.newOutputStream(compressedFile)) {
                    try (GZIPOutputStream compressionOut = new GZIPOutputStream(out, 1024 * 64)) {
                        copy(in, compressionOut, progressHandler);
                    }
                }
            }
            return compressedFile;
        }
    };
    // XZ {
    //     @Override
    //     public Path compress(Path file, LongConsumer progressHandler) throws IOException {
    //         Path compressedFile = file.getParent().resolve(file.getFileName().toString() + ".xz");
    //         try (InputStream in = Files.newInputStream(file)) {
    //             try (OutputStream out = Files.newOutputStream(compressedFile)) {
    //                 try (XZOutputStream compressionOut = new XZOutputStream(out, new LZMA2Options())) {
    //                     copy(in, compressionOut, progressHandler);
    //                 }
    //             }
    //         }
    //         return compressedFile;
    //     }
    // },
    // LZMA {
    //     @Override
    //     public Path compress(Path file, LongConsumer progressHandler) throws IOException {
    //         Path compressedFile = file.getParent().resolve(file.getFileName().toString() + ".lzma");
    //         try (InputStream in = Files.newInputStream(file)) {
    //             try (OutputStream out = Files.newOutputStream(compressedFile)) {
    //                 try (LZMAOutputStream compressionOut = new LZMAOutputStream(out, new LZMA2Options(), true)) {
    //                     copy(in, compressionOut, progressHandler);
    //                 }
    //             }
    //         }
    //         return compressedFile;
    //     }
    // };

    public abstract Path compress(Path file, LongConsumer progressHandler) throws IOException;

    private static long copy(InputStream from, OutputStream to, LongConsumer progress) throws IOException {
        byte[] buf = new byte[1024 * 64];
        long total = 0;
        long iterations = 0;
        while (true) {
            int r = from.read(buf);
            if (r == -1) {
                break;
            }
            to.write(buf, 0, r);
            total += r;

            // report progress every 5MB
            if (iterations++ % ((1024 / 64) * 5) == 0) {
                progress.accept(total);
            }
        }
        return total;
    }
}