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.
|
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.
|
java.lang.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 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.
|
boolean |
prepare(Request req,
Response res)
Prepare the given request/response for processing.
|
void |
service(Request req,
Response res)
Service method.
|
public static final int ADAPTER_NOTES
protected static final boolean ALLOW_BACKSLASH
protected static final StringManager sm
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 java.lang.Exception
asyncDispatch
in interface Adapter
java.lang.Exception
public void service(Request req, Response res) throws java.lang.Exception
service
in interface Adapter
req
- The request objectres
- The response objectjava.lang.Exception
- if an error happens during handling of
the request. Common errors are:
public boolean prepare(Request req, Response res) throws java.io.IOException, ServletException
Adapter
prepare
in interface Adapter
req
- The request objectres
- The response objecttrue
if processing can continue, otherwise
false
in which case an appropriate error will have
been set on the responsejava.io.IOException
ServletException
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 java.lang.String getDomain()
Adapter
protected boolean postParseRequest(Request req, Request request, Response res, Response response) throws java.io.IOException, ServletException
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
java.io.IOException
- If there is insufficient space in a buffer while
processing headersServletException
- If the supported methods of the target servlet
can not be determinedprotected void parsePathParameters(Request req, Request request)
req
- request
- protected void parseSessionSslId(Request request)
protected void parseSessionCookiesId(Request request)
protected void convertURI(MessageBytes uri, Request request) throws java.io.IOException
java.io.IOException
protected void convertMB(MessageBytes mb)
public 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)
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.