reformat benchmark source codes to meet the requirements of the annotation generation.
[IRC.git] / Robust / src / Benchmarks / SSJava / MP3DecoderInfer / InputStreamSource.java
1 /*\r
2  * 11/19/04             1.0 moved to LGPL.\r
3  * 12/12/99             Initial version.        mdm@techie.com\r
4  *-----------------------------------------------------------------------\r
5  *   This program is free software; you can redistribute it and/or modify\r
6  *   it under the terms of the GNU Library General Public License as published\r
7  *   by the Free Software Foundation; either version 2 of the License, or\r
8  *   (at your option) any later version.\r
9  *\r
10  *   This program is distributed in the hope that it will be useful,\r
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13  *   GNU Library General Public License for more details.\r
14  *\r
15  *   You should have received a copy of the GNU Library General Public\r
16  *   License along with this program; if not, write to the Free Software\r
17  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\r
18  *----------------------------------------------------------------------\r
19  */\r
20 \r
21 import java.io.IOException;\r
22 import java.io.InputStream;\r
23 \r
24 /**\r
25  * <i>Work In Progress.</i>\r
26  * \r
27  * An instance of <code>InputStreamSource</code> implements a\r
28  * <code>Source</code> that provides data from an <code>InputStream\r
29  * </code>. Seeking functionality is not supported.\r
30  * \r
31  * @author MDM\r
32  */\r
33 public class InputStreamSource implements Source {\r
34   private final InputStream in;\r
35 \r
36   public InputStreamSource(InputStream in) {\r
37     if (in == null)\r
38       throw new NullPointerException("in");\r
39 \r
40     this.in = in;\r
41   }\r
42 \r
43   public int read(byte[] b, int offs, int len) throws IOException {\r
44     int read = in.read(b, offs, len);\r
45     return read;\r
46   }\r
47 \r
48   public boolean willReadBlock() {\r
49     return true;\r
50     // boolean block = (in.available()==0);\r
51     // return block;\r
52   }\r
53 \r
54   public boolean isSeekable() {\r
55     return false;\r
56   }\r
57 \r
58   public long tell() {\r
59     return -1;\r
60   }\r
61 \r
62   public long seek(long to) {\r
63     return -1;\r
64   }\r
65 \r
66   public long length() {\r
67     return -1;\r
68   }\r
69 }\r