Package org.apache.http.message
Class BasicLineParser
java.lang.Object
org.apache.http.message.BasicLineParser
- All Implemented Interfaces:
LineParser
Basic parser for lines in the head section of an HTTP message.
There are individual methods for parsing a request line, a
status line, or a header line.
The lines to parse are passed in memory, the parser does not depend
on any specific IO mechanism.
Instances of this class are stateless and thread-safe.
Derived classes MUST maintain these properties.
Note: This class was created by refactoring parsing code located in various other classes. The author tags from those other classes have been replicated here, although the association with the parsing code taken from there has not been traced.
- Since:
- 4.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final BasicLineParser
Deprecated.static final BasicLineParser
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new line parser for HTTP.BasicLineParser
(ProtocolVersion proto) Creates a new line parser for the given HTTP-like protocol. -
Method Summary
Modifier and TypeMethodDescriptionboolean
hasProtocolVersion
(CharArrayBuffer buffer, ParserCursor cursor) Checks whether there likely is a protocol version in a line.static Header
parseHeader
(String value, LineParser parser) parseHeader
(CharArrayBuffer buffer) Creates a header from a line.static ProtocolVersion
parseProtocolVersion
(String value, LineParser parser) parseProtocolVersion
(CharArrayBuffer buffer, ParserCursor cursor) Parses the textual representation of a protocol version.static RequestLine
parseRequestLine
(String value, LineParser parser) parseRequestLine
(CharArrayBuffer buffer, ParserCursor cursor) Parses a request line.static StatusLine
parseStatusLine
(String value, LineParser parser) parseStatusLine
(CharArrayBuffer buffer, ParserCursor cursor) Parses a status line.
-
Field Details
-
DEFAULT
Deprecated.(4.3) useINSTANCE
A default instance of this class, for use as default or fallback. Note thatBasicLineParser
is not a singleton, there can be many instances of the class itself and of derived classes. The instance here provides non-customized, default behavior. -
INSTANCE
-
-
Constructor Details
-
BasicLineParser
Creates a new line parser for the given HTTP-like protocol.- Parameters:
proto
- a version of the protocol to parse, ornull
for HTTP. The actual version is not relevant, only the protocol name.
-
BasicLineParser
public BasicLineParser()Creates a new line parser for HTTP.
-
-
Method Details
-
parseProtocolVersion
public static ProtocolVersion parseProtocolVersion(String value, LineParser parser) throws ParseException - Throws:
ParseException
-
parseProtocolVersion
public ProtocolVersion parseProtocolVersion(CharArrayBuffer buffer, ParserCursor cursor) throws ParseException Description copied from interface:LineParser
Parses the textual representation of a protocol version. This is needed for parsing request lines (last element) as well as status lines (first element).- Specified by:
parseProtocolVersion
in interfaceLineParser
- Parameters:
buffer
- a buffer holding the protocol version to parsecursor
- the parser cursor containing the current position and the bounds within the buffer for the parsing operation- Returns:
- the parsed protocol version
- Throws:
ParseException
- in case of a parse error
-
hasProtocolVersion
Description copied from interface:LineParser
Checks whether there likely is a protocol version in a line. This method implements a heuristic to check for a likely protocol version specification. It does not guarantee thatLineParser.parseProtocolVersion(org.apache.http.util.CharArrayBuffer, org.apache.http.message.ParserCursor)
would not detect a parse error. This can be used to detect garbage lines before a request or status line.- Specified by:
hasProtocolVersion
in interfaceLineParser
- Parameters:
buffer
- a buffer holding the line to inspectcursor
- the cursor at which to check for a protocol version, or negative for "end of line". Whether the check tolerates whitespace before or after the protocol version is implementation dependent.- Returns:
true
if there is a protocol version at the argument index (possibly ignoring whitespace),false
otherwise
-
parseRequestLine
- Throws:
ParseException
-
parseRequestLine
public RequestLine parseRequestLine(CharArrayBuffer buffer, ParserCursor cursor) throws ParseException Parses a request line.- Specified by:
parseRequestLine
in interfaceLineParser
- Parameters:
buffer
- a buffer holding the line to parsecursor
- the parser cursor containing the current position and the bounds within the buffer for the parsing operation- Returns:
- the parsed request line
- Throws:
ParseException
- in case of a parse error
-
parseStatusLine
- Throws:
ParseException
-
parseStatusLine
public StatusLine parseStatusLine(CharArrayBuffer buffer, ParserCursor cursor) throws ParseException Description copied from interface:LineParser
Parses a status line.- Specified by:
parseStatusLine
in interfaceLineParser
- Parameters:
buffer
- a buffer holding the line to parsecursor
- the parser cursor containing the current position and the bounds within the buffer for the parsing operation- Returns:
- the parsed status line
- Throws:
ParseException
- in case of a parse error
-
parseHeader
- Throws:
ParseException
-
parseHeader
Description copied from interface:LineParser
Creates a header from a line. The full header line is expected here. Header continuation lines must be joined by the caller before invoking this method.- Specified by:
parseHeader
in interfaceLineParser
- Parameters:
buffer
- a buffer holding the full header line. This buffer MUST NOT be re-used afterwards, since the returned object may reference the contents later.- Returns:
- the header in the argument buffer. The returned object MAY be a wrapper for the argument buffer. The argument buffer MUST NOT be re-used or changed afterwards.
- Throws:
ParseException
- in case of a parse error
-
INSTANCE