com.sun.javafx.iio.png.PNGIDATChunkInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openjfx-78-backport Show documentation
Show all versions of openjfx-78-backport Show documentation
This is a backport of OpenJFX 8 to run on Java 7.
The newest version!
/*
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.sun.javafx.iio.png;
import com.sun.javafx.iio.common.ImageTools;
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
/**
* A stream which exposes only the IDAT chunk data content of a PNG stream.
*
* Once all IDAT chunks have been read, the read()
methods will
* return -1
and isFoundAllIDATChunks()
* true
. Once isFoundAllIDATChunks()
returns
* true
, the length and type of the first chunk after the last
* IDAT chunk may be found by calling getNextChunkLength()
and
* getNextChunkType()
, respectively. The source stream will at
* this point be positioned at the first byte of the data field after the last
* IDAT chunk (which could be the first byte of the CRC code if the length is
* zero).
*/
public class PNGIDATChunkInputStream extends InputStream {
static final int IDAT_TYPE = 0x49444154;
private InputStream source;
private int numBytesAvailable = 0;
private boolean foundAllIDATChunks = false;
private int nextChunkLength = 0;
private int nextChunkType = 0;
/**
* Create the stream.
*
* @param input stream positioned at the beginning of the data field of the
* first IDAT chunk in the PNG stream.
* @param firstIDATChunkLength the length of the data field of the first
* IDAT chunk.
*/
PNGIDATChunkInputStream(InputStream input, int firstIDATChunkLength) {
this.source = input;
this.numBytesAvailable = firstIDATChunkLength;
}
private void nextChunk() throws IOException {
if (!foundAllIDATChunks) {
if (4 != source.skip(4)) { // CRC
throw new EOFException();
}
int chunkLength = (source.read() << 24) | (source.read() << 16) |
(source.read() << 8) | source.read();
int chunkType = (source.read() << 24) | (source.read() << 16) |
(source.read() << 8) | source.read();
if (chunkType == IDAT_TYPE) {
numBytesAvailable += chunkLength;
} else {
foundAllIDATChunks = true;
nextChunkLength = chunkLength;
nextChunkType = chunkType;
}
}
}
boolean isFoundAllIDATChunks() {
return foundAllIDATChunks;
}
int getNextChunkLength() {
return nextChunkLength;
}
int getNextChunkType() {
return nextChunkType;
}
@Override
public int read() throws IOException {
if (numBytesAvailable == 0) {
nextChunk();
}
if (numBytesAvailable == 0) {
return -1;
} else {
--numBytesAvailable;
return source.read();
}
}
@Override
public int read(byte[] b, int off, int len) throws IOException {
if (numBytesAvailable == 0) {
nextChunk();
if (numBytesAvailable == 0) {
return -1;
}
}
int totalRead = 0;
while (numBytesAvailable > 0 && len > 0) {
int numToRead = len < numBytesAvailable ? len : numBytesAvailable;
int numRead = source.read(b, off, numToRead);
if (numRead == -1) {
throw new EOFException();
}
numBytesAvailable -= numRead;
off += numRead;
len -= numRead;
totalRead += numRead;
if (numBytesAvailable == 0 && len > 0) {
nextChunk();
}
}
return totalRead;
}
}