dk.ange.octave.util.NoCloseWriter.java Source code

Java tutorial

Introduction

Here is the source code for dk.ange.octave.util.NoCloseWriter.java

Source

/*
 * Copyright 2007, 2008 Ange Optimization ApS
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package dk.ange.octave.util;

import java.io.IOException;
import java.io.Writer;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * Will protect a Writer from beeing closed by .close(), usefull for protecting stdout and stderr from beeing closed.
 * 
 * @author Kim Hansen
 */
public class NoCloseWriter extends Writer {

    private static final Log log = LogFactory.getLog(NoCloseWriter.class);

    private Writer writer;

    /**
     * Create a NoCloseWriter that will protect writer.
     * 
     * @param writer
     *            the writer to be protected.
     */
    public NoCloseWriter(final Writer writer) {
        this.writer = writer;
    }

    @Override
    public void write(final char[] cbuf, final int off, final int len) throws IOException {
        if (writer == null) {
            return;
        }
        writer.write(cbuf, off, len);
    }

    @Override
    public void flush() throws IOException {
        if (writer == null) {
            return;
        }
        writer.flush();
    }

    /**
     * Flushes the writer and looses the connection to it.
     * 
     * @throws IOException
     *             from the underlying writer.
     */
    @Override
    public void close() throws IOException {
        log.debug("ignoring close() on a writer");
        if (writer == null) {
            return;
        }
        writer.flush();
        writer = null;
    }

    /**
     * Really closes the underlying writer.
     * 
     * @throws IOException
     *             from the underlying writer.
     * @throws NullPointerException
     *             if the NoCloseWriter has been closed.
     */
    public void reallyClose() throws IOException {
        log.debug("reallyClose() a writer");
        writer.close();
    }

}