Package org.shiftone.jrat.util.io.proxy

Source Code of org.shiftone.jrat.util.io.proxy.ProxyInputStream

package org.shiftone.jrat.util.io.proxy;

import org.shiftone.jrat.util.io.InputOutputException;
import org.shiftone.jrat.util.log.Logger;
import java.io.IOException;
import java.io.InputStream;

/**
* @author $Author: jeffdrost $
* @version $Revision: 1.5 $
*/
public abstract class ProxyInputStream extends InputStream {

  private static final Logger LOG = Logger.getLogger(ProxyInputStream.class);

  protected abstract InputStream getTarget() throws IOException;

  private InputStream getTargetRTE() {

    try {
      return getTarget();
    } catch (IOException e) {
      throw new InputOutputException("failed to get target InputStream", e);
    }
  }

  public int read() throws IOException {

    return getTarget().read();
  }

  public int read(byte[] b) throws IOException {

    return getTarget().read(b);
  }

  public int read(byte[] b, int off, int len) throws IOException {

    return getTarget().read(b, off, len);
  }

  public long skip(long n) throws IOException {

    return getTarget().skip(n);
  }

  public int available() throws IOException {

    return getTarget().available();
  }

  public void close() throws IOException {

    getTarget().close();
  }

  public void mark(int readlimit) {

    getTargetRTE().mark(readlimit);
  }

  public void reset() throws IOException {

    getTarget().reset();
  }

  public boolean markSupported() {

    return getTargetRTE().markSupported();
  }
}
TOP

Related Classes of org.shiftone.jrat.util.io.proxy.ProxyInputStream

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.