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

ucar.unidata.io.PositioningDataInputStream Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 1998-2018 University Corporation for Atmospheric Research/Unidata
 * See LICENSE for license information.
 */
package ucar.unidata.io;

import java.io.*;

/**
 * Similar to a DataInputStream that keeps track of position.
 * position must always increase, no going backwards.
 * cant handle byte order yet - assume big endian(?).
 * @author caron
 * @since Jan 3, 2008
 */
public class PositioningDataInputStream {
  private DataInputStream delegate;
  private long cpos = 0;

  public PositioningDataInputStream(InputStream is) {
    if (is instanceof DataInputStream)
      delegate = (DataInputStream) is;
    else
      delegate = new DataInputStream(is);
  }

  private void seek(long pos) throws IOException {
    if (pos < cpos) throw new IllegalArgumentException("Cannot go backwards; current="+cpos+" request="+pos);
    long want = pos-cpos;
    while (want > 0)
      want -= delegate.skip(want);
    cpos=pos;
    //System.out.println("now at "+pos);
  }

  public void read(long pos, byte dest[], int off, int len) throws IOException {
    seek(pos);
    delegate.readFully(dest, off, len);
    cpos += len;
  }

  public void readShort(long pos, short dest[], int off, int len) throws IOException {
    seek(pos);
    for (int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy