All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.harvard.hul.ois.jhove.module.iff.Chunk Maven / Gradle / Ivy

/**********************************************************************
 * JHOVE - JSTOR/Harvard Object Validation Environment
 * Copyright 2004 by JSTOR and the President and Fellows of Harvard College
 **********************************************************************/

package edu.harvard.hul.ois.jhove.module.iff;

import edu.harvard.hul.ois.jhove.ModuleBase;
import edu.harvard.hul.ois.jhove.RepInfo;

import java.io.DataInputStream;
import java.io.IOException;

/**
 * Abstract superclass for IFF/AIFF chunks.
 *
 * @author Gary McGath
 */
public abstract class Chunk {

    protected ModuleBase _module;
    protected long chunkSize;
    protected long bytesLeft;
    protected DataInputStream _dstream;

    /**
     * Class constructor.
     *
     * @param module   The Module under which this was called
     * @param hdr      The header for this chunk
     * @param dstrm    The stream from which the data are being read
     */
    public Chunk(ModuleBase module, ChunkHeader hdr, DataInputStream dstrm)
    {
        _module = module;
        chunkSize = hdr.getSize();
        bytesLeft = chunkSize;
        _dstream = dstrm;
    }

    /**
     * Reads a chunk and puts appropriate information into the RepInfo object.
     *
     * @param info  RepInfo object to receive information
     * @return      false if the chunk is structurally
     *              invalid, otherwise true
     */
    public abstract boolean readChunk(RepInfo info) throws IOException;

    /**
     * Converts a byte buffer cleanly into an ASCII string.
     * This is used for fixed-allocation strings in Broadcast
     * WAVE chunks, and might have uses elsewhere.
     *
     * If a string is shorter than its fixed allocation, we're
     * guaranteed only that there is a null terminating the string,
     * and noise could follow it. So we can't use the byte buffer
     * constructor for a string.
     */
    protected String byteBufString(byte[] byteArray)
    {
        StringBuilder sb = new StringBuilder(byteArray.length);
        for (byte b : byteArray) {
            // Terminate if we see a null
            if (b == 0) {
                break;
            }
            sb.append((char) b);
        }
        return sb.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy