001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.commons.io.input;
018
019import java.io.IOException;
020import java.io.InputStream;
021import java.util.function.Supplier;
022
023import org.apache.commons.io.function.Erase;
024
025/**
026 * Always throws an exception from all {@link InputStream} methods where {@link IOException} is declared.
027 * <p>
028 * This class is mostly useful for testing error handling.
029 * </p>
030 *
031 * @since 2.0
032 */
033public class BrokenInputStream extends InputStream {
034
035    /**
036     * The singleton instance using a default IOException.
037     *
038     * @since 2.12.0
039     */
040    public static final BrokenInputStream INSTANCE = new BrokenInputStream();
041
042    /**
043     * A supplier for the exception that is thrown by all methods of this class.
044     */
045    private final Supplier<Throwable> exceptionSupplier;
046
047    /**
048     * Constructs a new stream that always throws an {@link IOException}.
049     */
050    public BrokenInputStream() {
051        this(() -> new IOException("Broken input stream"));
052    }
053
054    /**
055     * Constructs a new stream that always throws the given exception.
056     *
057     * @param exception the exception to be thrown.
058     * @deprecated Use {@link #BrokenInputStream(Throwable)}.
059     */
060    @Deprecated
061    public BrokenInputStream(final IOException exception) {
062        this(() -> exception);
063    }
064
065    /**
066     * Constructs a new stream that always throws the supplied exception.
067     *
068     * @param exceptionSupplier a supplier for the IOException or RuntimeException to be thrown.
069     * @since 2.12.0
070     */
071    public BrokenInputStream(final Supplier<Throwable> exceptionSupplier) {
072        this.exceptionSupplier = exceptionSupplier;
073    }
074
075    /**
076     * Constructs a new stream that always throws the given exception.
077     *
078     * @param exception the exception to be thrown.
079     * @since 2.16.0
080     */
081    public BrokenInputStream(final Throwable exception) {
082        this(() -> exception);
083    }
084
085    /**
086     * Throws the configured exception.
087     *
088     * @return nothing.
089     * @throws IOException always throws the exception configured in a constructor.
090     */
091    @Override
092    public int available() throws IOException {
093        throw rethrow();
094    }
095
096    /**
097     * Throws the configured exception.
098     *
099     * @throws IOException always throws the exception configured in a constructor.
100     */
101    @Override
102    public void close() throws IOException {
103        throw rethrow();
104    }
105
106    /**
107     * Throws the configured exception.
108     *
109     * @return nothing.
110     * @throws IOException always throws the exception configured in a constructor.
111     */
112    @Override
113    public int read() throws IOException {
114        throw rethrow();
115    }
116
117    /**
118     * Throws the configured exception.
119     *
120     * @throws IOException always throws the exception configured in a constructor.
121     */
122    @Override
123    public synchronized void reset() throws IOException {
124        throw rethrow();
125    }
126
127    /**
128     * Throws the configured exception from its supplier.
129     *
130     * @return Throws the configured exception from its supplier.
131     */
132    private RuntimeException rethrow() {
133        return Erase.rethrow(exceptionSupplier.get());
134    }
135
136    /**
137     * Throws the configured exception.
138     *
139     * @param n ignored.
140     * @return nothing.
141     * @throws IOException always throws the exception configured in a constructor.
142     */
143    @Override
144    public long skip(final long n) throws IOException {
145        throw rethrow();
146    }
147
148}