// // PackbitsCodec.java // /* OME Bio-Formats package for reading and converting biological file formats. Copyright (C) 2005-@year@ UW-Madison LOCI and Glencoe Software, Inc. 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 2 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, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package loci.formats.codec; import java.io.BufferedInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import loci.common.RandomAccessInputStream; import loci.formats.FormatException; import loci.formats.UnsupportedCompressionException; /** * This class implements packbits decompression. Compression is not yet * implemented. * * <dl><dt><b>Source code:</b></dt> * <dd><a href="http://trac.openmicroscopy.org.uk/ome/browser/bioformats.git/components/bio-formats/src/loci/formats/codec/PackbitsCodec.java">Trac</a>, * <a href="http://git.openmicroscopy.org/?p=bioformats.git;a=blob;f=components/bio-formats/src/loci/formats/codec/PackbitsCodec.java;hb=HEAD">Gitweb</a></dd></dl> * * @author Melissa Linkert melissa at glencoesoftware.com */ public class PackbitsCodec extends BaseCodec { /* @see Codec#compress(byte[], CodecOptions) */ public byte[] compress(byte[] data, CodecOptions options) throws FormatException { // TODO: Add compression support. throw new UnsupportedCompressionException( "Packbits Compression not currently supported"); } /** * The CodecOptions parameter should have the following fields set: * {@link CodecOptions#maxBytes maxBytes} * * @see Codec#decompress(RandomAccessInputStream, CodecOptions) */ public byte[] decompress(RandomAccessInputStream in, CodecOptions options) throws FormatException, IOException { if (options == null) options = CodecOptions.getDefaultOptions(); if (in == null) throw new IllegalArgumentException("No data to decompress."); long fp = in.getFilePointer(); // Adapted from the TIFF 6.0 specification, page 42. ByteArrayOutputStream output = new ByteArrayOutputStream(1024); int nread = 0; BufferedInputStream s = new BufferedInputStream(in, 262144); while (output.size() < options.maxBytes) { byte n = (byte) (s.read() & 0xff); nread++; if (n >= 0) { // 0 <= n <= 127 byte[] b = new byte[n + 1]; s.read(b); nread += n + 1; output.write(b); b = null; } else if (n != -128) { // -127 <= n <= -1 int len = -n + 1; byte inp = (byte) (s.read() & 0xff); nread++; for (int i=0; i<len; i++) output.write(inp); } } if (fp + nread < in.length()) in.seek(fp + nread); return output.toByteArray(); } }