ForwardSeekableStream.java
上传用户:btjssb159
上传日期:2018-01-04
资源大小:241k
文件大小:5k
源码类别:

DNA

开发平台:

Java

  1. /*
  2.  * Copyright (c) 2001 Sun Microsystems, Inc. All Rights Reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without 
  5.  * modification, are permitted provided that the following conditions are met:
  6.  * 
  7.  * -Redistributions of source code must retain the above copyright notice, this 
  8.  * list of conditions and the following disclaimer.
  9.  *
  10.  * -Redistribution in binary form must reproduct the above copyright notice,
  11.  * this list of conditions and the following disclaimer in the documentation
  12.  * and/or other materials provided with the distribution.
  13.  * 
  14.  * Neither the name of Sun Microsystems, Inc. or the names of contributors may
  15.  * be used to endorse or promote products derived from this software without
  16.  * specific prior written permission.
  17.  * 
  18.  * This software is provided "AS IS," without a warranty of any kind. ALL
  19.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
  20.  * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
  21.  * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
  22.  * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
  23.  * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
  24.  * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
  25.  * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
  26.  * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
  27.  * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
  28.  * POSSIBILITY OF SUCH DAMAGES.
  29.  * 
  30.  * You acknowledge that Software is not designed,licensed or intended for use in 
  31.  * the design, construction, operation or maintenance of any nuclear facility.
  32.  */
  33. import java.io.InputStream;
  34. import java.io.IOException;
  35. /**
  36.  * A subclass of <code>SeekableStream</code> that may be used
  37.  * to wrap a regular <code>InputStream</code> efficiently.
  38.  * Seeking backwards is not supported.
  39.  *
  40.  * <p><b> This class is not a committed part of the JAI API.  It may
  41.  * be removed or changed in future releases of JAI.</b>
  42.  */
  43. public class ForwardSeekableStream extends SeekableStream {
  44.     /** The source <code>InputStream</code>. */
  45.     private InputStream src;
  46.     /** The current position. */
  47.     long pointer = 0L;
  48.     /** The marked position. */
  49.     long markPos = -1L;
  50.     /** 
  51.      * Constructs a <code>InputStreamForwardSeekableStream</code> from a
  52.      * regular <code>InputStream</code>.
  53.      */
  54.     public ForwardSeekableStream(InputStream src) {
  55.         this.src = src;
  56.     }
  57.     /** Forwards the request to the real <code>InputStream</code>. */
  58.     public final int read() throws IOException {
  59.         int result = src.read();
  60.         if (result != -1) {
  61.             ++pointer;
  62.         }
  63.         return result;
  64.     }
  65.     /** Forwards the request to the real <code>InputStream</code>. */
  66.     public final int read(byte[] b, int off, int len) throws IOException {
  67.         int result = src.read(b, off, len);
  68.         if (result != -1) {
  69.             pointer += result;
  70.         }
  71.         return result;
  72.     }
  73.     /** Forwards the request to the real <code>InputStream</code>. */
  74.     public final long skip(long n) throws IOException {
  75.         long skipped = src.skip(n);
  76.         pointer += skipped;
  77.         return skipped;
  78.     }
  79.     /** Forwards the request to the real <code>InputStream</code>. */
  80.     public final int available() throws IOException {
  81.         return src.available();
  82.     }
  83.     /** Forwards the request to the real <code>InputStream</code>. */
  84.     public final void close() throws IOException {
  85.         src.close();
  86.     }
  87.     /** Forwards the request to the real <code>InputStream</code>. */
  88.     public synchronized final void mark(int readLimit) {
  89.         markPos = pointer;
  90.         src.mark(readLimit);
  91.     }
  92.     /** Forwards the request to the real <code>InputStream</code>. */
  93.     public synchronized final void reset() throws IOException {
  94.         if (markPos != -1) {
  95.             pointer = markPos;
  96.         }
  97.         src.reset();
  98.     }
  99.     /** Forwards the request to the real <code>InputStream</code>. */
  100.     public boolean markSupported() {
  101.         return src.markSupported();
  102.     }
  103.     /** Returns <code>false</code> since seking backwards is not supported. */
  104.     public final boolean canSeekBackwards() {
  105.         return false;
  106.     }
  107.     /** Returns the current position in the stream (bytes read). */
  108.     public final long getFilePointer() {
  109.         return (long)pointer;
  110.     }
  111.     /**
  112.      * Seeks forward to the given position in the stream.
  113.      * If <code>pos</code> is smaller than the current position
  114.      * as returned by <code>getFilePointer()</code>, nothing
  115.      * happens.
  116.      */
  117.     public final void seek(long pos) throws IOException {
  118.         while (pos - pointer > 0) {
  119.             pointer += src.skip(pos - pointer);
  120.         }
  121.     }
  122. }