diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-18 15:33:03 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-18 15:33:03 +0000 |
commit | e3b4a43d3b394f8009bdae0960c9e3240f8cf736 (patch) | |
tree | c538fe74824c64ba74944a357c354f0c77e93be5 /libjava/java/util/zip/ZipEntry.java | |
parent | addd693c880eb9310e8229fbbb4a37df4f550367 (diff) | |
download | gcc-e3b4a43d3b394f8009bdae0960c9e3240f8cf736.tar.gz |
* java/util/zip/ZipOutputStream.java (level): Initial value is
Deflater.DEFAULT_COMPRESSION.
(close): New method.
(closeEntry): Likewise.
(finish): Likewise.
(put_version): Likewise.
(write_entry): Likewise.
(put2, put4): Now return `int'.
(comment): Default to empty string.
(bytes_written): New instance variable.
(chain): Likewise.
* java/util/zip/ZipEntry.java (setComment): Limit length of
comment string.
(setCrc): Check CRC validity.
(setExtra): Check argument validity.
(setMethod): Likewise.
(setSize): Likewise.
(ZipEntry): Likewise.
* include/javaprims.h: Updated namespace declarations.
* Makefile.in: Rebuilt.
* Makefile.am (ordinary_java_source_files): Mention new files.
(nat_source_files): Likewise.
* java/util/zip/ZipFile.java (readu2): Throw ZipException, not
EOFException.
(read4): Likewise.
(getInputStream): Handle compressed entries.
* java/util/zip/GZIPOutputStream.java: New file.
* java/util/zip/GZIPInputStream.java: New file.
* java/util/zip/DataFormatException.java: New file.
* java/util/zip/CheckedInputStream.java: New file.
* java/util/zip/CheckedOutputStream.java: New file.
* java/util/zip/InflaterInputStream.java: Implemented.
* java/util/zip/natInflater.cc: New file.
* java/util/zip/Deflater.java: Implemented.
* java/util/zip/natDeflater.cc: New file.
* java/util/zip/DeflaterOutputStream.java: Implemented.
* java/util/zip/ZipInputStream.java (closeZipEntry): Throw
ZipException, not IOException.
* java/util/zip/ZipFile.java (readDirectory): Throw ZipException,
not IOException.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26996 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/zip/ZipEntry.java')
-rw-r--r-- | libjava/java/util/zip/ZipEntry.java | 44 |
1 files changed, 38 insertions, 6 deletions
diff --git a/libjava/java/util/zip/ZipEntry.java b/libjava/java/util/zip/ZipEntry.java index 9eb34bab4db..7035ab50074 100644 --- a/libjava/java/util/zip/ZipEntry.java +++ b/libjava/java/util/zip/ZipEntry.java @@ -39,6 +39,10 @@ public class ZipEntry public ZipEntry (String name) { + if (name == null) + throw new NullPointerException (); + if (name.length() > 65535) + throw new IllegalArgumentException (); this.name = name; } @@ -69,17 +73,45 @@ public class ZipEntry return false; } - public void setComment (String comment) { this.comment = comment; } + public void setComment (String comment) + { + if (comment != null && comment.length() > 65535) + throw new IllegalArgumentException (); + this.comment = comment; + } - public void setCrc (long crc) { this.crc = crc; } + public void setCrc (long crc) + { + if (crc < 0 || crc > 0xffffffff) + throw new IllegalArgumentException (); + this.crc = crc; + } - public void setExtra (byte[] extra) { this.extra = extra; } + public void setExtra (byte[] extra) + { + if (extra != null && extra.length > 65535) + throw new IllegalArgumentException (); + this.extra = extra; + } - public void setMethod(int method) { this.method = method; } + public void setMethod (int method) + { + if (method != DEFLATED && method != STORED) + throw new IllegalArgumentException (); + this.method = method; + } - public void setSize (long size) { this.size = size; } + public void setSize (long size) + { + if (size < 0 || size > 0xffffffff) + throw new IllegalArgumentException (); + this.size = size; + } - public void setTime (long time) { this.time = time; } + public void setTime (long time) + { + this.time = time; + } private final static short[] daysToMonthStart = { //Jan Feb Mar Apr May Jun Jul |