src.org.python.modules.bz2.bz2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython-standalone Show documentation
Show all versions of jython-standalone Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
package org.python.modules.bz2;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorInputStream;
import org.apache.commons.compress.compressors.bzip2.BZip2CompressorOutputStream;
import org.python.core.ClassDictInit;
import org.python.core.Py;
import org.python.core.PyObject;
import org.python.core.PyString;
/**
* Python bz2 module
*
*/
public class bz2 implements ClassDictInit {
public static final PyString __doc__ = new PyString("bz2 module");
public static void classDictInit(PyObject dict) {
dict.__setitem__("BZ2File", PyBZ2File.TYPE);
dict.__setitem__("BZ2Compressor", PyBZ2Compressor.TYPE);
dict.__setitem__("BZ2Decompressor", PyBZ2Decompressor.TYPE);
dict.__setitem__("classDictInit", null);
}
public static PyString compress(PyString data) {
return compress(data, 9);
}
public static PyString compress(PyString data, int compresslevel) {
PyString returnData = null;
try {
ByteArrayOutputStream compressedArray = new ByteArrayOutputStream();
BZip2CompressorOutputStream bzbuf = new BZip2CompressorOutputStream(
compressedArray);
bzbuf.write(data.toBytes());
bzbuf.finish();
bzbuf.close();
returnData = new PyString(compressedArray.toString("iso-8859-1"));
compressedArray.close();
} catch (IOException e) {
throw Py.IOError(e.getMessage());
}
return returnData;
}
public static PyString decompress(PyString data) {
PyString returnString = null;
if (data.toString().equals("")) {
return Py.EmptyString;
}
try {
ByteArrayInputStream inputArray = new ByteArrayInputStream(
data.toBytes());
BZip2CompressorInputStream bzbuf = new BZip2CompressorInputStream(
inputArray);
ByteArrayOutputStream outputArray = new ByteArrayOutputStream();
final byte[] buffer = new byte[8192];
int n = 0;
while ((n = bzbuf.read(buffer)) != -1) {
outputArray.write(buffer, 0, n);
}
returnString = new PyString(outputArray.toString("iso-8859-1"));
outputArray.close();
bzbuf.close();
inputArray.close();
} catch (IOException e) {
throw Py.ValueError(e.getMessage());
}
return returnString;
}
}