com.adobe.acs.commons.util.BufferedSlingHttpServletResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of acs-aem-commons-bundle Show documentation
Show all versions of acs-aem-commons-bundle Show documentation
Main ACS AEM Commons OSGi Bundle. Includes commons utilities.
/*
* ACS AEM Commons
*
* Copyright (C) 2013 - 2023 Adobe
*
* 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 com.adobe.acs.commons.util;
import java.io.ByteArrayOutputStream;
import java.io.Closeable;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.StringWriter;
import javax.servlet.ServletOutputStream;
import org.apache.sling.api.SlingHttpServletResponse;
import org.apache.sling.api.wrappers.SlingHttpServletResponseWrapper;
/**
* A wrapper around a {@link SlingHttpServletResponse} which buffers all output being written to {@link #getOutputStream()} or {@link #getWriter()}. The response cannot
* be committed via {@link #flushBuffer} but only via {@link #close()}. Access to the underlying buffer is provided via
* {@link #getBufferedServletOutput()}.
*
* Hint: This servlet wrapper must extend {@link SlingHttpServletResponseWrapper}, as otherwise RequestData.unwrap() throws exceptions
*
*/
public class BufferedSlingHttpServletResponse extends SlingHttpServletResponseWrapper implements Closeable {
private final BufferedServletOutput bufferedOutput;
public BufferedSlingHttpServletResponse(SlingHttpServletResponse wrappedResponse) {
super(wrappedResponse);
this.bufferedOutput = new BufferedServletOutput(wrappedResponse);
}
public BufferedSlingHttpServletResponse(SlingHttpServletResponse wrappedResponse, StringWriter writer, ByteArrayOutputStream outputStream) {
super(wrappedResponse);
this.bufferedOutput = new BufferedServletOutput(wrappedResponse, writer, outputStream);
}
@Override
public ServletOutputStream getOutputStream() throws IOException {
return bufferedOutput.getOutputStream();
}
@Override
public PrintWriter getWriter() throws IOException {
return bufferedOutput.getWriter();
}
@Override
public void flushBuffer() throws IOException {
bufferedOutput.flushBuffer();
}
@Override
public void resetBuffer() {
bufferedOutput.resetBuffer();
}
@Override
public void close() throws IOException {
bufferedOutput.close();
}
/**
* @return the underlying wrapper around the buffered output
*/
public BufferedServletOutput getBufferedServletOutput() {
return bufferedOutput;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy