summaryrefslogtreecommitdiffstats
path: root/libjava/java/util/zip/ZipFile.java
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>1999-05-18 15:33:03 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>1999-05-18 15:33:03 +0000
commite3b4a43d3b394f8009bdae0960c9e3240f8cf736 (patch)
treec538fe74824c64ba74944a357c354f0c77e93be5 /libjava/java/util/zip/ZipFile.java
parentaddd693c880eb9310e8229fbbb4a37df4f550367 (diff)
downloadppe42-gcc-e3b4a43d3b394f8009bdae0960c9e3240f8cf736.tar.gz
ppe42-gcc-e3b4a43d3b394f8009bdae0960c9e3240f8cf736.zip
* 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/ZipFile.java')
-rw-r--r--libjava/java/util/zip/ZipFile.java34
1 files changed, 20 insertions, 14 deletions
diff --git a/libjava/java/util/zip/ZipFile.java b/libjava/java/util/zip/ZipFile.java
index 9085ec9c88b..bfb077d4585 100644
--- a/libjava/java/util/zip/ZipFile.java
+++ b/libjava/java/util/zip/ZipFile.java
@@ -1,3 +1,5 @@
+// ZipFile.java - Read contents of a ZIP file.
+
/* Copyright (C) 1999 Cygnus Solutions
This file is part of libgcj.
@@ -9,16 +11,13 @@ details. */
package java.util.zip;
import java.io.*;
-/** UNFINISHED, but can read non-comrepssed .zip archives. */
+/* Written using on-line Java Platform 1.2 API Specification
+ * and JCL book.
+ * Believed complete and correct.
+ */
public class ZipFile implements ZipConstants
{
-
- ZipEntry entries;
- int numEntries;
- RandomAccessFile file;
- String name;
-
public ZipFile (String fname) throws IOException
{
file = new RandomAccessFile(fname, "r");
@@ -35,7 +34,7 @@ public class ZipFile implements ZipConstants
{
long size = file.length ();
if (size < ZipConstants.END_CENTRAL_DIR_SIZE)
- throw new IOException ("zipfile too short");
+ throw new ZipException ("zipfile too short");
// We do not handle a "zipfile comment", which the appnote says can
// be at the end of a .zip file. We could handle this by seeking
// to the beginning and reading forwards.
@@ -44,7 +43,7 @@ public class ZipFile implements ZipConstants
|| file.read() != 'K'
|| file.read() != '\005'
|| file.read() != '\006')
- throw new IOException("not a valid zipfile");
+ throw new ZipException("not a valid zipfile");
file.skipBytes(6);
numEntries = readu2();
int dir_size = read4 (); // Read "size of the central directory".
@@ -103,7 +102,6 @@ public class ZipFile implements ZipConstants
public void close() throws IOException
{
- // FIXME - check this
file.close();
entries = null;
numEntries = 0;
@@ -121,14 +119,17 @@ public class ZipFile implements ZipConstants
public InputStream getInputStream(ZipEntry ze) throws IOException
{
- // FIXME - does not handle compression!
byte[] buffer = new byte[(int) ze.getSize()];
int data_offset = ZipConstants.LOCAL_FILE_HEADER_SIZE + name.length();
if (ze.extra != null)
data_offset += ze.extra.length;
file.seek(ze.relativeOffset + data_offset);
file.readFully(buffer);
- return new ByteArrayInputStream(buffer);
+
+ InputStream is = new ByteArrayInputStream (buffer);
+ if (ze.getMethod() == ZipEntry.DEFLATED)
+ is = new InflaterInputStream (is);
+ return is;
}
public String getName () { return name; }
@@ -138,7 +139,7 @@ public class ZipFile implements ZipConstants
int byte0 = file.read();
int byte1 = file.read();
if (byte0 < 0 || byte1 < 0)
- throw new EOFException(".zip archive ended prematurely");
+ throw new ZipException (".zip archive ended prematurely");
return ((byte1 & 0xFF) << 8) | (byte0 & 0xFF);
}
@@ -149,10 +150,15 @@ public class ZipFile implements ZipConstants
int byte2 = file.read();
int byte3 = file.read();
if (byte3 < 0)
- throw new EOFException(".zip archive ended prematurely");
+ throw new ZipException (".zip archive ended prematurely");
return ((byte3 & 0xFF) << 24) + ((byte2 & 0xFF) << 16)
+ ((byte1 & 0xFF) << 8) + (byte0 & 0xFF);
}
+
+ ZipEntry entries;
+ int numEntries;
+ RandomAccessFile file;
+ String name;
}
class ZipEnumeration implements java.util.Enumeration
OpenPOWER on IntegriCloud