Kea 2.7.1
http_message.h
Go to the documentation of this file.
1// Copyright (C) 2017-2018 Internet Systems Consortium, Inc. ("ISC")
2//
3// This Source Code Form is subject to the terms of the Mozilla Public
4// License, v. 2.0. If a copy of the MPL was not distributed with this
5// file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7#ifndef HTTP_MESSAGE_H
8#define HTTP_MESSAGE_H
9
11#include <http/http_header.h>
12#include <http/http_types.h>
13#include <map>
14#include <set>
15#include <cstdint>
16#include <string>
17
18namespace isc {
19namespace http {
20
23public:
24 HttpMessageError(const char* file, size_t line, const char* what) :
25 isc::Exception(file, line, what) { };
26};
27
31public:
32 HttpMessageNonExistingHeader(const char* file, size_t line,
33 const char* what) :
34 HttpMessageError(file, line, what) { };
35};
36
37
63public:
64
70
74 explicit HttpMessage(const Direction& direction);
75
77 virtual ~HttpMessage();
78
81 return (direction_);
82 }
83
89 void setDirection(const Direction& direction) {
90 direction_ = direction;
91 }
92
100
108 void requireHeader(const std::string& header_name);
109
118 void requireHeaderValue(const std::string& header_name,
119 const std::string& header_value);
120
127 bool requiresBody() const;
128
134 virtual void create() = 0;
135
147 virtual void finalize() = 0;
148
150 virtual void reset() = 0;
151
154
163 HttpHeaderPtr getHeader(const std::string& header_name) const;
164
170 std::string getHeaderValue(const std::string& header_name) const;
171
178 uint64_t getHeaderValueAsUint64(const std::string& header_name) const;
179
181 virtual std::string getBody() const = 0;
182
187 virtual std::string toString() const = 0;
188
194 bool isFinalized() const {
195 return (finalized_);
196 }
197
198protected:
199
203 void checkCreated() const;
204
208 void checkFinalized() const;
209
223 template<typename T>
224 bool inRequiredSet(const T& element,
225 const std::set<T>& element_set) const {
226 return (element_set.empty() || element_set.count(element) > 0);
227 }
228
231
235 std::set<HttpVersion> required_versions_;
236
239
241 typedef std::map<std::string, HttpHeaderPtr> HttpHeaderMap;
242
251
254
257
260};
261
262} // end of namespace isc::http
263} // end of namespace isc
264
265#endif // HTTP_MESSAGE_H
int version()
returns Kea hooks version.
This is a base class for exceptions thrown from the DNS library module.
virtual const char * what() const
Returns a C-style character string of the cause of the exception.
Generic exception thrown by HttpMessage class.
HttpMessageError(const char *file, size_t line, const char *what)
Exception thrown when attempt is made to retrieve a non-existing header.
HttpMessageNonExistingHeader(const char *file, size_t line, const char *what)
Base class for HttpRequest and HttpResponse.
Direction direction_
Message direction (inbound or outbound).
HttpHeaderMap headers_
Parsed HTTP headers.
virtual std::string toString() const =0
Returns HTTP message as text.
void requireHeaderValue(const std::string &header_name, const std::string &header_value)
Specifies a required value of a header in the message.
bool requiresBody() const
Checks if the body is required for the HTTP message.
HttpVersion http_version_
HTTP version numbers.
HttpVersion getHttpVersion() const
Returns HTTP version number (major and minor).
uint64_t getHeaderValueAsUint64(const std::string &header_name) const
Returns a value of the specified HTTP header as number.
void checkFinalized() const
Checks if the finalize was called.
void checkCreated() const
Checks if the create was called.
virtual void create()=0
Reads parsed message from the context, validates the message and stores parsed information.
bool created_
Flag indicating whether create was called.
HttpMessage(const Direction &direction)
Constructor.
std::set< HttpVersion > required_versions_
Set of required HTTP versions.
std::map< std::string, HttpHeaderPtr > HttpHeaderMap
Map of HTTP headers indexed by lower case header names.
virtual ~HttpMessage()
Destructor.
virtual void finalize()=0
Complete parsing HTTP message or creating an HTTP outbound message.
Direction getDirection() const
Returns HTTP message direction.
bool inRequiredSet(const T &element, const std::set< T > &element_set) const
Checks if the set is empty or the specified element belongs to this set.
std::string getHeaderValue(const std::string &header_name) const
Returns a value of the specified HTTP header.
bool isFinalized() const
Checks if the message has been successfully finalized.
HttpHeaderPtr getHeader(const std::string &header_name) const
Returns object encapsulating HTTP header.
virtual void reset()=0
Reset the state of the object.
Direction
Specifies the direction of the HTTP message.
void requireHeader(const std::string &header_name)
Specifies a required HTTP header for the HTTP message.
bool finalized_
Flag indicating whether finalize was called.
void requireHttpVersion(const HttpVersion &version)
Specifies HTTP version allowed.
void setDirection(const Direction &direction)
Sets direction for the HTTP message.
HttpHeaderMap required_headers_
Map holding required HTTP headers.
virtual std::string getBody() const =0
Returns HTTP message body as string.
boost::shared_ptr< HttpHeader > HttpHeaderPtr
Pointer to the HttpHeader class.
Definition http_header.h:65
Defines the logger used by the top-level component of kea-lfc.
HTTP protocol version.
Definition http_types.h:14