All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.mmm.util.io.base.NonClosingInputStream Maven / Gradle / Ivy

/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package net.sf.mmm.util.io.base;

import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;

import net.sf.mmm.util.exception.api.NlsNullPointerException;
import net.sf.mmm.util.io.api.StreamClosedException;

/**
 * This is an {@link InputStream} that wraps an existing {@link InputStream} and prevents {@link #close() closing} the
 * original {@link InputStream}. 
* This can be useful as workaround for bugs like 6539065. * * @author Joerg Hohwiller (hohwille at users.sourceforge.net) * @since 2.0.0 */ public class NonClosingInputStream extends FilterInputStream { /** * The constructor. * * @param delegate is the {@link InputStream} to adapt. */ public NonClosingInputStream(InputStream delegate) { super(delegate); NlsNullPointerException.checkNotNull(InputStream.class, delegate); } @Override public void close() throws IOException { this.in = ClosedInputStream.INSTANCE; } /** * This inner class is a stream that will always throw a {@link StreamClosedException}. */ protected static class ClosedInputStream extends FailingInputStream { /** The singleton instance. */ protected static final ClosedInputStream INSTANCE = new ClosedInputStream(); /** * The constructor. */ public ClosedInputStream() { super(); } @Override protected void causeException() throws RuntimeException { throw new StreamClosedException(); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy