org.odk.collect.android.utilities.CompressionUtils.java Source code

Java tutorial

Introduction

Here is the source code for org.odk.collect.android.utilities.CompressionUtils.java

Source

/*
 * Copyright (C) 2017 Shobhit
 *
 * 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 org.odk.collect.android.utilities;

import com.google.api.client.repackaged.org.apache.commons.codec.binary.Base64;

import org.apache.commons.io.output.ByteArrayOutputStream;

import java.io.IOException;
import java.util.zip.DataFormatException;
import java.util.zip.Deflater;
import java.util.zip.Inflater;

import timber.log.Timber;

/**
 * Created by shobhit on 12/4/17.
 */

public class CompressionUtils {
    public static String compress(String data) throws IOException {
        if (data == null || data.length() == 0) {
            return data;
        }

        // Encode string into bytes
        byte[] input = data.getBytes("UTF-8");

        Deflater deflater = new Deflater();
        deflater.setInput(input);

        // Compress the bytes
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream(data.length());
        deflater.finish();
        byte[] buffer = new byte[1024];
        while (!deflater.finished()) {
            int count = deflater.deflate(buffer); // returns the generated code... index
            outputStream.write(buffer, 0, count);
        }
        outputStream.close();
        byte[] output = outputStream.toByteArray();

        // Encode to base64
        String base64String = Base64.encodeBase64String(output);
        Timber.i("Original : %d", data.length());
        Timber.i("Compressed : %d", base64String.length());
        Timber.i("Compression ratio : %2f", ((data.length() * 1.0) / base64String.length()) * 100);
        return base64String;
    }

    public static String decompress(String compressedString) throws IOException, DataFormatException {
        if (compressedString == null || compressedString.length() == 0) {
            return compressedString;
        }

        // Decode from base64
        byte[] output = Base64.decodeBase64(compressedString);

        Inflater inflater = new Inflater();
        inflater.setInput(output);

        // Decompresses the bytes
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream(output.length);
        byte[] buffer = new byte[1024];
        while (!inflater.finished()) {
            int count = inflater.inflate(buffer);
            outputStream.write(buffer, 0, count);
        }
        outputStream.close();
        byte[] result = outputStream.toByteArray();

        // Decode the bytes into a String
        String outputString = new String(result, "UTF-8");
        Timber.i("Compressed : %d", output.length);
        Timber.i("Decompressed : %d", result.length);
        return outputString;

    }
}