blob: 3c21f2a56e80ecf28a8840542ef724a0b6de7edb [file] [log] [blame]
// Copyright 2006, 2007, 2008, 2009, 2010 The Apache Software Foundation
//
// 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.apache.tapestry5.internal.services;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.io.Writer;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.tapestry5.Link;
import org.apache.tapestry5.internal.InternalConstants;
import org.apache.tapestry5.ioc.internal.util.InternalUtils;
import org.apache.tapestry5.services.Response;
/**
* Implementation of {@link Response} that wraps around an underlying {@link HttpServletResponse}.
*/
public class ResponseImpl implements Response
{
private final HttpServletRequest request;
private final HttpServletResponse response;
public ResponseImpl(HttpServletRequest request, HttpServletResponse response)
{
assert request != null;
assert response != null;
this.request = request;
this.response = response;
}
public PrintWriter getPrintWriter(String contentType) throws IOException
{
assert InternalUtils.isNonBlank(contentType);
OutputStream os = getOutputStream(contentType);
Writer w = new OutputStreamWriter(os, response.getCharacterEncoding());
return new PrintWriter(new BufferedWriter(w));
}
public String encodeURL(String URL)
{
return response.encodeURL(URL);
}
public String encodeRedirectURL(String URL)
{
return response.encodeRedirectURL(URL);
}
public void sendRedirect(String URL) throws IOException
{
response.sendRedirect(URL);
}
public void sendRedirect(Link link) throws IOException
{
assert link != null;
String redirectURL = encodeRedirectURL(link.toRedirectURI());
sendRedirect(redirectURL);
}
public void setStatus(int sc)
{
response.setStatus(sc);
}
public OutputStream getOutputStream(String contentType) throws IOException
{
assert InternalUtils.isNonBlank(contentType);
response.setContentType(contentType);
return response.getOutputStream();
}
public void sendError(int sc, String message) throws IOException
{
response.sendError(sc, message);
}
public void setContentLength(int length)
{
response.setContentLength(length);
}
public void setDateHeader(String name, long date)
{
response.setDateHeader(name, date);
}
public void setHeader(String name, String value)
{
response.setHeader(name, value);
}
public void setIntHeader(String name, int value)
{
response.setIntHeader(name, value);
}
public boolean isCommitted()
{
return response.isCommitted();
}
public void disableCompression()
{
request.setAttribute(InternalConstants.SUPPRESS_COMPRESSION, true);
}
}