RequestParser.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9#ifndef _SQUID_SRC_HTTP_ONE_REQUESTPARSER_H
10#define _SQUID_SRC_HTTP_ONE_REQUESTPARSER_H
11
12#include "http/one/Parser.h"
13#include "http/RequestMethod.h"
14
15namespace Parser {
16class Tokenizer;
17}
18
19namespace Http {
20namespace One {
21
31{
32public:
33 RequestParser() = default;
34 RequestParser(bool preserveParsed) { preserveParsed_ = preserveParsed; }
35 RequestParser(const RequestParser &) = default;
39 ~RequestParser() override {}
40
41 /* Http::One::Parser API */
42 void clear() override {*this = RequestParser();}
44 bool parse(const SBuf &aBuf) override;
45
47 const HttpRequestMethod & method() const {return method_;}
48
50 const SBuf &requestUri() const {return uri_;}
51
53 const SBuf &parsed() const { Must(preserveParsed_); return parsed_; }
54
55private:
56 void skipGarbageLines();
59 bool doParse(const SBuf &aBuf);
60
61 /* all these return false and set parseStatusCode on parsing failures */
65 bool skipDelimiter(const size_t count, const char *where);
67
68 bool http0() const {return !msgProtocol_.major;}
70
73
76
80 bool preserveParsed_ = false;
81};
82
83} // namespace One
84} // namespace Http
85
86#endif /* _SQUID_SRC_HTTP_ONE_REQUESTPARSER_H */
87
#define Must(condition)
Definition: TextException.h:75
unsigned int major
major version number
optimized set of C chars, with quick membership test and merge support
Definition: CharacterSet.h:18
SBuf::size_type size_type
Definition: Parser.h:43
AnyP::ProtocolVersion msgProtocol_
what protocol label has been found in the first line (if any)
Definition: Parser.h:152
::Parser::Tokenizer Tokenizer
Definition: Parser.h:44
bool parseMethodField(Tokenizer &)
void clear() override
Definition: RequestParser.h:42
bool doParse(const SBuf &aBuf)
called from parse() to do the parsing
Http1::Parser::size_type firstLineSize() const override
size in bytes of the first line including CRLF terminator
static const CharacterSet & RequestTargetCharacters()
characters which Squid will accept in the HTTP request-target (URI)
RequestParser(const RequestParser &)=default
bool parse(const SBuf &aBuf) override
const SBuf & requestUri() const
the request-line URI if this is a request message, or an empty string.
Definition: RequestParser.h:50
bool skipDelimiter(const size_t count, const char *where)
bool parseHttpVersionField(Tokenizer &)
HttpRequestMethod method_
what request method has been found on the first line
Definition: RequestParser.h:72
RequestParser(RequestParser &&)=default
bool parseUriField(Tokenizer &)
SBuf uri_
raw copy of the original client request-line URI field
Definition: RequestParser.h:75
RequestParser(bool preserveParsed)
Definition: RequestParser.h:34
const SBuf & parsed() const
the accumulated parsed bytes
Definition: RequestParser.h:53
const HttpRequestMethod & method() const
the HTTP method if this is a request message
Definition: RequestParser.h:47
RequestParser & operator=(const RequestParser &)=default
bool preserveParsed_
whether to accumulate parsed bytes (in parsed_)
Definition: RequestParser.h:80
bool skipTrailingCrs(Tokenizer &tok)
Parse CRs at the end of request-line, just before the terminating LF.
Definition: SBuf.h:94
Definition: forward.h:18
Generic protocol-agnostic parsing tools.
Definition: RequestParser.h:15
Definition: parse.c:160

 

Introduction

Documentation

Support

Miscellaneous

Web Site Translations

Mirrors