Modifier and Type | Field and Description |
---|---|
static int |
ADAPTER_NOTES |
protected static boolean |
ALLOW_BACKSLASH |
protected static StringManager |
sm
The string manager for this package.
|
protected static URLEncoder |
urlEncoder
Encoder for the Location URL in HTTP redirects.
|
Constructor and Description |
---|
CoyoteAdapter(Connector connector)
Construct a new CoyoteProcessor associated with the specified connector.
|
Modifier and Type | Method and Description |
---|---|
boolean |
asyncDispatch(Request req,
Response res,
SocketStatus status) |
static boolean |
checkNormalize(MessageBytes uriMB)
Check that the URI is normalized following character decoding.
|
void |
checkRecycled(Request req,
Response res)
Assert that request and response have been recycled.
|
protected void |
convertMB(MessageBytes mb)
Character conversion of the a US-ASCII MessageBytes.
|
protected void |
convertURI(MessageBytes uri,
Request request)
Character conversion of the URI.
|
protected static void |
copyBytes(byte[] b,
int dest,
int src,
int len)
Copy an array of bytes to a different position.
|
void |
errorDispatch(Request req,
Response res) |
boolean |
event(Request req,
Response res,
SocketStatus status)
Event method.
|
String |
getDomain()
Provide the name of the domain to use to register MBeans for components
associated with the connector.
|
void |
log(Request req,
Response res,
long time) |
static boolean |
normalize(MessageBytes uriMB)
This method normalizes "\", "//", "/./" and "/../".
|
protected void |
parsePathParameters(Request req,
Request request)
Extract the path parameters from the request.
|
protected void |
parseSessionCookiesId(Request req,
Request request)
Parse session id in Cookie.
|
protected void |
parseSessionSslId(Request request)
Look for SSL session ID if required.
|
protected boolean |
postParseRequest(Request req,
Request request,
Response res,
Response response)
Perform the necessary processing after the HTTP headers have been parsed
to enable the request/response pair to be passed to the start of the
container pipeline for processing.
|
void |
service(Request req,
Response res)
Call the service method, and notify all listeners
|
public static final int ADAPTER_NOTES
protected static final boolean ALLOW_BACKSLASH
protected static final StringManager sm
protected static URLEncoder urlEncoder
public CoyoteAdapter(Connector connector)
connector
- CoyoteConnector that owns this processorpublic boolean event(Request req, Response res, SocketStatus status)
public boolean asyncDispatch(Request req, Response res, SocketStatus status) throws Exception
asyncDispatch
in interface Adapter
Exception
public void service(Request req, Response res) throws Exception
Adapter
service
in interface Adapter
req
- The request objectres
- The response objectException
- if an error happens during handling of
the request. Common errors are:
public void errorDispatch(Request req, Response res)
errorDispatch
in interface Adapter
public void checkRecycled(Request req, Response res)
Adapter
checkRecycled
in interface Adapter
req
- Requestres
- Responsepublic String getDomain()
Adapter
protected boolean postParseRequest(Request req, Request request, Response res, Response response) throws Exception
req
- The coyote request objectrequest
- The catalina request objectres
- The coyote response objectresponse
- The catalina response objecttrue
if the request should be passed on to the start
of the container pipeline, otherwise false
IOException
- If there is insufficient space in a buffer while
processing headersServletException
- If the supported methods of the target servlet
cannot be determinedException
protected void parsePathParameters(Request req, Request request)
req
- The Coyote request objectrequest
- The Servlet request objectprotected void parseSessionSslId(Request request)
request
- The Servlet request objectprotected void parseSessionCookiesId(Request req, Request request)
req
- The Coyote request objectrequest
- The Servlet request objectprotected void convertURI(MessageBytes uri, Request request) throws Exception
uri
- MessageBytes object containing the URIrequest
- The Servlet request objectIOException
- if a IO exception occurs sending an error to the clientException
protected void convertMB(MessageBytes mb)
mb
- The MessageBytes instance containing the bytes that should be converted to charspublic static boolean normalize(MessageBytes uriMB)
uriMB
- URI to be normalizedfalse
if normalizing this URI would require going
above the root, or if the URI contains a null byte, otherwise
true
public static boolean checkNormalize(MessageBytes uriMB)
uriMB
- URI to be checked (should be chars)false
if sequences that are supposed to be
normalized are still present in the URI, otherwise
true
protected static void copyBytes(byte[] b, int dest, int src, int len)
b
- The bytes that should be copieddest
- Destination offsetsrc
- Source offsetlen
- LengthCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.