View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.io.input;
18  
19  import static org.apache.commons.io.IOUtils.EOF;
20  
21  import java.io.EOFException;
22  import java.io.IOException;
23  import java.io.Reader;
24  
25  /**
26   * A functional, light weight {@link Reader} that emulates
27   * a reader of a specified size.
28   * <p>
29   * This implementation provides a light weight
30   * object for testing with an {@link Reader}
31   * where the contents don't matter.
32   * </p>
33   * <p>
34   * One use case would be for testing the handling of
35   * large {@link Reader} as it can emulate that
36   * scenario without the overhead of actually processing
37   * large numbers of characters - significantly speeding up
38   * test execution times.
39   * </p>
40   * <p>
41   * This implementation returns a space from the method that
42   * reads a character and leaves the array unchanged in the read
43   * methods that are passed a character array.
44   * If alternative data is required the {@code processChar()} and
45   * {@code processChars()} methods can be implemented to generate
46   * data, for example:
47   * </p>
48   *
49   * <pre>
50   *  public class TestReader extends NullReader {
51   *      public TestReader(int size) {
52   *          super(size);
53   *      }
54   *      protected char processChar() {
55   *          return ... // return required value here
56   *      }
57   *      protected void processChars(char[] chars, int offset, int length) {
58   *          for (int i = offset; i &lt; length; i++) {
59   *              chars[i] = ... // set array value here
60   *          }
61   *      }
62   *  }
63   * </pre>
64   *
65   * @since 1.3
66   */
67  public class NullReader extends Reader {
68  
69      /**
70       * The singleton instance.
71       *
72       * @since 2.12.0
73       */
74      public static final NullReader INSTANCE = new NullReader();
75  
76      private final long size;
77      private long position;
78      private long mark = -1;
79      private long readLimit;
80      private boolean eof;
81      private final boolean throwEofException;
82      private final boolean markSupported;
83  
84      /**
85       * Constructs a {@link Reader} that emulates a size 0 reader
86       * which supports marking and does not throw EOFException.
87       *
88       * @since 2.7
89       */
90      public NullReader() {
91         this(0, true, false);
92      }
93  
94      /**
95       * Constructs a {@link Reader} that emulates a specified size
96       * which supports marking and does not throw EOFException.
97       *
98       * @param size The size of the reader to emulate.
99       */
100     public NullReader(final long size) {
101        this(size, true, false);
102     }
103 
104     /**
105      * Constructs a {@link Reader} that emulates a specified
106      * size with option settings.
107      *
108      * @param size The size of the reader to emulate.
109      * @param markSupported Whether this instance will support
110      * the {@code mark()} functionality.
111      * @param throwEofException Whether this implementation
112      * will throw an {@link EOFException} or return -1 when the
113      * end of file is reached.
114      */
115     public NullReader(final long size, final boolean markSupported, final boolean throwEofException) {
116        this.size = size;
117        this.markSupported = markSupported;
118        this.throwEofException = throwEofException;
119     }
120 
121     /**
122      * Closes this Reader - resets the internal state to
123      * the initial values.
124      *
125      * @throws IOException If an error occurs.
126      */
127     @Override
128     public void close() throws IOException {
129         eof = false;
130         position = 0;
131         mark = -1;
132     }
133 
134     /**
135      * Handles End of File.
136      *
137      * @return {@code -1} if {@code throwEofException} is
138      * set to {@code false}
139      * @throws EOFException if {@code throwEofException} is set
140      * to {@code true}.
141      */
142     private int doEndOfFile() throws EOFException {
143         eof = true;
144         if (throwEofException) {
145             throw new EOFException();
146         }
147         return EOF;
148     }
149 
150     /**
151      * Returns the current position.
152      *
153      * @return the current position.
154      */
155     public long getPosition() {
156         return position;
157     }
158 
159     /**
160      * Returns the size this {@link Reader} emulates.
161      *
162      * @return The size of the reader to emulate.
163      */
164     public long getSize() {
165         return size;
166     }
167 
168     /**
169      * Marks the current position.
170      *
171      * @param readLimit The number of characters before this marked position
172      * is invalid.
173      * @throws UnsupportedOperationException if mark is not supported.
174      */
175     @Override
176     public synchronized void mark(final int readLimit) {
177         if (!markSupported) {
178             throw UnsupportedOperationExceptions.mark();
179         }
180         mark = position;
181         this.readLimit = readLimit;
182     }
183 
184     /**
185      * Indicates whether <i>mark</i> is supported.
186      *
187      * @return Whether <i>mark</i> is supported or not.
188      */
189     @Override
190     public boolean markSupported() {
191         return markSupported;
192     }
193 
194     /**
195      * Returns a character value for the  {@code read()} method.
196      * <p>
197      * This implementation returns zero.
198      * </p>
199      *
200      * @return This implementation always returns zero.
201      */
202     protected int processChar() {
203         // do nothing - overridable by subclass
204         return 0;
205     }
206 
207     /**
208      * Process the characters for the {@code read(char[], offset, length)}
209      * method.
210      * <p>
211      * This implementation leaves the character array unchanged.
212      * </p>
213      *
214      * @param chars The character array
215      * @param offset The offset to start at.
216      * @param length The number of characters.
217      */
218     protected void processChars(final char[] chars, final int offset, final int length) {
219         // do nothing - overridable by subclass
220     }
221 
222     /**
223      * Reads a character.
224      *
225      * @return Either The character value returned by {@code processChar()}
226      * or {@code -1} if the end of file has been reached and
227      * {@code throwEofException} is set to {@code false}.
228      * @throws EOFException if the end of file is reached and
229      * {@code throwEofException} is set to {@code true}.
230      * @throws IOException if trying to read past the end of file.
231      */
232     @Override
233     public int read() throws IOException {
234         if (eof) {
235             throw new IOException("Read after end of file");
236         }
237         if (position == size) {
238             return doEndOfFile();
239         }
240         position++;
241         return processChar();
242     }
243 
244     /**
245      * Reads some characters into the specified array.
246      *
247      * @param chars The character array to read into
248      * @return The number of characters read or {@code -1}
249      * if the end of file has been reached and
250      * {@code throwEofException} is set to {@code false}.
251      * @throws EOFException if the end of file is reached and
252      * {@code throwEofException} is set to {@code true}.
253      * @throws IOException if trying to read past the end of file.
254      */
255     @Override
256     public int read(final char[] chars) throws IOException {
257         return read(chars, 0, chars.length);
258     }
259 
260     /**
261      * Reads the specified number characters into an array.
262      *
263      * @param chars The character array to read into.
264      * @param offset The offset to start reading characters into.
265      * @param length The number of characters to read.
266      * @return The number of characters read or {@code -1}
267      * if the end of file has been reached and
268      * {@code throwEofException} is set to {@code false}.
269      * @throws EOFException if the end of file is reached and
270      * {@code throwEofException} is set to {@code true}.
271      * @throws IOException if trying to read past the end of file.
272      */
273     @Override
274     public int read(final char[] chars, final int offset, final int length) throws IOException {
275         if (eof) {
276             throw new IOException("Read after end of file");
277         }
278         if (position == size) {
279             return doEndOfFile();
280         }
281         position += length;
282         int returnLength = length;
283         if (position > size) {
284             returnLength = length - (int) (position - size);
285             position = size;
286         }
287         processChars(chars, offset, returnLength);
288         return returnLength;
289     }
290 
291     /**
292      * Resets the stream to the point when mark was last called.
293      *
294      * @throws UnsupportedOperationException if mark is not supported.
295      * @throws IOException If no position has been marked
296      * or the read limit has been exceeded since the last position was
297      * marked.
298      */
299     @Override
300     public synchronized void reset() throws IOException {
301         if (!markSupported) {
302             throw UnsupportedOperationExceptions.reset();
303         }
304         if (mark < 0) {
305             throw new IOException("No position has been marked");
306         }
307         if (position > mark + readLimit) {
308             throw new IOException("Marked position [" + mark +
309                     "] is no longer valid - passed the read limit [" +
310                     readLimit + "]");
311         }
312         position = mark;
313         eof = false;
314     }
315 
316     /**
317      * Skips a specified number of characters.
318      *
319      * @param numberOfChars The number of characters to skip.
320      * @return The number of characters skipped or {@code -1}
321      * if the end of file has been reached and
322      * {@code throwEofException} is set to {@code false}.
323      * @throws EOFException if the end of file is reached and
324      * {@code throwEofException} is set to {@code true}.
325      * @throws IOException if trying to read past the end of file.
326      */
327     @Override
328     public long skip(final long numberOfChars) throws IOException {
329         if (eof) {
330             throw new IOException("Skip after end of file");
331         }
332         if (position == size) {
333             return doEndOfFile();
334         }
335         position += numberOfChars;
336         long returnLength = numberOfChars;
337         if (position > size) {
338             returnLength = numberOfChars - (position - size);
339             position = size;
340         }
341         return returnLength;
342     }
343 
344 }