net.openhft.chronicle.bytes.util.Compressions Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2016-2022 chronicle.software
*
* https://chronicle.software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.openhft.chronicle.bytes.util;
import net.openhft.chronicle.bytes.BytesIn;
import net.openhft.chronicle.bytes.BytesOut;
import net.openhft.chronicle.bytes.BytesStore;
import net.openhft.chronicle.core.io.ClosedIllegalStateException;
import net.openhft.chronicle.core.io.IORuntimeException;
import net.openhft.chronicle.core.io.ThreadingIllegalStateException;
import org.jetbrains.annotations.NotNull;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.BufferOverflowException;
import java.util.zip.*;
/**
* Enum representing different compression algorithms and providing corresponding
* compressing and decompressing streams.
*/
@SuppressWarnings("rawtypes")
public enum Compressions implements Compression {
/**
* Binary compression is a placeholder compression which does not perform any actual
* compression. It simply returns the input bytes.
*/
Binary {
/**
* No-operation compression. Returns the input bytes without changes.
*
* @param bytes the input bytes
* @return the same input bytes
*/
@Override
public byte[] compress(byte[] bytes) {
return bytes;
}
/**
* No-operation decompression. Returns the input bytes without changes.
*
* @param bytes the input bytes
* @return the same input bytes
* @throws IORuntimeException If an I/O error occurs
*/
@Override
public byte[] uncompress(byte[] bytes) throws IORuntimeException {
return bytes;
}
/**
* Copies data from the input BytesIn to the output BytesOut without any compression.
*
* @param from the input BytesIn
* @param to the output BytesOut
* @throws BufferOverflowException If the buffer overflows
* @throws ClosedIllegalStateException If the resource has been released or closed.
* @throws ThreadingIllegalStateException If this resource was accessed by multiple threads in an unsafe way
*/
@Override
public void compress(@NotNull BytesIn> from, @NotNull BytesOut> to) throws IllegalStateException, BufferOverflowException {
copy(from, to);
}
/**
* Copies data from the input BytesIn to the output BytesOut without any decompression.
*
* @param from the input BytesIn
* @param to the output BytesOut
* @throws BufferOverflowException If the buffer overflows
* @throws ClosedIllegalStateException If the resource has been released or closed.
* @throws ThreadingIllegalStateException If this resource was accessed by multiple threads in an unsafe way
*/
@Override
public void uncompress(@NotNull BytesIn> from, @NotNull BytesOut> to) throws IllegalStateException, BufferOverflowException {
copy(from, to);
}
/**
* Copies data from the input BytesIn to the output BytesOut without any changes.
*
* @param from the input BytesIn
* @param to the output BytesOut
* @throws BufferOverflowException If the buffer overflows
* @throws ClosedIllegalStateException If the resource has been released or closed.
* @throws ThreadingIllegalStateException If this resource was accessed by multiple threads in an unsafe way
*/
private void copy(@NotNull BytesIn> from, @NotNull BytesOut> to) throws IllegalStateException, BufferOverflowException {
long copied = from.copyTo((BytesStore) to);
to.writeSkip(copied);
}
/**
* Returns the input stream without any changes.
*
* @param input the input stream
* @return the same input stream
*/
@Override
public InputStream decompressingStream(InputStream input) {
return input;
}
/**
* Returns the output stream without any changes.
*
* @param output the output stream
* @return the same output stream
*/
@Override
public OutputStream compressingStream(OutputStream output) {
return output;
}
},
/**
* LZW (Lempel-Ziv-Welch) is a lossless data compression algorithm.
*/
LZW {
/**
* Returns an input stream that decompresses LZW-compressed data.
*
* @param input the LZW-compressed input stream
* @return the decompressing input stream
*/
@NotNull
@Override
public InputStream decompressingStream(@NotNull InputStream input) {
return new InflaterInputStream(input);
}
/**
* Returns an output stream that compresses data using the LZW algorithm.
*
* @param output the output stream
* @return the compressing output stream
*/
@NotNull
@Override
public OutputStream compressingStream(@NotNull OutputStream output) {
return new DeflaterOutputStream(output, new Deflater(Deflater.DEFAULT_COMPRESSION));
}
},
/**
* GZIP is a file format and a software application used for file compression and decompression.
*/
GZIP {
/**
* Returns an input stream that decompresses GZIP-compressed data.
*
* @param input the GZIP-compressed input stream
* @return the decompressing input stream
* @throws IORuntimeException If an I/O error occurs
*/
@NotNull
@Override
public InputStream decompressingStream(@NotNull InputStream input)
throws IORuntimeException {
try {
return new GZIPInputStream(input);
} catch (IOException e) {
throw new AssertionError(e);
}
}
/**
* Returns an output stream that compresses data using the GZIP algorithm.
*
* @param output the output stream
* @return the compressing output stream
*/
@NotNull
@Override
public OutputStream compressingStream(@NotNull OutputStream output) {
try {
return new GZIPOutputStream(output);
} catch (IOException e) {
throw new AssertionError(e);
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy