com.caucho.server.webapp.IncludeDispatchRequest Maven / Gradle / Ivy
/*
* Copyright (c) 1998-2018 Caucho Technology -- all rights reserved
*
* This file is part of Resin(R) Open Source
*
* Each copy or derived work must preserve the copyright notice and this
* notice unmodified.
*
* Resin Open Source is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Resin Open Source is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty
* of NON-INFRINGEMENT. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with Resin Open Source; if not, write to the
*
* Free Software Foundation, Inc.
* 59 Temple Place, Suite 330
* Boston, MA 02111-1307 USA
*
* @author Scott Ferguson
*/
package com.caucho.server.webapp;
import com.caucho.util.FreeList;
import com.caucho.server.dispatch.*;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Enumeration;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.logging.Logger;
/**
* sub-request for a include() page
*/
class IncludeDispatchRequest extends AbstractDispatchRequest {
protected static final Logger log
= Logger.getLogger(IncludeDispatchRequest.class.getName());
private static final FreeList _freeList
= new FreeList(32);
private Hashtable _headers;
protected IncludeDispatchRequest()
{
}
/**
* Creates a dispatch request.
*/
public static IncludeDispatchRequest createDispatch()
{
IncludeDispatchRequest req = _freeList.allocate();
if (req == null)
req = new IncludeDispatchRequest();
return req;
}
void init(Invocation invocation,
WebApp webApp,
WebApp oldWebApp,
HttpServletRequest request,
HttpServletResponse response,
String method, String uri,
String servletPath, String pathInfo,
String queryString, String addedQuery)
throws ServletException
{
super.init(invocation, webApp, oldWebApp, request, response,
method, uri, servletPath, pathInfo, queryString, addedQuery);
_headers = null;
}
/**
* Returns the include's view of the header names.
*/
public Enumeration getHeaderNames()
{
return new HeaderEnumeration(super.getHeaderNames(), _headers);
}
public String getHeader(String key)
{
String value = null;
if (_headers != null)
value = (String) _headers.get(key);
if (value != null)
return value;
// The included file must ignore caching directives from the
// original request
if (key.equalsIgnoreCase("If-Modified-Since")
|| key.equalsIgnoreCase("If-None-Match"))
return null;
else {
return super.getHeader(key);
}
}
public void setHeader(String key, String value)
{
if (_headers == null)
_headers = new Hashtable();
_headers.put(key, value);
}
/**
* Frees the request.
*/
public static void free(IncludeDispatchRequest req)
{
req.free();
_freeList.free(req);
}
public static class HeaderEnumeration implements Enumeration {
private Enumeration _parent;
private Hashtable _headers;
private Iterator _headerIter;
private String _nextHeader;
HeaderEnumeration(Enumeration parent, Hashtable headers)
{
_parent = parent;
_headers = headers;
if (headers != null)
_headerIter = headers.keySet().iterator();
}
/**
* Returns true if there are more elements.
*/
public boolean hasMoreElements()
{
if (_nextHeader != null)
return true;
if (_parent == null && _headerIter == null)
return false;
if (_parent != null) {
while (_parent.hasMoreElements() && _nextHeader == null) {
_nextHeader = (String) _parent.nextElement();
if (_nextHeader == null) {
}
else if (_nextHeader.equalsIgnoreCase("If-Modified-Since") ||
_nextHeader.equalsIgnoreCase("If-None-Match") ||
_headers != null && _headers.get(_nextHeader) != null) {
_nextHeader = null;
}
}
if (_nextHeader == null)
_parent = null;
else
return true;
}
if (_headerIter != null) {
_nextHeader = _headerIter.next();
}
return _nextHeader != null;
}
public Object nextElement()
{
if (! hasMoreElements())
return null;
Object value = _nextHeader;
_nextHeader = null;
return value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy