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

de.dfki.lt.signalproc.util.BufferedDoubleDataSource Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2004-2006 DFKI GmbH.
 * All Rights Reserved.  Use is subject to license terms.
 * 
 * Permission is hereby granted, free of charge, to use and distribute
 * this software and its documentation without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of this work, and to
 * permit persons to whom this work is furnished to do so, subject to
 * the following conditions:
 * 
 * 1. The code must retain the above copyright notice, this list of
 *    conditions and the following disclaimer.
 * 2. Any modifications must be clearly marked as such.
 * 3. Original authors' names are not deleted.
 * 4. The authors' names are not used to endorse or promote products
 *    derived from this software without specific prior written
 *    permission.
 *
 * DFKI GMBH AND THE CONTRIBUTORS TO THIS WORK DISCLAIM ALL WARRANTIES WITH
 * REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DFKI GMBH NOR THE
 * CONTRIBUTORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
 * THIS SOFTWARE.
 */

package de.dfki.lt.signalproc.util;

import de.dfki.lt.signalproc.process.InlineDataProcessor;

// TODO: Auto-generated Javadoc
/**
 * The Class BufferedDoubleDataSource.
 *
 * @author Marc Schröder
 */
public class BufferedDoubleDataSource extends BaseDoubleDataSource {
    
    /** The Constant DEFAULT_BUFFERSIZE. */
    public static final int DEFAULT_BUFFERSIZE = 8192;
    
    /** The buf. */
    protected double[] buf;
    
    /** The read pos. */
    protected int readPos = 0;
    
    /** The write pos. */
    protected int writePos = 0;
    
    /** The data processor. */
    protected InlineDataProcessor dataProcessor = null;

    /**
     * Instantiates a new buffered double data source.
     *
     * @param inputData the input data
     */
    public BufferedDoubleDataSource(double[] inputData) {
        this(inputData, null);
    }

    /**
     * Instantiates a new buffered double data source.
     *
     * @param inputData the input data
     * @param dataProcessor the data processor
     */
    public BufferedDoubleDataSource(double[] inputData, InlineDataProcessor dataProcessor) {
        super();
        buf = new double[inputData.length];
        System.arraycopy(inputData, 0, buf, 0, buf.length);
        writePos = buf.length;
        dataLength = buf.length;
        this.dataProcessor = dataProcessor;
        if (dataProcessor != null)
            dataProcessor.applyInline(buf, 0, writePos);
    }

    /**
     * Instantiates a new buffered double data source.
     *
     * @param inputSource the input source
     */
    public BufferedDoubleDataSource(DoubleDataSource inputSource) {
        this(inputSource, null);
    }
    
    /**
     * Instantiates a new buffered double data source.
     *
     * @param inputSource the input source
     * @param dataProcessor the data processor
     */
    public BufferedDoubleDataSource(DoubleDataSource inputSource, InlineDataProcessor dataProcessor) {
        super(inputSource);
        buf = new double[DEFAULT_BUFFERSIZE];
        this.dataProcessor = dataProcessor;
    }

    /**
     * Whether or not any more data can be read from this data source.
     * @return true if another call to getData() will return data, false otherwise.
     */
    public boolean hasMoreData()
    {
        if (currentlyInBuffer() > 0 || inputSource != null && inputSource.hasMoreData())
            return true;
        return false;
    }

    
    /**
     * Amount of data currently in the buffer. If hasMoreData() returns true,
     * this number may increase.
     * @return the number of doubles that can currently be read without recourse
     * to an input source.
     */
    public int currentlyInBuffer()
    {
        assert writePos >= readPos;
        return writePos - readPos;
    }
    
    /**
     * The number of doubles that can currently be read from this 
     * double data source without blocking. This number can change over time.
     * @return the number of doubles that can currently be read without blocking 
     */
    public int available()
    {
        int available = currentlyInBuffer();
        if (inputSource != null) available += inputSource.available();
        return available;
    }
    
    /**
     * Buffer space left.
     *
     * @return the int
     */
    protected int bufferSpaceLeft()
    {
        return buf.length - currentlyInBuffer();
    }
    
    /**
     * Try to get length doubles from this DoubleDataSource, and copy them into target, starting from targetPos.
     * @param target the double array to write into
     * @param targetPos position in target where to start writing
     * @param length the amount of data requested
     * @return the amount of data actually delivered. If the returned value is less than length,
     * only that many data items have been copied into target; further calls will return 0 and not copy anything.
     */
    public int getData(double[] target, int targetPos, int length) {
        //if (target.length < targetPos+length)
        //    throw new IllegalArgumentException("Not enough space left in target array");
        if (currentlyInBuffer() < length) { // first need to try and read some more data
            readIntoBuffer(length-currentlyInBuffer());
        }
        int toDeliver = length;
        if (currentlyInBuffer() < length) toDeliver = currentlyInBuffer();
        System.arraycopy(buf, readPos, target, targetPos, toDeliver);
        readPos += toDeliver;
        return toDeliver;
    }


    /**
     * Attempt to get more data from the input source. If less than this can be read,
     * the possible amount will be read, but canReadMore() will return false afterwards.
     * @param minLength the amount of data to get from the input source
     * @return true if the requested amount could be read, false if none or less data could be read.
     */
    protected boolean readIntoBuffer(int minLength)
    {
        if (inputSource == null) {
            return false;
        }
        if (!inputSource.hasMoreData()) {
            return false;
        }
        if (bufferSpaceLeft()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy