All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mortbay.jetty.Request Maven / Gradle / Ivy

There is a newer version: 7.0.0.pre5
Show newest version
//========================================================================
//$Id: Request.java,v 1.15 2005/11/16 22:02:40 gregwilkins Exp $
//Copyright 2004-2005 Mort Bay Consulting Pty. Ltd.
//------------------------------------------------------------------------
//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.mortbay.jetty;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.net.InetAddress;
import java.nio.ByteBuffer;
import java.security.Principal;
import java.util.Collection;
import java.util.Collections;
import java.util.Enumeration;
import java.util.EventListener;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;

import javax.servlet.RequestDispatcher;
import javax.servlet.ServletContext;
import javax.servlet.ServletInputStream;
import javax.servlet.ServletRequestAttributeEvent;
import javax.servlet.ServletRequestAttributeListener;
import javax.servlet.ServletRequestListener;
import javax.servlet.ServletRequestWrapper;
import javax.servlet.ServletResponse;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;

import org.mortbay.io.Buffer;
import org.mortbay.io.BufferUtil;
import org.mortbay.io.EndPoint;
import org.mortbay.io.Portable;
import org.mortbay.io.nio.DirectNIOBuffer;
import org.mortbay.io.nio.IndirectNIOBuffer;
import org.mortbay.io.nio.NIOBuffer;
import org.mortbay.jetty.handler.ContextHandler;
import org.mortbay.jetty.handler.ContextHandler.SContext;
import org.mortbay.jetty.security.Authenticator;
import org.mortbay.jetty.security.SecurityHandler;
import org.mortbay.jetty.security.UserRealm;
import org.mortbay.log.Log;
import org.mortbay.util.Attributes;
import org.mortbay.util.AttributesMap;
import org.mortbay.util.LazyList;
import org.mortbay.util.MultiMap;
import org.mortbay.util.QuotedStringTokenizer;
import org.mortbay.util.StringUtil;
import org.mortbay.util.URIUtil;
import org.mortbay.util.UrlEncoded;
import org.mortbay.util.ajax.Continuation;

/* ------------------------------------------------------------ */
/** Jetty Request.
 * 

* Implements {@link javax.servlet.HttpServletRequest} from the {@link javax.servlet} package. *

*

* The standard interface of mostly getters, * is extended with setters so that the request is mutable by the handlers that it is * passed to. This allows the request object to be as lightweight as possible and not * actually implement any significant behaviour. For example

    * *
  • The {@link getContextPath} method will return null, until the requeset has been * passed to a {@link ContextHandler} which matches the {@link getPathInfo} with a context * path and calls {@link setContextPath} as a result.
  • * *
  • the HTTP session methods * will all return null sessions until such time as a request has been passed to * a {@link org.mortbay.jetty.servlet.SessionHandler} which checks for session cookies * and enables the ability to create new sessions.
  • * *
  • The {@link getServletPath} method will return null until the request has been * passed to a {@link org.mortbay.jetty.servlet.ServletHandler} and the pathInfo matched * against the servlet URL patterns and {@link setServletPath} called as a result.
  • *
* * A request instance is created for each {@link HttpConnection} accepted by the server * and recycled for each HTTP request received via that connection. An effort is made * to avoid reparsing headers and cookies that are likely to be the same for * requests from the same connection. * * @author gregw * */ public class Request implements HttpServletRequest { private static final Collection __defaultLocale = Collections.singleton(Locale.getDefault()); private static final int __NONE=0, _STREAM=1, __READER=2; private boolean _handled =false; private HttpConnection _connection; private EndPoint _endp; private Map _roleMap; private Attributes _attributes; private String _authType; private String _characterEncoding; private String _queryEncoding; private String _serverName; private String _remoteAddr; private String _remoteHost; private String _method; private String _pathInfo; private int _port; private String _protocol=HttpVersions.HTTP_1_1; private String _queryString; private String _requestedSessionId; private boolean _requestedSessionIdFromCookie=false; private String _requestURI; private String _scheme=URIUtil.HTTP; private String _contextPath; private String _servletPath; private String _servletName; private HttpURI _uri; private Principal _userPrincipal; private MultiMap _parameters; private MultiMap _baseParameters; private boolean _paramsExtracted; private int _inputState=__NONE; private BufferedReader _reader; private String _readerEncoding; private boolean _dns=false; private ContextHandler.SContext _context; private HttpSession _session; private SessionManager _sessionManager; private boolean _cookiesExtracted=false; private Cookie[] _cookies; private String[] _unparsedCookies; private long _timeStamp; private Buffer _timeStampBuffer; private Continuation _continuation; private Object _requestAttributeListeners; private Object _requestListeners; private Map _savedNewSessions; private UserRealm _userRealm; /* ------------------------------------------------------------ */ /** * */ public Request() { } /* ------------------------------------------------------------ */ /** * */ public Request(HttpConnection connection) { _connection=connection; _endp=connection.getEndPoint(); _dns=_connection.getResolveNames(); } /* ------------------------------------------------------------ */ protected void setConnection(HttpConnection connection) { _connection=connection; _endp=connection.getEndPoint(); _dns=connection.getResolveNames(); } /* ------------------------------------------------------------ */ protected void recycle() { if (_inputState==__READER) { try { int r=_reader.read(); while(r!=-1) r=_reader.read(); } catch(Exception e) { Log.ignore(e); _reader=null; } } _handled=false; if (_context!=null) throw new IllegalStateException("Request in context!"); if(_attributes!=null) _attributes.clearAttributes(); _authType=null; _characterEncoding=null; _queryEncoding=null; _context=null; _serverName=null; _method=null; _pathInfo=null; _port=0; _protocol=HttpVersions.HTTP_1_1; _queryString=null; _requestedSessionId=null; _requestedSessionIdFromCookie=false; _session=null; _sessionManager=null; _requestURI=null; _scheme=URIUtil.HTTP; _servletPath=null; _timeStamp=0; _timeStampBuffer=null; _uri=null; _userPrincipal=null; if (_baseParameters!=null) _baseParameters.clear(); _parameters=null; _paramsExtracted=false; _inputState=__NONE; _cookiesExtracted=false; if (_savedNewSessions!=null) _savedNewSessions.clear(); _savedNewSessions=null; if (_continuation!=null && _continuation.isPending()) _continuation.reset(); } /* ------------------------------------------------------------ */ /** * Get Request TimeStamp * * @return The time that the request was received. */ public Buffer getTimeStampBuffer() { if (_timeStampBuffer == null && _timeStamp > 0) _timeStampBuffer = HttpFields.__dateCache.formatBuffer(_timeStamp); return _timeStampBuffer; } /* ------------------------------------------------------------ */ /** * Get Request TimeStamp * * @return The time that the request was received. */ public long getTimeStamp() { return _timeStamp; } /* ------------------------------------------------------------ */ public void setTimeStamp(long ts) { _timeStamp = ts; } /* ------------------------------------------------------------ */ public boolean isHandled() { return _handled; } /* ------------------------------------------------------------ */ public void setHandled(boolean h) { _handled=h; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getAttribute(java.lang.String) */ public Object getAttribute(String name) { if ("org.mortbay.jetty.ajax.Continuation".equals(name)) return getContinuation(true); if (_attributes==null) return null; return _attributes.getAttribute(name); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getAttributeNames() */ public Enumeration getAttributeNames() { if (_attributes==null) return Collections.enumeration(Collections.EMPTY_LIST); return AttributesMap.getAttributeNamesCopy(_attributes); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getAuthType() */ public String getAuthType() { return _authType; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getCharacterEncoding() */ public String getCharacterEncoding() { return _characterEncoding; } public long getContentRead() { if (_connection==null || _connection.getParser()==null) return -1; return ((HttpParser)_connection.getParser()).getContentRead(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getContentLength() */ public int getContentLength() { return (int)_connection.getRequestFields().getLongField(HttpHeaders.CONTENT_LENGTH_BUFFER); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getContentType() */ public String getContentType() { return _connection.getRequestFields().getStringField(HttpHeaders.CONTENT_TYPE_BUFFER); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getContentType() */ public void setContentType(String contentType) { _connection.getRequestFields().put(HttpHeaders.CONTENT_TYPE_BUFFER,contentType); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getContextPath() */ public String getContextPath() { return _contextPath; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getCookies() */ public Cookie[] getCookies() { if (_cookiesExtracted) return _cookies; // Handle no cookies if (!_connection.getRequestFields().containsKey(HttpHeaders.COOKIE_BUFFER)) { _cookies = null; _cookiesExtracted = true; _unparsedCookies = null; return _cookies; } // Check if cookie headers match last cookies if (_unparsedCookies != null) { int last = 0; Enumeration enm = _connection.getRequestFields().getValues(HttpHeaders.COOKIE_BUFFER); while (enm.hasMoreElements()) { String c = (String)enm.nextElement(); if (last >= _unparsedCookies.length || !c.equals(_unparsedCookies[last])) { _unparsedCookies = null; break; } last++; } if (_unparsedCookies != null && _unparsedCookies.length==last) { _cookiesExtracted = true; return _cookies; } } // Get ready to parse cookies (Expensive!!!) _cookies=null; Object cookies = null; Object lastCookies = null; int version = 0; // For each cookie header Enumeration enm = _connection.getRequestFields().getValues(HttpHeaders.COOKIE_BUFFER); while (enm.hasMoreElements()) { try { // Save a copy of the unparsed header as cache. String hdr = (String)enm.nextElement(); lastCookies = LazyList.add(lastCookies, hdr); // Parse the header String name = null; String value = null; Cookie cookie = null; boolean invalue=false; boolean quoted=false; boolean escaped=false; int tokenstart=-1; int tokenend=-1; for (int i = 0, length = hdr.length(), last=length-1; i < length; i++) { char c = hdr.charAt(i); // Handle quoted values for name or value if (quoted) { if (escaped) { escaped=false; continue; } switch (c) { case '"': tokenend=i; quoted=false; // handle quote as last character specially if (i==last) { if (invalue) value = hdr.substring(tokenstart, tokenend+1); else { name = hdr.substring(tokenstart, tokenend+1); value = ""; } } break; case '\\': escaped=true; continue; default: continue; } } else { // Handle name and value state machines if (invalue) { // parse the value switch (c) { case ' ': case '\t': continue; case '"': if (tokenstart<0) { quoted=true; tokenstart=i; } tokenend=i; if (i==last) { value = hdr.substring(tokenstart, tokenend+1); break; } continue; case ';': case ',': if (tokenstart>=0) value = hdr.substring(tokenstart, tokenend+1); else value=""; tokenstart = -1; invalue=false; break; default: if (tokenstart<0) tokenstart=i; tokenend=i; if (i==last) { value = hdr.substring(tokenstart, tokenend+1); break; } continue; } } else { // parse the name switch (c) { case ' ': case '\t': continue; case '"': if (tokenstart<0) { quoted=true; tokenstart=i; } tokenend=i; if (i==last) { name = hdr.substring(tokenstart, tokenend+1); value = ""; break; } continue; case ';': case ',': if (tokenstart>=0) { name = hdr.substring(tokenstart, tokenend+1); value = ""; } tokenstart = -1; break; case '=': if (tokenstart>=0) name = hdr.substring(tokenstart, tokenend+1); tokenstart = -1; invalue=true; continue; default: if (tokenstart<0) tokenstart=i; tokenend=i; if (i==last) { name = hdr.substring(tokenstart, tokenend+1); value = ""; break; } continue; } } } // If after processing the current character we have a value and a name, then it is a cookie if (value!=null && name!=null) { // TODO handle unquoting during parsing! But quoting is uncommon name=QuotedStringTokenizer.unquote(name); value=QuotedStringTokenizer.unquote(value); try { if (name.startsWith("$")) { String lowercaseName = name.toLowerCase(); if ("$path".equals(lowercaseName)) { if (cookie!=null) cookie.setPath(value); } else if ("$domain".equals(lowercaseName)) { if (cookie!=null) cookie.setDomain(value); } else if ("$port".equals(lowercaseName)) { if (cookie!=null) cookie.setComment("port="+value); } else if ("$version".equals(lowercaseName)) { version = Integer.parseInt(value); } } else { cookie = new Cookie(name, value); if (version > 0) cookie.setVersion(version); cookies = LazyList.add(cookies, cookie); } } catch (Exception e) { Log.warn(e.toString()); Log.debug(e); } name = null; value = null; } } } catch (Exception e) { Log.warn(e); } } // how many cookies did we find? int l = LazyList.size(cookies); _cookiesExtracted = true; if (l>0) { // Do we need a new cookie array if (_cookies == null || _cookies.length != l) _cookies = new Cookie[l]; // Copy the cookies into the array for (int i = 0; i < l; i++) _cookies[i] = (Cookie) LazyList.get(cookies, i); // l = LazyList.size(lastCookies); _unparsedCookies = new String[l]; for (int i = 0; i < l; i++) _unparsedCookies[i] = (String) LazyList.get(lastCookies, i); } else { _cookies=null; _unparsedCookies=null; } if (_cookies==null || _cookies.length==0) return null; return _cookies; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getDateHeader(java.lang.String) */ public long getDateHeader(String name) { return _connection.getRequestFields().getDateField(name); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getHeader(java.lang.String) */ public String getHeader(String name) { return _connection.getRequestFields().getStringField(name); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getHeaderNames() */ public Enumeration getHeaderNames() { return _connection.getRequestFields().getFieldNames(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getHeaders(java.lang.String) */ public Enumeration getHeaders(String name) { Enumeration e = _connection.getRequestFields().getValues(name); if (e==null) return Collections.enumeration(Collections.EMPTY_LIST); return e; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getInputStream() */ public ServletInputStream getInputStream() throws IOException { if (_inputState!=__NONE && _inputState!=_STREAM) throw new IllegalStateException("READER"); _inputState=_STREAM; return _connection.getInputStream(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getIntHeader(java.lang.String) */ public int getIntHeader(String name) { return (int)_connection.getRequestFields().getLongField(name); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getLocalAddr() */ public String getLocalAddr() { return _endp==null?null:_endp.getLocalAddr(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getLocale() */ public Locale getLocale() { Enumeration enm = _connection.getRequestFields().getValues(HttpHeaders.ACCEPT_LANGUAGE, HttpFields.__separators); // handle no locale if (enm == null || !enm.hasMoreElements()) return Locale.getDefault(); // sort the list in quality order List acceptLanguage = HttpFields.qualityList(enm); if (acceptLanguage.size()==0) return Locale.getDefault(); int size=acceptLanguage.size(); // convert to locals for (int i=0; i -1) { country = language.substring(dash + 1).trim(); language = language.substring(0,dash).trim(); } return new Locale(language,country); } return Locale.getDefault(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getLocales() */ public Enumeration getLocales() { Enumeration enm = _connection.getRequestFields().getValues(HttpHeaders.ACCEPT_LANGUAGE, HttpFields.__separators); // handle no locale if (enm == null || !enm.hasMoreElements()) return Collections.enumeration(__defaultLocale); // sort the list in quality order List acceptLanguage = HttpFields.qualityList(enm); if (acceptLanguage.size()==0) return Collections.enumeration(__defaultLocale); Object langs = null; int size=acceptLanguage.size(); // convert to locals for (int i=0; i -1) { country = language.substring(dash + 1).trim(); language = language.substring(0,dash).trim(); } langs=LazyList.ensureSize(langs,size); langs=LazyList.add(langs,new Locale(language,country)); } if (LazyList.size(langs)==0) return Collections.enumeration(__defaultLocale); return Collections.enumeration(LazyList.getList(langs)); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getLocalName() */ public String getLocalName() { if (_dns) return _endp==null?null:_endp.getLocalHost(); return _endp==null?null:_endp.getLocalAddr(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getLocalPort() */ public int getLocalPort() { return _endp==null?0:_endp.getLocalPort(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getMethod() */ public String getMethod() { return _method; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getParameter(java.lang.String) */ public String getParameter(String name) { if (!_paramsExtracted) extractParameters(); return (String) _parameters.getValue(name, 0); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getParameterMap() */ public Map getParameterMap() { if (!_paramsExtracted) extractParameters(); return Collections.unmodifiableMap(_parameters.toStringArrayMap()); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getParameterNames() */ public Enumeration getParameterNames() { if (!_paramsExtracted) extractParameters(); return Collections.enumeration(_parameters.keySet()); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getParameterValues(java.lang.String) */ public String[] getParameterValues(String name) { if (!_paramsExtracted) extractParameters(); List vals = _parameters.getValues(name); if (vals==null) return null; return (String[])vals.toArray(new String[vals.size()]); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getPathInfo() */ public String getPathInfo() { return _pathInfo; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getPathTranslated() */ public String getPathTranslated() { if (_pathInfo==null || _context==null) return null; return _context.getRealPath(_pathInfo); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getProtocol() */ public String getProtocol() { return _protocol; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getReader() */ public BufferedReader getReader() throws IOException { if (_inputState!=__NONE && _inputState!=__READER) throw new IllegalStateException("STREAMED"); if (_inputState==__READER) return _reader; String encoding=getCharacterEncoding(); if (encoding==null) encoding=StringUtil.__ISO_8859_1; if (_reader==null || !encoding.equalsIgnoreCase(_readerEncoding)) { final ServletInputStream in = getInputStream(); _readerEncoding=encoding; _reader=new BufferedReader(new InputStreamReader(in,encoding)) { public void close() throws IOException { in.close(); } }; } _inputState=__READER; return _reader; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getRealPath(java.lang.String) */ public String getRealPath(String path) { if (_context==null) return null; return _context.getRealPath(path); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getRemoteAddr() */ public String getRemoteAddr() { if (_remoteAddr != null) return _remoteAddr; return _endp==null?null:_endp.getRemoteAddr(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getRemoteHost() */ public String getRemoteHost() { if (_dns) { if (_remoteHost != null) { return _remoteHost; } return _endp==null?null:_endp.getRemoteHost(); } return getRemoteAddr(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getRemotePort() */ public int getRemotePort() { return _endp==null?0:_endp.getRemotePort(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getRemoteUser() */ public String getRemoteUser() { Principal p = getUserPrincipal(); if (p==null) return null; return p.getName(); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getRequestDispatcher(java.lang.String) */ public RequestDispatcher getRequestDispatcher(String path) { if (path == null || _context==null) return null; // handle relative path if (!path.startsWith("/")) { String relTo=URIUtil.addPaths(_servletPath,_pathInfo); int slash=relTo.lastIndexOf("/"); if (slash>1) relTo=relTo.substring(0,slash+1); else relTo="/"; path=URIUtil.addPaths(relTo,path); } return _context.getRequestDispatcher(path); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getRequestedSessionId() */ public String getRequestedSessionId() { return _requestedSessionId; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getRequestURI() */ public String getRequestURI() { if (_requestURI==null && _uri!=null) _requestURI=_uri.getPathAndParam(); return _requestURI; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getRequestURL() */ public StringBuffer getRequestURL() { StringBuffer url = new StringBuffer(48); synchronized (url) { String scheme = getScheme(); int port = getServerPort(); url.append(scheme); url.append("://"); url.append(getServerName()); if (_port>0 && ((scheme.equalsIgnoreCase(URIUtil.HTTP) && port != 80) || (scheme.equalsIgnoreCase(URIUtil.HTTPS) && port != 443))) { url.append(':'); url.append(_port); } url.append(getRequestURI()); return url; } } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getScheme() */ public String getScheme() { return _scheme; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getServerName() */ public String getServerName() { // Return already determined host if (_serverName != null) return _serverName; // Return host from absolute URI _serverName = _uri.getHost(); _port = _uri.getPort(); if (_serverName != null) return _serverName; // Return host from header field Buffer hostPort = _connection.getRequestFields().get(HttpHeaders.HOST_BUFFER); if (hostPort!=null) { for (int i=hostPort.length();i-->0;) { if (hostPort.peek(hostPort.getIndex()+i)==':') { _serverName=BufferUtil.to8859_1_String(hostPort.peek(hostPort.getIndex(), i)); _port=BufferUtil.toInt(hostPort.peek(hostPort.getIndex()+i+1, hostPort.length()-i-1)); return _serverName; } } if (_serverName==null || _port<0) { _serverName=BufferUtil.to8859_1_String(hostPort); _port = 0; } return _serverName; } // Return host from connection if (_connection != null) { _serverName = getLocalName(); _port = getLocalPort(); if (_serverName != null && !Portable.ALL_INTERFACES.equals(_serverName)) return _serverName; } // Return the local host try { _serverName = InetAddress.getLocalHost().getHostAddress(); } catch (java.net.UnknownHostException e) { Log.ignore(e); } return _serverName; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#getServerPort() */ public int getServerPort() { if (_port<=0) { if (_serverName==null) getServerName(); if (_port<=0) { if (_serverName!=null && _uri!=null) _port = _uri.getPort(); else _port = _endp==null?0:_endp.getLocalPort(); } } if (_port<=0) { if (getScheme().equalsIgnoreCase(URIUtil.HTTPS)) return 443; return 80; } return _port; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getServletPath() */ public String getServletPath() { if (_servletPath==null) _servletPath=""; return _servletPath; } /* ------------------------------------------------------------ */ /* */ public String getServletName() { return _servletName; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getSession() */ public HttpSession getSession() { return getSession(true); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getSession(boolean) */ public HttpSession getSession(boolean create) { if (_sessionManager==null && create) throw new IllegalStateException("No SessionHandler or SessionManager"); if (_session != null && _sessionManager!=null && _sessionManager.isValid(_session)) return _session; _session=null; String id=getRequestedSessionId(); if (id != null && _sessionManager!=null) { _session=_sessionManager.getHttpSession(id); if (_session == null && !create) return null; } if (_session == null && _sessionManager!=null && create ) { _session=_sessionManager.newHttpSession(this); Cookie cookie=_sessionManager.getSessionCookie(_session,getContextPath(),isSecure()); if (cookie!=null) _connection.getResponse().addCookie(cookie); } return _session; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getUserPrincipal() */ public Principal getUserPrincipal() { if (_userPrincipal != null && _userPrincipal instanceof SecurityHandler.NotChecked) { SecurityHandler.NotChecked not_checked=(SecurityHandler.NotChecked)_userPrincipal; _userPrincipal = SecurityHandler.__NO_USER; Authenticator auth=not_checked.getSecurityHandler().getAuthenticator(); UserRealm realm=not_checked.getSecurityHandler().getUserRealm(); String pathInContext=getPathInfo()==null?getServletPath():(getServletPath()+getPathInfo()); if (realm != null && auth != null) { try { auth.authenticate(realm, pathInContext, this, null); } catch (Exception e) { Log.ignore(e); } } } if (_userPrincipal == SecurityHandler.__NO_USER) return null; return _userPrincipal; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#getQueryString() */ public String getQueryString() { if (_queryString==null && _uri!=null) { if (_queryEncoding==null) _queryString=_uri.getQuery(); else _queryString=_uri.getQuery(_queryEncoding); } return _queryString; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#isRequestedSessionIdFromCookie() */ public boolean isRequestedSessionIdFromCookie() { return _requestedSessionId!=null && _requestedSessionIdFromCookie; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#isRequestedSessionIdFromUrl() */ public boolean isRequestedSessionIdFromUrl() { return _requestedSessionId!=null && !_requestedSessionIdFromCookie; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#isRequestedSessionIdFromURL() */ public boolean isRequestedSessionIdFromURL() { return _requestedSessionId!=null && !_requestedSessionIdFromCookie; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#isRequestedSessionIdValid() */ public boolean isRequestedSessionIdValid() { if (_requestedSessionId==null) return false; HttpSession session=getSession(false); return (session==null?false:_sessionManager.getIdManager().getClusterId(_requestedSessionId).equals(_sessionManager.getClusterId(session))); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#isSecure() */ public boolean isSecure() { return _connection.isConfidential(this); } /* ------------------------------------------------------------ */ /* * @see javax.servlet.http.HttpServletRequest#isUserInRole(java.lang.String) */ public boolean isUserInRole(String role) { if (_roleMap!=null) { String r=(String)_roleMap.get(role); if (r!=null) role=r; } Principal principal = getUserPrincipal(); if (_userRealm!=null && principal!=null) return _userRealm.isUserInRole(principal, role); return false; } /* ------------------------------------------------------------ */ /* * @see javax.servlet.ServletRequest#removeAttribute(java.lang.String) */ public void removeAttribute(String name) { Object old_value=_attributes==null?null:_attributes.getAttribute(name); if (_attributes!=null) _attributes.removeAttribute(name); if (old_value!=null) { if (_requestAttributeListeners!=null) { final ServletRequestAttributeEvent event = new ServletRequestAttributeEvent(_context,this,name, old_value); final int size=LazyList.size(_requestAttributeListeners); for(int i=0;i 0) { content_type = HttpFields.valueParameters(content_type, null); if (MimeTypes.FORM_ENCODED.equalsIgnoreCase(content_type) && _inputState==__NONE && (HttpMethods.POST.equals(getMethod()) || HttpMethods.PUT.equals(getMethod()))) { int content_length = getContentLength(); if (content_length != 0) { try { int maxFormContentSize=-1; if (_context!=null) maxFormContentSize=_context.getContextHandler().getMaxFormContentSize(); else { Integer size = (Integer)_connection.getConnector().getServer().getAttribute("org.mortbay.jetty.Request.maxFormContentSize"); if (size!=null) maxFormContentSize =size.intValue(); } if (content_length>maxFormContentSize && maxFormContentSize > 0) { throw new IllegalStateException("Form too large"+content_length+">"+maxFormContentSize); } InputStream in = getInputStream(); // Add form params to query params UrlEncoded.decodeTo(in, _baseParameters, encoding,content_length<0?maxFormContentSize:-1); } catch (IOException e) { if (Log.isDebugEnabled()) Log.warn(e); else Log.warn(e.toString()); } } } } if (_parameters==null) _parameters=_baseParameters; else if (_parameters!=_baseParameters) { // Merge parameters (needed if parameters extracted after a forward). Iterator iter = _baseParameters.entrySet().iterator(); while (iter.hasNext()) { Map.Entry entry = (Map.Entry)iter.next(); String name=(String)entry.getKey(); Object values=entry.getValue(); for (int i=0;inull
if {@link #setContext} has not yet * been called. */ public SContext getContext() { return _context; } /* ------------------------------------------------------------ */ /** * Reconstructs the URL the client used to make the request. The returned URL contains a * protocol, server name, port number, and, but it does not include a path. *

* Because this method returns a StringBuffer, not a string, you can modify the * URL easily, for example, to append path and query parameters. * * This method is useful for creating redirect messages and for reporting errors. * * @return "scheme://host:port" */ public StringBuffer getRootURL() { StringBuffer url = new StringBuffer(48); synchronized (url) { String scheme = getScheme(); int port = getServerPort(); url.append(scheme); url.append("://"); url.append(getServerName()); if (port > 0 && ((scheme.equalsIgnoreCase("http") && port != 80) || (scheme.equalsIgnoreCase("https") && port != 443))) { url.append(':'); url.append(port); } return url; } } /* ------------------------------------------------------------ */ /* */ public Attributes getAttributes() { if (_attributes==null) _attributes=new AttributesMap(); return _attributes; } /* ------------------------------------------------------------ */ /* */ public void setAttributes(Attributes attributes) { _attributes=attributes; } /* ------------------------------------------------------------ */ public Continuation getContinuation() { return _continuation; } /* ------------------------------------------------------------ */ public Continuation getContinuation(boolean create) { if (_continuation==null && create) _continuation=getConnection().getConnector().newContinuation(); return _continuation; } /* ------------------------------------------------------------ */ void setContinuation(Continuation cont) { _continuation=cont; } /* ------------------------------------------------------------ */ /** * @return Returns the parameters. */ public MultiMap getParameters() { return _parameters; } /* ------------------------------------------------------------ */ /** * @param parameters The parameters to set. */ public void setParameters(MultiMap parameters) { _parameters= (parameters==null)?_baseParameters:parameters; if (_paramsExtracted && _parameters==null) throw new IllegalStateException(); } /* ------------------------------------------------------------ */ public String toString() { return getMethod()+" "+_uri+" "+getProtocol()+"\n"+ _connection.getRequestFields().toString(); } /* ------------------------------------------------------------ */ public static Request getRequest(HttpServletRequest request) { if (request instanceof Request) return (Request) request; while (request instanceof ServletRequestWrapper) request = (HttpServletRequest)((ServletRequestWrapper)request).getRequest(); if (request instanceof Request) return (Request) request; return HttpConnection.getCurrentConnection().getRequest(); } /* ------------------------------------------------------------ */ public void addEventListener(final EventListener listener) { if (listener instanceof ServletRequestAttributeListener) _requestAttributeListeners= LazyList.add(_requestAttributeListeners, listener); } /* ------------------------------------------------------------ */ public void removeEventListener(final EventListener listener) { _requestAttributeListeners= LazyList.remove(_requestAttributeListeners, listener); } /* ------------------------------------------------------------ */ /** * @param requestListeners {@link LazyList} of {@link ServletRequestListener}s */ public void setRequestListeners(Object requestListeners) { _requestListeners=requestListeners; } /* ------------------------------------------------------------ */ /** * @return {@link LazyList} of {@link ServletRequestListener}s */ public Object takeRequestListeners() { final Object listeners=_requestListeners; _requestListeners=null; return listeners; } /* ------------------------------------------------------------ */ public void saveNewSession(Object key,HttpSession session) { if (_savedNewSessions==null) _savedNewSessions=new HashMap(); _savedNewSessions.put(key,session); } /* ------------------------------------------------------------ */ public HttpSession recoverNewSession(Object key) { if (_savedNewSessions==null) return null; return (HttpSession) _savedNewSessions.get(key); } /* ------------------------------------------------------------ */ /** * @return Returns the userRealm. */ public UserRealm getUserRealm() { return _userRealm; } /* ------------------------------------------------------------ */ /** * @param userRealm The userRealm to set. */ public void setUserRealm(UserRealm userRealm) { _userRealm = userRealm; } /* ------------------------------------------------------------ */ public String getQueryEncoding() { return _queryEncoding; } /* ------------------------------------------------------------ */ /** Set the character encoding used for the query string. * This call will effect the return of getQueryString and getParamaters. * It must be called before any geParameter methods. * * The request attribute "org.mortbay.jetty.Request.queryEncoding" * may be set as an alternate method of calling setQueryEncoding. * * @param queryEncoding */ public void setQueryEncoding(String queryEncoding) { _queryEncoding=queryEncoding; _queryString=null; } /* ------------------------------------------------------------ */ public void setRoleMap(Map map) { _roleMap=map; } /* ------------------------------------------------------------ */ public Map getRoleMap() { return _roleMap; } /* ------------------------------------------------------------ */ public ServletContext getServletContext() { return _context; } /* ------------------------------------------------------------ */ public ServletResponse getServletResponse() { return _connection.getResponse(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy