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

org.apache.tiles.request.jsp.JspPrintWriterAdapter Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
/*
 * $Id: JspPrintWriterAdapter.java 1306435 2012-03-28 15:39:11Z nlebas $
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.tiles.request.jsp;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.jsp.JspWriter;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Adapts a {@link JspWriter} to a {@link PrintWriter}, swallowing {@link IOException}.
 *
 * @version $Rev: 1306435 $ $Date: 2012-03-28 17:39:11 +0200 (Wed, 28 Mar 2012) $
 */
public class JspPrintWriterAdapter extends PrintWriter {

    /**
     * The JSP writer.
     */
    private JspWriter writer;

    /**
     * The logging object.
     */
    private final Logger log = LoggerFactory.getLogger(this.getClass());

    /**
     * Constructor.
     *
     * @param writer The JSP writer.
     */
    public JspPrintWriterAdapter(JspWriter writer) {
        super(writer);
        this.writer = writer;
    }

    /**
     * Returns the original JSP writer.
     *
     * @return The JSP writer.
     */
    public JspWriter getJspWriter() {
        return writer;
    }

    /** {@inheritDoc} */
    @Override
    public PrintWriter append(char c) {
        try {
            writer.append(c);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public PrintWriter append(CharSequence csq, int start, int end) {
        try {
            writer.append(csq, start, end);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public PrintWriter append(CharSequence csq) {
        try {
            writer.append(csq);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public void close() {
        try {
            writer.close();
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void flush() {
        try {
            writer.flush();
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void print(boolean b) {
        try {
            writer.print(b);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void print(char c) {
        try {
            writer.print(c);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void print(char[] s) {
        try {
            writer.print(s);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void print(double d) {
        try {
            writer.print(d);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void print(float f) {
        try {
            writer.print(f);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void print(int i) {
        try {
            writer.print(i);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void print(long l) {
        try {
            writer.print(l);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void print(Object obj) {
        try {
            writer.print(obj);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void print(String s) {
        try {
            writer.print(s);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println() {
        try {
            writer.println();
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println(boolean x) {
        try {
            writer.println(x);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println(char x) {
        try {
            writer.println(x);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println(char[] x) {
        try {
            writer.println(x);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println(double x) {
        try {
            writer.println(x);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println(float x) {
        try {
            writer.println(x);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println(int x) {
        try {
            writer.println(x);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println(long x) {
        try {
            writer.println(x);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println(Object x) {
        try {
            writer.println(x);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void println(String x) {
        try {
            writer.println(x);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void write(char[] buf, int off, int len) {
        try {
            writer.write(buf, off, len);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void write(char[] buf) {
        try {
            writer.write(buf);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void write(int c) {
        try {
            writer.write(c);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void write(String s, int off, int len) {
        try {
            writer.write(s, off, len);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }

    /** {@inheritDoc} */
    @Override
    public void write(String s) {
        try {
            writer.write(s);
        } catch (IOException e) {
            log.error("Error when writing in JspWriter", e);
            setError();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy