RESTinio
accept-charset.hpp
Go to the documentation of this file.
1 /*
2  * RESTinio
3  */
4 
5 /*!
6  * @file
7  * @brief Stuff related to value of Accept-Charset HTTP-field.
8  *
9  * @since v.0.6.2
10  */
11 
12 #pragma once
13 
14 #include <restinio/helpers/http_field_parsers/basics.hpp>
15 
16 namespace restinio
17 {
18 
20 {
21 
22 //
23 // accept_charset_value_t
24 //
25 /*!
26  * @brief Tools for working with the value of Accept-Charset HTTP-field.
27  *
28  * This struct represents parsed value of HTTP-field Accept-Charset
29  * (see https://tools.ietf.org/html/rfc7231#section-5.3.3):
30 @verbatim
31 Accept-Charset = 1#( ( charset / "*" ) [ weight ] )
32 charset = token
33 @endverbatim
34  *
35  * @note
36  * Values of `charset` are converted to lower case during the parsing.
37  *
38  * @since v.0.6.2
39  */
41 {
42  struct item_t
43  {
46  };
47 
49 
51 
52  /*!
53  * @brief A factory function for a parser of Accept-Charset value.
54  *
55  * @since v.0.6.2
56  */
58  static auto
60  {
63  produce< item_t >(
64  token_p() >> to_lower() >> &item_t::charset,
65  maybe( weight_p() >> &item_t::weight )
66  )
68  );
69  }
70 
71  /*!
72  * @brief An attempt to parse Accept-Charset HTTP-field.
73  *
74  * @since v.0.6.2
75  */
79  {
81  }
82 };
83 
84 } /* namespace http_field_parsers */
85 
86 } /* namespace restinio */
RESTINIO_NODISCARD auto try_parse_field(const generic_request_t< Extra_Data > &req, http_field_t field_id, string_view_t default_value=string_view_t{})
A helper function for extraction and parsing a value of HTTP-field.
static RESTINIO_NODISCARD expected_t< accept_charset_value_t, restinio::easy_parser::parse_error_t > try_parse(string_view_t what)
An attempt to parse Accept-Charset HTTP-field.
std::enable_if< std::is_same< Parameter_Container, query_string_params_t >::value||std::is_same< Parameter_Container, router::route_params_t >::value, optional_t< Value_Type > >::type opt_value(const Parameter_Container &params, string_view_t key)
Gets the value of a parameter specified by key wrapped in optional_t<Value_Type> if parameter exists ...
Definition: value_or.hpp:64