1999-05-18 23:33:03 +08:00
|
|
|
// ZipFile.java - Read contents of a ZIP file.
|
|
|
|
|
2000-04-12 04:02:48 +08:00
|
|
|
/* Copyright (C) 1999, 2000 Free Software Foundation
|
1999-04-07 22:42:40 +08:00
|
|
|
|
|
|
|
This file is part of libgcj.
|
|
|
|
|
|
|
|
This software is copyrighted work licensed under the terms of the
|
|
|
|
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
package java.util.zip;
|
|
|
|
import java.io.*;
|
|
|
|
|
1999-05-18 23:33:03 +08:00
|
|
|
/* Written using on-line Java Platform 1.2 API Specification
|
|
|
|
* and JCL book.
|
|
|
|
* Believed complete and correct.
|
|
|
|
*/
|
1999-04-07 22:42:40 +08:00
|
|
|
|
|
|
|
public class ZipFile implements ZipConstants
|
|
|
|
{
|
2000-08-28 06:26:27 +08:00
|
|
|
public static final int OPEN_READ = 1;
|
|
|
|
public static final int OPEN_DELETE = 4;
|
|
|
|
|
1999-04-07 22:42:40 +08:00
|
|
|
public ZipFile (String fname) throws IOException
|
|
|
|
{
|
2000-08-28 06:26:27 +08:00
|
|
|
this(new File(fname));
|
1999-04-07 22:42:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public ZipFile (File f) throws IOException
|
|
|
|
{
|
2000-08-28 06:26:27 +08:00
|
|
|
this(f, OPEN_READ);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ZipFile (File f, int mode) throws IOException
|
|
|
|
{
|
|
|
|
if (mode != OPEN_READ && mode != (OPEN_READ | OPEN_DELETE))
|
|
|
|
throw new IllegalArgumentException
|
|
|
|
("mode can only be OPEN_READ or OPEN_READ | OPEN_DELETE");
|
|
|
|
|
|
|
|
if ((mode & OPEN_DELETE) != 0)
|
|
|
|
{
|
|
|
|
delete_on_close = f;
|
|
|
|
// f.deleteOnExit(); XXX - Not yet implemented in libgcj
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete_on_close = null;
|
|
|
|
}
|
|
|
|
|
1999-05-06 08:15:47 +08:00
|
|
|
file = new RandomAccessFile(f, "r");
|
|
|
|
name = f.getName();
|
1999-08-18 22:16:42 +08:00
|
|
|
readDirectory ();
|
1999-05-06 08:15:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void readDirectory () throws IOException
|
|
|
|
{
|
|
|
|
long size = file.length ();
|
|
|
|
if (size < ZipConstants.END_CENTRAL_DIR_SIZE)
|
1999-05-18 23:33:03 +08:00
|
|
|
throw new ZipException ("zipfile too short");
|
1999-05-06 08:15:47 +08:00
|
|
|
// 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.
|
|
|
|
file.seek(size - ZipConstants.END_CENTRAL_DIR_SIZE);
|
|
|
|
if (file.read() != 'P'
|
|
|
|
|| file.read() != 'K'
|
|
|
|
|| file.read() != '\005'
|
|
|
|
|| file.read() != '\006')
|
1999-05-18 23:33:03 +08:00
|
|
|
throw new ZipException("not a valid zipfile");
|
1999-05-06 08:15:47 +08:00
|
|
|
file.skipBytes(6);
|
|
|
|
numEntries = readu2();
|
|
|
|
int dir_size = read4 (); // Read "size of the central directory".
|
|
|
|
file.seek(size - (dir_size + ZipConstants.END_CENTRAL_DIR_SIZE));
|
|
|
|
|
|
|
|
ZipEntry last = null;
|
|
|
|
for (int i = 0; i < numEntries; i++)
|
|
|
|
{
|
|
|
|
file.skipBytes(10);
|
|
|
|
int method = readu2();
|
|
|
|
int modtime = readu2();
|
|
|
|
int moddate = readu2();
|
|
|
|
int crc = read4();
|
|
|
|
int compressedSize = read4();
|
|
|
|
int uncompressedSize = read4();
|
|
|
|
int filenameLength = readu2();
|
|
|
|
int extraLength = readu2();
|
|
|
|
int commentLength = readu2();
|
|
|
|
int diskNumberStart = readu2();
|
|
|
|
int intAttributes = readu2();
|
|
|
|
int extAttributes = read4();
|
|
|
|
int relativeOffset = read4();
|
|
|
|
byte[] bname = new byte[filenameLength];
|
|
|
|
file.readFully(bname);
|
|
|
|
ZipEntry entry = new ZipEntry(new String(bname, "8859_1"));
|
|
|
|
if (extraLength > 0)
|
|
|
|
{
|
|
|
|
byte[] bextra = new byte[extraLength];
|
|
|
|
file.readFully(bextra);
|
|
|
|
entry.extra = bextra;
|
|
|
|
}
|
|
|
|
if (commentLength > 0)
|
|
|
|
{
|
|
|
|
byte[] bcomment = new byte[commentLength];
|
|
|
|
file.readFully(bcomment);
|
|
|
|
entry.comment = new String(bcomment, "8859_1");
|
|
|
|
}
|
|
|
|
entry.compressedSize = compressedSize;
|
|
|
|
entry.size = uncompressedSize;
|
|
|
|
entry.crc = (long) crc & 0xffffffffL;
|
|
|
|
entry.method = method;
|
|
|
|
entry.relativeOffset = relativeOffset;
|
|
|
|
entry.time = ZipEntry.timeFromDOS(moddate, modtime);
|
|
|
|
if (last == null)
|
|
|
|
entries = entry;
|
|
|
|
else
|
|
|
|
last.next = entry;
|
|
|
|
last = entry;
|
|
|
|
}
|
1999-04-07 22:42:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public java.util.Enumeration entries()
|
|
|
|
{
|
|
|
|
return new ZipEnumeration(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void close() throws IOException
|
|
|
|
{
|
1999-05-06 08:15:47 +08:00
|
|
|
file.close();
|
|
|
|
entries = null;
|
|
|
|
numEntries = 0;
|
2000-08-28 06:26:27 +08:00
|
|
|
if (delete_on_close != null)
|
|
|
|
delete_on_close.delete();
|
1999-04-07 22:42:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public ZipEntry getEntry(String name)
|
|
|
|
{
|
|
|
|
for (ZipEntry entry = entries; entry != null; entry = entry.next)
|
|
|
|
{
|
|
|
|
if (name.equals(entry.getName()))
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public InputStream getInputStream(ZipEntry ze) throws IOException
|
|
|
|
{
|
2000-08-21 01:49:12 +08:00
|
|
|
byte[] buffer = new byte[(int) ze.getCompressedSize()];
|
1999-11-07 16:30:31 +08:00
|
|
|
|
|
|
|
/* Read the size of the extra field, and skip to the start of the
|
|
|
|
data. */
|
|
|
|
file.seek (ze.relativeOffset + ZipConstants.LOCAL_FILE_HEADER_SIZE - 2);
|
|
|
|
int extraFieldLength = readu2();
|
|
|
|
file.skipBytes (ze.getName().length() + extraFieldLength);
|
|
|
|
|
1999-05-06 08:15:47 +08:00
|
|
|
file.readFully(buffer);
|
1999-05-18 23:33:03 +08:00
|
|
|
|
|
|
|
InputStream is = new ByteArrayInputStream (buffer);
|
|
|
|
if (ze.getMethod() == ZipEntry.DEFLATED)
|
2000-05-21 07:30:46 +08:00
|
|
|
// Data in zipfile entries does not have a zlib header, so construct
|
|
|
|
// an Inflater with the `nowrapper' option.
|
|
|
|
is = new InflaterInputStream (is, new Inflater (true), 512);
|
1999-05-18 23:33:03 +08:00
|
|
|
return is;
|
1999-04-07 22:42:40 +08:00
|
|
|
}
|
|
|
|
|
BitMaskExtent.java, [...]: Removed Latin-1 copyright symbols.
* gnu/gcj/awt/BitMaskExtent.java, gnu/gcj/awt/Buffers.java,
gnu/gcj/awt/ComponentDataBlitOp.java,
gnu/gcj/awt/GLightweightPeer.java, java/awt/Graphics2D.java,
java/awt/RenderingHints.java, java/awt/color/ColorSpace.java,
java/awt/color/ICC_ColorSpace.java,
java/awt/color/ICC_Profile.java,
java/awt/image/BufferedImage.java, java/awt/image/ColorModel.java,
java/awt/image/ComponentColorModel.java,
java/awt/image/ComponentSampleModel.java,
java/awt/image/DataBuffer.java,
java/awt/image/DataBufferByte.java,
java/awt/image/DataBufferInt.java,
java/awt/image/DataBufferUShort.java,
java/awt/image/DirectColorModel.java,
java/awt/image/IndexColorModel.java,
java/awt/image/PackedColorModel.java, java/awt/image/Raster.java,
java/awt/image/RasterOp.java, java/awt/image/SampleModel.java,
java/awt/image/SinglePixelPackedSampleModel.java,
java/awt/image/WritableRaster.java, java/util/zip/ZipFile.java:
Removed Latin-1 copyright symbols.
* java/util/zip/ZipFile.java: Indentation fixes.
From-SVN: r36027
2000-08-29 11:23:57 +08:00
|
|
|
public String getName ()
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
1999-05-06 08:15:47 +08:00
|
|
|
|
BitMaskExtent.java, [...]: Removed Latin-1 copyright symbols.
* gnu/gcj/awt/BitMaskExtent.java, gnu/gcj/awt/Buffers.java,
gnu/gcj/awt/ComponentDataBlitOp.java,
gnu/gcj/awt/GLightweightPeer.java, java/awt/Graphics2D.java,
java/awt/RenderingHints.java, java/awt/color/ColorSpace.java,
java/awt/color/ICC_ColorSpace.java,
java/awt/color/ICC_Profile.java,
java/awt/image/BufferedImage.java, java/awt/image/ColorModel.java,
java/awt/image/ComponentColorModel.java,
java/awt/image/ComponentSampleModel.java,
java/awt/image/DataBuffer.java,
java/awt/image/DataBufferByte.java,
java/awt/image/DataBufferInt.java,
java/awt/image/DataBufferUShort.java,
java/awt/image/DirectColorModel.java,
java/awt/image/IndexColorModel.java,
java/awt/image/PackedColorModel.java, java/awt/image/Raster.java,
java/awt/image/RasterOp.java, java/awt/image/SampleModel.java,
java/awt/image/SinglePixelPackedSampleModel.java,
java/awt/image/WritableRaster.java, java/util/zip/ZipFile.java:
Removed Latin-1 copyright symbols.
* java/util/zip/ZipFile.java: Indentation fixes.
From-SVN: r36027
2000-08-29 11:23:57 +08:00
|
|
|
public int size ()
|
|
|
|
{
|
2000-08-21 05:51:19 +08:00
|
|
|
if (entries == null)
|
|
|
|
throw new IllegalStateException("ZipFile already closed");
|
|
|
|
else
|
|
|
|
return numEntries;
|
|
|
|
}
|
|
|
|
|
BitMaskExtent.java, [...]: Removed Latin-1 copyright symbols.
* gnu/gcj/awt/BitMaskExtent.java, gnu/gcj/awt/Buffers.java,
gnu/gcj/awt/ComponentDataBlitOp.java,
gnu/gcj/awt/GLightweightPeer.java, java/awt/Graphics2D.java,
java/awt/RenderingHints.java, java/awt/color/ColorSpace.java,
java/awt/color/ICC_ColorSpace.java,
java/awt/color/ICC_Profile.java,
java/awt/image/BufferedImage.java, java/awt/image/ColorModel.java,
java/awt/image/ComponentColorModel.java,
java/awt/image/ComponentSampleModel.java,
java/awt/image/DataBuffer.java,
java/awt/image/DataBufferByte.java,
java/awt/image/DataBufferInt.java,
java/awt/image/DataBufferUShort.java,
java/awt/image/DirectColorModel.java,
java/awt/image/IndexColorModel.java,
java/awt/image/PackedColorModel.java, java/awt/image/Raster.java,
java/awt/image/RasterOp.java, java/awt/image/SampleModel.java,
java/awt/image/SinglePixelPackedSampleModel.java,
java/awt/image/WritableRaster.java, java/util/zip/ZipFile.java:
Removed Latin-1 copyright symbols.
* java/util/zip/ZipFile.java: Indentation fixes.
From-SVN: r36027
2000-08-29 11:23:57 +08:00
|
|
|
protected void finalize () throws IOException
|
|
|
|
{
|
2000-08-28 06:26:27 +08:00
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
1999-05-06 08:15:47 +08:00
|
|
|
private int readu2 () throws IOException
|
|
|
|
{
|
|
|
|
int byte0 = file.read();
|
|
|
|
int byte1 = file.read();
|
|
|
|
if (byte0 < 0 || byte1 < 0)
|
1999-05-18 23:33:03 +08:00
|
|
|
throw new ZipException (".zip archive ended prematurely");
|
1999-05-06 08:15:47 +08:00
|
|
|
return ((byte1 & 0xFF) << 8) | (byte0 & 0xFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
private int read4 () throws IOException
|
|
|
|
{
|
|
|
|
int byte0 = file.read();
|
|
|
|
int byte1 = file.read();
|
|
|
|
int byte2 = file.read();
|
|
|
|
int byte3 = file.read();
|
|
|
|
if (byte3 < 0)
|
1999-05-18 23:33:03 +08:00
|
|
|
throw new ZipException (".zip archive ended prematurely");
|
1999-05-06 08:15:47 +08:00
|
|
|
return ((byte3 & 0xFF) << 24) + ((byte2 & 0xFF) << 16)
|
|
|
|
+ ((byte1 & 0xFF) << 8) + (byte0 & 0xFF);
|
|
|
|
}
|
1999-05-18 23:33:03 +08:00
|
|
|
|
|
|
|
ZipEntry entries;
|
|
|
|
int numEntries;
|
|
|
|
RandomAccessFile file;
|
|
|
|
String name;
|
2000-08-28 06:26:27 +08:00
|
|
|
/** File to delete on close or null. */
|
|
|
|
File delete_on_close;
|
|
|
|
|
1999-04-07 22:42:40 +08:00
|
|
|
}
|
|
|
|
|
2000-04-12 04:02:48 +08:00
|
|
|
final class ZipEnumeration implements java.util.Enumeration
|
1999-04-07 22:42:40 +08:00
|
|
|
{
|
|
|
|
ZipEntry entry;
|
|
|
|
|
|
|
|
ZipEnumeration (ZipFile zfile)
|
|
|
|
{
|
|
|
|
entry = zfile.entries;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasMoreElements ()
|
|
|
|
{
|
|
|
|
return entry != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object nextElement ()
|
|
|
|
{
|
|
|
|
ZipEntry cur = entry;
|
|
|
|
if (cur == null)
|
|
|
|
throw new java.util.NoSuchElementException();
|
|
|
|
entry = cur.next;
|
|
|
|
return cur;
|
|
|
|
}
|
|
|
|
}
|