src/java.base/share/classes/java/util/zip/InflaterInputStream.java
author jboes
Thu, 21 Nov 2019 09:10:21 +0000
changeset 59201 b24f4caa1411
parent 58288 48e480e56aad
permissions -rw-r--r--
8234335: Remove line break in class declaration in java.base Summary: Remove line break in class declarations where applicable Reviewed-by: rriggs, lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
     2
 * Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util.zip;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.FilterInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.EOFException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * This class implements a stream filter for uncompressing data in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * "deflate" compression format. It is also used as the basis for other
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * decompression filters, such as GZIPInputStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * @see         Inflater
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * @author      David Connelly
45434
4582657c7260 8181082: class-level since tag issues in java.base & java.datatransfer module
mli
parents: 39642
diff changeset
    40
 * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 */
59201
b24f4caa1411 8234335: Remove line break in class declaration in java.base
jboes
parents: 58288
diff changeset
    42
public class InflaterInputStream extends FilterInputStream {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
     * Decompressor for this stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    protected Inflater inf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * Input buffer for decompression.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    protected byte[] buf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * Length of input buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    protected int len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private boolean closed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    // this flag is set to true after EOF has reached
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private boolean reachEOF = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * Check to make sure that this stream has not been closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    private void ensureOpen() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        if (closed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            throw new IOException("Stream closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * Creates a new input stream with the specified decompressor and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * buffer size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * @param in the input stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * @param inf the decompressor ("inflater")
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * @param size the input buffer size
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
    78
     * @throws    IllegalArgumentException if {@code size <= 0}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    public InflaterInputStream(InputStream in, Inflater inf, int size) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        super(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        if (in == null || inf == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        } else if (size <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            throw new IllegalArgumentException("buffer size <= 0");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        this.inf = inf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        buf = new byte[size];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * Creates a new input stream with the specified decompressor and a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * default buffer size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * @param in the input stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @param inf the decompressor ("inflater")
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    public InflaterInputStream(InputStream in, Inflater inf) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        this(in, inf, 512);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    boolean usesDefaultInflater = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * Creates a new input stream with a default decompressor and buffer size.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * @param in the input stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public InflaterInputStream(InputStream in) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        this(in, new Inflater());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        usesDefaultInflater = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    private byte[] singleByteBuf = new byte[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Reads a byte of uncompressed data. This method will block until
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * enough input is available for decompression.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * @return the byte read, or -1 if end of compressed input is reached
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   118
     * @throws    IOException if an I/O error has occurred
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    public int read() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        ensureOpen();
11828
590711df7828 7143629: JDK jar/zip code should use unsigned library support
darcy
parents: 5506
diff changeset
   122
        return read(singleByteBuf, 0, 1) == -1 ? -1 : Byte.toUnsignedInt(singleByteBuf[0]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   126
     * Reads uncompressed data into an array of bytes. If {@code len} is not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * zero, the method will block until some input can be decompressed; otherwise,
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   128
     * no bytes are read and {@code 0} is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @param b the buffer into which the data is read
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   130
     * @param off the start offset in the destination array {@code b}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * @param len the maximum number of bytes read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @return the actual number of bytes read, or -1 if the end of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *         compressed input is reached or a preset dictionary is needed
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   134
     * @throws     NullPointerException If {@code b} is {@code null}.
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   135
     * @throws     IndexOutOfBoundsException If {@code off} is negative,
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   136
     * {@code len} is negative, or {@code len} is greater than
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   137
     * {@code b.length - off}
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   138
     * @throws    ZipException if a ZIP format error has occurred
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   139
     * @throws    IOException if an I/O error has occurred
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    public int read(byte[] b, int off, int len) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        if (b == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        } else if (off < 0 || len < 0 || len > b.length - off) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            throw new IndexOutOfBoundsException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        } else if (len == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            int n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            while ((n = inf.inflate(b, off, len)) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                if (inf.finished() || inf.needsDictionary()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                    reachEOF = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                    return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                if (inf.needsInput()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                    fill();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        } catch (DataFormatException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            String s = e.getMessage();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            throw new ZipException(s != null ? s : "Invalid ZLIB data format");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * Returns 0 after EOF has been reached, otherwise always return 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * Programs should not count on this method to return the actual number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * of bytes that could be read without blocking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * @return     1 before EOF and 0 after EOF.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   175
     * @throws     IOException  if an I/O error occurs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    public int available() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        if (reachEOF) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            return 0;
39642
cac81257c657 7031075: GZIPInputStream's available() reports 1, but read() gives -1.
sherman
parents: 25859
diff changeset
   182
        } else if (inf.finished()) {
cac81257c657 7031075: GZIPInputStream's available() reports 1, but read() gives -1.
sherman
parents: 25859
diff changeset
   183
            // the end of the compressed data stream has been reached
cac81257c657 7031075: GZIPInputStream's available() reports 1, but read() gives -1.
sherman
parents: 25859
diff changeset
   184
            reachEOF = true;
cac81257c657 7031075: GZIPInputStream's available() reports 1, but read() gives -1.
sherman
parents: 25859
diff changeset
   185
            return 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            return 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    private byte[] b = new byte[512];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * Skips specified number of bytes of uncompressed data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @param n the number of bytes to skip
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * @return the actual number of bytes skipped.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   197
     * @throws    IOException if an I/O error has occurred
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   198
     * @throws    IllegalArgumentException if {@code n < 0}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    public long skip(long n) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        if (n < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            throw new IllegalArgumentException("negative skip length");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        int max = (int)Math.min(n, Integer.MAX_VALUE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        int total = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        while (total < max) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
            int len = max - total;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            if (len > b.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                len = b.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            len = read(b, 0, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            if (len == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
                reachEOF = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            total += len;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        return total;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * Closes this input stream and releases any system resources associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * with the stream.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   225
     * @throws    IOException if an I/O error has occurred
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    public void close() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        if (!closed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            if (usesDefaultInflater)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                inf.end();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            closed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * Fills input buffer with more data to decompress.
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   238
     * @throws    IOException if an I/O error has occurred
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    protected void fill() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        ensureOpen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        len = in.read(buf, 0, buf.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        if (len == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            throw new EOFException("Unexpected end of ZLIB input stream");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        inf.setInput(buf, 0, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    /**
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   250
     * Tests if this input stream supports the {@code mark} and
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   251
     * {@code reset} methods. The {@code markSupported}
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   252
     * method of {@code InflaterInputStream} returns
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   253
     * {@code false}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   255
     * @return  a {@code boolean} indicating if this stream type supports
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   256
     *          the {@code mark} and {@code reset} methods.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * @see     java.io.InputStream#mark(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * @see     java.io.InputStream#reset()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    public boolean markSupported() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * Marks the current position in this input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   267
     * <p> The {@code mark} method of {@code InflaterInputStream}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * does nothing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * @param   readlimit   the maximum limit of bytes that can be read before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *                      the mark position becomes invalid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @see     java.io.InputStream#reset()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    public synchronized void mark(int readlimit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * Repositions this stream to the position at the time the
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   279
     * {@code mark} method was last called on this input stream.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *
58288
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   281
     * <p> The method {@code reset} for class
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   282
     * {@code InflaterInputStream} does nothing except throw an
48e480e56aad 8231186: Replace html tag <code>foo</code> with javadoc tag {@code foo} in java.base
jboes
parents: 58242
diff changeset
   283
     * {@code IOException}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     *
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 47216
diff changeset
   285
     * @throws     IOException  if this method is invoked.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * @see     java.io.InputStream#mark(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * @see     java.io.IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    public synchronized void reset() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        throw new IOException("mark/reset not supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
}