Coverage Report - org.kuali.rice.krad.web.filter.SetResponseBufferSizeFilter
 
Classes in this File Line Coverage Branch Coverage Complexity
SetResponseBufferSizeFilter
0%
0/19
0%
0/6
3
 
 1  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.krad.web.filter;
 17  
 
 18  
 import org.apache.commons.logging.Log;
 19  
 import org.apache.commons.logging.LogFactory;
 20  
 
 21  
 import javax.servlet.Filter;
 22  
 import javax.servlet.FilterChain;
 23  
 import javax.servlet.FilterConfig;
 24  
 import javax.servlet.ServletException;
 25  
 import javax.servlet.ServletRequest;
 26  
 import javax.servlet.ServletResponse;
 27  
 import java.io.IOException;
 28  
 
 29  
 /**
 30  
  * This class can be used to increase the response buffer size so that if there is a late exception, Tomcat's ErrorReportValve can
 31  
  * display it on the page and return an error status in the HTTP reponse header. This filter must be configured early in the chain
 32  
  * in web.xml, before another filter writes anything to the response.
 33  
  * 
 34  
  * There's no configuration option for this already?
 35  
  * 
 36  
  * 
 37  
  */
 38  0
 public class SetResponseBufferSizeFilter implements Filter {
 39  
 
 40  
     private Log log;
 41  
     private int bufferSize;
 42  
 
 43  
     /**
 44  
      * Initializes this Filter with the required parameter, bufferSize.
 45  
      * 
 46  
      * @throws ServletException if the bufferSize parameter is missing or does not contain an integer.
 47  
      * @see Filter#init
 48  
      */
 49  
     public void init(FilterConfig filterConfig) throws ServletException {
 50  0
         log = LogFactory.getLog(SetResponseBufferSizeFilter.class);
 51  0
         String bufferSizeParam = filterConfig.getInitParameter("bufferSize");
 52  0
         if (log.isDebugEnabled()) {
 53  0
             log.debug("bufferSizeParam=" + bufferSizeParam);
 54  
         }
 55  0
         if (bufferSizeParam == null) {
 56  0
             throw new ServletException("bufferSize parameter is required");
 57  
         }
 58  
         try {
 59  0
             bufferSize = Integer.parseInt(bufferSizeParam);
 60  
         }
 61  0
         catch (NumberFormatException e) {
 62  0
             throw new ServletException("bufferSize parameter is not an integer", e);
 63  0
         }
 64  0
         log.info("Filter initialized. Response buffer size is " + bufferSize);
 65  0
     }
 66  
 
 67  
     /**
 68  
      * Sets the bufferSize of the response.
 69  
      * 
 70  
      * @see Filter#doFilter
 71  
      */
 72  
     public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
 73  0
         if (log.isDebugEnabled()) {
 74  0
             log.debug("setting response buffer size to " + bufferSize);
 75  
         }
 76  0
         servletResponse.setBufferSize(bufferSize);
 77  0
         filterChain.doFilter(servletRequest, servletResponse);
 78  0
     }
 79  
 
 80  
     /**
 81  
      * Does nothing.
 82  
      * 
 83  
      * @see Filter#destroy
 84  
      */
 85  
     public void destroy() {
 86  
         // nothing to destroy
 87  0
     }
 88  
 }