Package adams.core.io

Class Bzip2Utils


  • public class Bzip2Utils
    extends Object
    Helper class for bzip2 related operations.
    Author:
    fracpete (fracpete at waikato dot ac dot nz)
    • Constructor Detail

      • Bzip2Utils

        public Bzip2Utils()
    • Method Detail

      • decompress

        public static String decompress​(File archiveFile,
                                        int buffer)
        Decompresses the specified archive to a file without the ".bz2" extension.
        Parameters:
        archiveFile - the archive file to decompress
        buffer - the buffer size to use
        Returns:
        the error message, null if everything OK
      • decompress

        public static String decompress​(File archiveFile,
                                        int buffer,
                                        File outputFile)
        Decompresses the specified archive.

        See Apache commons/compress.
        Parameters:
        archiveFile - the archive file to decompress
        buffer - the buffer size to use
        outputFile - the destination file
        Returns:
        the error message, null if everything OK
      • compress

        public static String compress​(File inputFile,
                                      int buffer)
        Compresses the specified file to a file with the ".bz2" extension.
        Parameters:
        inputFile - the file to compress
        buffer - the buffer size to use
        Returns:
        the error message, null if everything OK
      • compress

        public static String compress​(File inputFile,
                                      int buffer,
                                      File outputFile)
        Compresses the specified file. Does not remove the input file.
        Parameters:
        inputFile - the file to compress
        buffer - the buffer size to use
        outputFile - the destination file (the archive)
        Returns:
        the error message, null if everything OK
      • compress

        public static String compress​(File inputFile,
                                      int buffer,
                                      File outputFile,
                                      boolean removeInput)
        Compresses the specified file.

        See Apache commons/compress.
        Parameters:
        inputFile - the file to compress
        buffer - the buffer size to use
        outputFile - the destination file (the archive)
        removeInput - whether to remove the input file
        Returns:
        the error message, null if everything OK
      • compress

        public static byte[] compress​(byte[] input)
        Compresses the specified bytes using bzip2.
        Parameters:
        input - the bytes to compress
        Returns:
        the compressed bytes, null in case of error
      • compress

        public static byte[] compress​(byte[] input,
                                      MessageCollection errors)
        Compresses the specified bytes using bzip2.
        Parameters:
        input - the bytes to compress
        Returns:
        the compressed bytes, null in case of error
      • decompress

        public static byte[] decompress​(byte[] input,
                                        int buffer)
        Decompresses the specified bzip2 compressed bytes.
        Parameters:
        input - the compressed bytes
        buffer - the buffer size to use
        Returns:
        the decompressed bytes, null in case of error
      • decompress

        public static byte[] decompress​(byte[] input,
                                        int buffer,
                                        MessageCollection errors)
        Decompresses the specified bzip2 compressed bytes.
        Parameters:
        input - the compressed bytes
        buffer - the buffer size to use
        errors - for collecting errors
        Returns:
        the decompressed bytes, null in case of error
      • isBzip2Compressed

        public static boolean isBzip2Compressed​(File file)
        Checks whether the file is bzip2 compressed. See: https://en.wikipedia.org/wiki/Bzip2#File_format
        Parameters:
        file - the file to inspect
        Returns:
        true if gzip
      • isBzip2Compressed

        public static boolean isBzip2Compressed​(byte[] data)
        Checks whether the array is bzip2 compressed. See: https://en.wikipedia.org/wiki/Bzip2#File_format
        Parameters:
        data - the data to inspect
        Returns:
        true if gzip