/*
* Copyright 2004-2012 the Seasar Foundation and the Others.
*
* 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 org.seasar.mayaa.impl.cycle.jsp;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.io.Writer;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.BodyContent;
import org.seasar.mayaa.cycle.CycleWriter;
/**
* @author Masataka Kurihara (Gluegent, Inc.)
*/
public class BodyContentImpl extends BodyContent {
private static final String LINE_SEPARATOR =
System.getProperty("line.separator");
private CycleWriter _writer;
public BodyContentImpl(CycleWriter writer) {
super(null);
if (writer == null) {
throw new IllegalArgumentException();
}
_writer = writer;
}
public void clearBody() {
// lazy implementation
_writer.clearBuffer();
}
public JspWriter getEnclosingWriter() {
return new JspWriterImpl(_writer.getEnclosingWriter());
}
public int getBufferSize() {
return NO_BUFFER;
}
public Reader getReader() {
return new StringReader(getString());
}
public String getString() {
return _writer.getString();
}
public void clear() {
// lazy implementation
_writer.clearBuffer();
}
public void clearBuffer() {
// lazy implementation
_writer.clearBuffer();
}
public void close() {
// do nothing.
}
public int getRemaining() {
return NO_BUFFER;
}
public void write(char[] cbuf, int off, int len) throws IOException {
if (len == 0) {
return;
}
_writer.write(cbuf, off, len);
}
public void writeOut(Writer out) throws IOException {
out.write(getString());
}
public void newLine() throws IOException {
write(LINE_SEPARATOR);
}
public void print(boolean b) throws IOException {
write(Boolean.toString(b));
}
public void print(char c) throws IOException {
write(Character.toString(c));
}
public void print(char[] c) throws IOException {
write(c);
}
public void print(double d) throws IOException {
write(Double.toString(d));
}
public void print(float f) throws IOException {
write(Float.toString(f));
}
public void print(int i) throws IOException {
write(Integer.toString(i));
}
public void print(long l) throws IOException {
write(Long.toString(l));
}
public void print(Object o) throws IOException {
write(String.valueOf(o));
}
public void print(String s) throws IOException {
write(s);
}
public void println() throws IOException {
newLine();
}
public void println(boolean b) throws IOException {
print(b);
newLine();
}
public void println(char c) throws IOException {
print(c);
newLine();
}
public void println(char[] c) throws IOException {
print(c);
newLine();
}
public void println(double d) throws IOException {
print(d);
newLine();
}
public void println(float f) throws IOException {
print(f);
newLine();
}
public void println(int i) throws IOException {
print(i);
newLine();
}
public void println(long l) throws IOException {
print(l);
newLine();
}
public void println(Object o) throws IOException {
print(o);
newLine();
}
public void println(String s) throws IOException {
print(s);
newLine();
}
}