bug fixes + annotations
[IRC.git] / Robust / src / ClassLibrary / SSJava / FilterInputStream.java
1 /* FilterInputStream.java -- Base class for classes that filter input
2    Copyright (C) 1998, 1999, 2001, 2005  Free Software Foundation, Inc.
3
4 This file is part of GNU Classpath.
5
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10  
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING.  If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
20
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library.  Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
25
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module.  An independent module is a module which is not derived from
33 or based on this library.  If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so.  If you do not wish to do so, delete this
36 exception statement from your version. */
37
38
39 //package java.io;
40
41 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
42  * "The Java Language Specification", ISBN 0-201-63451-1
43  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
44  * Status:  Believed complete and correct.
45  */
46
47 /**
48   * This is the common superclass of all standard classes that filter 
49   * input.  It acts as a layer on top of an underlying <code>InputStream</code>
50   * and simply redirects calls made to it to the subordinate InputStream
51   * instead.  Subclasses of this class perform additional filtering
52   * functions in addition to simply redirecting the call.
53   * <p>
54   * This class is not abstract.  However, since it only redirects calls
55   * to a subordinate <code>InputStream</code> without adding any functionality
56   * on top of it, this class should not be used directly.  Instead, various
57   * subclasses of this class should be used.  This is enforced with a
58   * protected constructor.  Do not try to hack around it.
59   * <p>
60   * When creating a subclass of <code>FilterInputStream</code>, override the
61   * appropriate methods to implement the desired filtering.  However, note
62   * that the <code>read(byte[])</code> method does not need to be overridden
63   * as this class redirects calls to that method to 
64   * <code>read(byte[], int, int)</code> instead of to the subordinate
65   * <code>InputStream read(byte[])</code> method.
66   *
67   * @author Aaron M. Renn (arenn@urbanophile.com)
68   * @author Warren Levy (warrenl@cygnus.com)
69   */
70 @LATTICE("IN<T")
71 @METHODDEFAULT("OUT<IN,THISLOC=OUT,GLOBALLOC=OUT")
72 public class FilterInputStream extends InputStream
73 {
74   /**
75     * This is the subordinate <code>InputStream</code> to which method calls
76     * are redirected
77     */
78   @LOC("IN") protected InputStream in;
79
80   /**
81     * Create a <code>FilterInputStream</code> with the specified subordinate
82     * <code>InputStream</code>.
83     *
84     * @param in The subordinate <code>InputStream</code>
85     */
86     protected FilterInputStream(@LOC("IN") InputStream in)
87   {
88     this.in = in;
89   }
90
91   /**
92     * Calls the <code>in.mark(int)</code> method.
93     *
94     * @param readlimit The parameter passed to <code>in.mark(int)</code>
95     */
96     public void mark(@LOC("IN") int readlimit)
97   {
98     in.mark(readlimit);
99   }
100
101   /**
102     * Calls the <code>in.markSupported()</code> method.
103     *
104     * @return <code>true</code> if mark/reset is supported, <code>false</code>
105     *         otherwise
106     */
107   @RETURNLOC("OUT")
108   public boolean markSupported()
109   {
110     return in.markSupported();
111   }
112
113   /**
114     * Calls the <code>in.reset()</code> method.
115     *
116     * @exception IOException If an error occurs
117     */
118   public void reset() throws IOException
119   {
120     in.reset();
121   }
122
123   /**
124     * Calls the <code>in.available()</code> method.
125     *
126     * @return The value returned from <code>in.available()</code>
127     *
128     * @exception IOException If an error occurs
129     */
130   public int available() throws IOException
131   {
132     return in.available();
133   }
134
135   /**
136     * Calls the <code>in.skip(long)</code> method
137     *
138     * @param numBytes The requested number of bytes to skip. 
139     *
140     * @return The value returned from <code>in.skip(long)</code>
141     *
142     * @exception IOException If an error occurs
143     */
144
145     public long skip(long numBytes) throws IOException
146   {
147     return in.skip(numBytes);
148   }
149
150   /**
151     * Calls the <code>in.read()</code> method
152     *
153     * @return The value returned from <code>in.read()</code>
154     *
155     * @exception IOException If an error occurs
156     */
157
158   @RETURNLOC("OUT")
159   public int read() throws IOException
160   {
161     return in.read();
162   }
163
164   /**
165     * Calls the <code>read(byte[], int, int)</code> overloaded method.  
166     * Note that 
167     * this method does not redirect its call directly to a corresponding
168     * method in <code>in</code>.  This allows subclasses to override only the
169     * three argument version of <code>read</code>.
170     *
171     * @param buf The buffer to read bytes into
172     *
173     * @return The value retured from <code>in.read(byte[], int, int)</code>
174     *
175     * @exception IOException If an error occurs
176     */
177
178   public int read(byte[] buf) throws IOException
179   {
180     return read(buf, 0, buf.length);
181   }
182
183   /**
184     * Calls the <code>in.read(byte[], int, int)</code> method.
185     *
186     * @param buf The buffer to read bytes into
187     * @param offset The index into the buffer to start storing bytes
188     * @param len The maximum number of bytes to read.
189     *
190     * @return The value retured from <code>in.read(byte[], int, int)</code>
191     *
192     * @exception IOException If an error occurs
193     */
194
195   @RETURNLOC("OUT")
196   public int read(@LOC("OUT") byte[] buf, @LOC("IN") int offset, @LOC("IN") int len) throws IOException
197   {
198     return in.read(buf, offset, len);
199   }
200
201   /**
202     * This method closes the input stream by closing the input stream that
203     * this object is filtering.  Future attempts to access this stream may
204     * throw an exception.
205     * 
206     * @exception IOException If an error occurs
207     */
208
209   public void close() throws IOException
210   {
211     in.close();
212   }
213 }