CharArrayReader.java (CharArrayReader): Throw IllegalArgumentException if constructor...
authorBryce McKinlay <bryce@albatross.co.nz>
Mon, 19 Feb 2001 05:37:28 +0000 (05:37 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Mon, 19 Feb 2001 05:37:28 +0000 (05:37 +0000)
* java/io/CharArrayReader.java (CharArrayReader): Throw
IllegalArgumentException if constructor arguments are illegal.
(ready): Return false if no more characters can be read.
* java/io/ByteArrayInputStream.java (ByteArrayInputStream): Likewise.

From-SVN: r39876

libjava/ChangeLog
libjava/java/io/ByteArrayInputStream.java
libjava/java/io/CharArrayReader.java

index 81cb27fe4a561488e59eefface59e50f5e08d404..275699403302bb68dce3d90b61446a913b917b80 100644 (file)
@@ -4,6 +4,11 @@
        property is not set. Don't call decode with null argument.
        * java/lang/Long.java (getLong): Likewise.
 
+       * java/io/CharArrayReader.java (CharArrayReader): Throw 
+       IllegalArgumentException if constructor arguments are illegal.
+       (ready): Return false if no more characters can be read.
+       * java/io/ByteArrayInputStream.java (ByteArrayInputStream): Likewise.
+
 2001-02-17  Mark Wielaard <mark@klomp.org>
 
        * java/util/TimerTask.java: New version from Classpath.
index 30ba8d7f9da58829ad65b4fca2a4775ac860d307..0d9339363c1c2afd99129952c218581615357645 100644 (file)
@@ -40,6 +40,9 @@ public class ByteArrayInputStream extends InputStream
 
   public ByteArrayInputStream(byte[] buffer, int offset, int length)
   {
+    if (offset < 0  || length < 0 || offset > buffer.length)
+      throw new IllegalArgumentException();
+
     buf = buffer;
 
     count = offset + length;
@@ -47,10 +50,6 @@ public class ByteArrayInputStream extends InputStream
       count = buf.length;
 
     pos = offset;
-    // TBD: What should we do if pos is neg. or > count?  E.g. throw exc. or:
-    // if (pos < 0 || pos > count)
-    //   pos = 0;
-
     mark = pos;
   }
 
index 0a77998445f8d11f6ecd380ba6c52745d1ca040f..d67c7c79f5c0b2227fff9cc7baf97eade2f171fa 100644 (file)
@@ -41,17 +41,16 @@ public class CharArrayReader extends Reader
   public CharArrayReader(char[] buffer, int offset, int length)
   {
     super();
+    if (offset < 0  || length < 0 || offset > buffer.length)
+      throw new IllegalArgumentException();
+    
     buf = buffer;
 
     count = offset + length;
     if (count > buf.length)
       count = buf.length;
-
+    
     pos = offset;
-    // TBD: What should we do if pos is neg. or > count?  E.g. throw exc. or:
-    // if (pos < 0 || pos > count)
-    //   pos = 0;
-
     markedPos = pos;
   }
 
@@ -116,12 +115,17 @@ public class CharArrayReader extends Reader
     }
   }
 
+  /** Return true if more characters are available to be read. 
+    *
+    * @specnote The JDK 1.3 API docs are wrong here. This method will
+    *           return false if there are no more characters available.
+    */
   public boolean ready() throws IOException
   {
     if (buf == null)
       throw new IOException("Stream closed");
 
-    return true;
+    return (pos < count);
   }
 
   public void reset() throws IOException