RESTinio
accept-encoding.hpp
Go to the documentation of this file.
1 /*
2  * RESTinio
3  */
4 
12 #pragma once
13 
15 
16 namespace restinio
17 {
18 
19 namespace http_field_parsers
20 {
21 
22 //
23 // accept_encoding_value_t
24 //
42 {
43  struct item_t
44  {
45  std::string content_coding;
47  };
48 
49  using item_container_t = std::vector< item_t >;
50 
52 
59  static auto
61  {
62  return produce< accept_encoding_value_t >(
63  maybe_empty_comma_separated_list_p< item_container_t >(
64  produce< item_t >(
67  )
69  );
70  }
71 
80  {
82  }
83 };
84 
85 } /* namespace http_field_parsers */
86 
87 } /* namespace restinio */
88 
restinio::http_field_parsers::accept_encoding_value_t::try_parse
static RESTINIO_NODISCARD expected_t< accept_encoding_value_t, restinio::easy_parser::parse_error_t > try_parse(string_view_t what)
An attempt to parse Accept-Encoding HTTP-field.
Definition: accept-encoding.hpp:79
RESTINIO_NODISCARD
#define RESTINIO_NODISCARD
Definition: compiler_features.hpp:33
restinio::http_field_parsers::token_p
RESTINIO_NODISCARD auto token_p() noexcept
A factory function to create a token_producer.
Definition: basics.hpp:985
restinio::string_view_t
nonstd::string_view string_view_t
Definition: string_view.hpp:19
restinio::http_field_parsers::accept_encoding_value_t::item_t::content_coding
std::string content_coding
Definition: accept-encoding.hpp:45
restinio::http_field_parsers::accept_encoding_value_t::item_container_t
std::vector< item_t > item_container_t
Definition: accept-encoding.hpp:49
restinio::http_field_parsers::accept_encoding_value_t::item_t
Definition: accept-encoding.hpp:44
restinio::http_field_parsers::qvalue_t::maximum
static constexpr qvalue_details::extremum_max_t maximum
The indicator that tells that new qvalue object should have the maximal allowed value.
Definition: basics.hpp:147
restinio::http_field_parsers::accept_encoding_value_t::item_t::weight
qvalue_t weight
Definition: accept-encoding.hpp:46
restinio::easy_parser::try_parse
RESTINIO_NODISCARD expected_t< typename Producer::result_type, parse_error_t > try_parse(string_view_t from, Producer producer)
Perform the parsing of the specified content by using specified value producer.
Definition: easy_parser.hpp:5042
restinio::http_field_parsers::qvalue_t
A class for holding the parsed value of qvalue from RFC7231.
Definition: basics.hpp:136
restinio::http_field_parsers::weight_p
RESTINIO_NODISCARD auto weight_p() noexcept
A factory function to create a producer for weight parameter.
Definition: basics.hpp:1277
restinio::expected_t
nonstd::expected< T, E > expected_t
Definition: expected.hpp:22
basics.hpp
Utilities for parsing values of http-fields.
restinio::http_field_parsers::accept_encoding_value_t::codings
item_container_t codings
Definition: accept-encoding.hpp:51
restinio::http_field_parsers::accept_encoding_value_t::make_parser
static RESTINIO_NODISCARD auto make_parser()
A factory function for a parser of Accept-Encoding value.
Definition: accept-encoding.hpp:60
restinio
Definition: asio_include.hpp:21
restinio::easy_parser::to_lower
RESTINIO_NODISCARD auto to_lower() noexcept
A factory function to create a to_lower_transformer.
Definition: easy_parser.hpp:4610
restinio::http_field_parsers::accept_encoding_value_t
Tools for working with the value of Accept-Encoding HTTP-field.
Definition: accept-encoding.hpp:42
restinio::easy_parser::maybe
RESTINIO_NODISCARD auto maybe(Clauses &&... clauses)
A factory function to create an optional clause.
Definition: easy_parser.hpp:3634