FSF GCC merge 02/23/03
[official-gcc.git] / libjava / java / util / zip / InflaterInputStream.java
blobb04534977f1f8e12e0b07e6fb3fc19a3b495fccc
1 /* InflaterInputStream.java - Input stream filter for decompressing
2 Copyright (C) 1999, 2000, 2002, 2003 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 package java.util.zip;
40 import java.io.FilterInputStream;
41 import java.io.InputStream;
42 import java.io.IOException;
44 /**
45 * @author Tom Tromey
46 * @date May 17, 1999
49 /* Written using on-line Java Platform 1.2 API Specification
50 * and JCL book.
51 * Believed complete and correct.
54 public class InflaterInputStream extends FilterInputStream
56 protected void fill () throws IOException
58 len = in.read(buf, 0, buf.length);
59 if (len != -1)
60 inf.setInput(buf, 0, len);
63 public InflaterInputStream (InputStream in)
65 this (in, new Inflater (), 512);
68 public InflaterInputStream (InputStream in, Inflater infl)
70 this (in, infl, 512);
73 public InflaterInputStream (InputStream in, Inflater infl, int bufsize)
75 super (in);
76 this.inf = infl;
77 this.buf = new byte[bufsize];
80 public int read () throws IOException
82 byte[] buf = new byte[1];
83 int r = read (buf, 0, 1);
84 if (r != -1)
85 r = buf[0] & 0xff;
86 return r;
89 public int read (byte[] buf, int off, int len) throws IOException
91 if (inf == null)
92 throw new IOException ("stream closed");
93 if (len == 0)
94 return 0;
95 if (inf.finished())
96 return -1;
98 int count = 0;
99 while (count == 0)
101 if (inf.needsInput())
102 fill ();
105 count = inf.inflate(buf, off, len);
106 if (count == 0)
108 if (this.len == -1)
110 // Couldn't get any more data to feed to the Inflater
111 return -1;
113 if (inf.needsDictionary())
114 throw new ZipException ("Inflater needs Dictionary");
117 catch (DataFormatException dfe)
119 throw new ZipException (dfe.getMessage());
122 return count;
125 public void close () throws IOException
127 inf = null;
128 super.close ();
131 public int available () throws IOException
133 // According to the JDK 1.2 docs, this should only ever return 0
134 // or 1 and should not be relied upon by Java programs.
135 if (inf == null)
136 throw new IOException ("stream closed");
137 return inf.finished () ? 0 : 1;
140 public long skip (long n) throws IOException
142 if (inf == null)
143 throw new IOException ("stream closed");
145 if (n == 0)
146 return 0;
148 int min = (int) Math.min(n, 1024);
149 byte[] buf = new byte[min];
151 long s = 0;
152 while (n > 0)
154 int r = read (buf, 0, min);
155 if (r == -1)
156 break;
157 n -= r;
158 s += r;
159 min = (int) Math.min(n, 1024);
162 return s;
165 // Buffer for delivering uncompressed data to inflater.
166 protected byte[] buf;
168 // Inflater used to decompress data.
169 protected Inflater inf;
171 // Number of read bytes in buf.
172 protected int len;