RESTinio
Loading...
Searching...
No Matches
content-disposition.hpp
Go to the documentation of this file.
1/*
2 * RESTinio
3 */
4
11
12#pragma once
13
15
17
18namespace restinio
19{
20
21namespace http_field_parsers
22{
23
25{
26
27namespace ep_impl = restinio::easy_parser::impl;
28namespace hfp_impl = restinio::http_field_parsers::impl;
29namespace hfp_details = restinio::http_field_parsers::details;
30
31//
32// regular_token_producer_t
33//
46 : public hfp_impl::token_producer_t
47{
48public:
49 [[nodiscard]]
51 try_parse( ep_impl::source_t & from ) const
52 {
53 ep_impl::source_t::content_consumer_t consumer{ from };
54 const auto result = hfp_impl::token_producer_t::try_parse( from );
55 if( result )
56 {
57 if( '*' == *(result->rbegin()) )
58 {
59 // Regular token can't have the trailing '*'.
60 return make_unexpected( parse_error_t{
61 consumer.started_at() + result->size() - 1,
62 error_reason_t::unexpected_character
63 } );
64 }
65
66 consumer.commit();
67 }
68
69 return result;
70 }
71};
72
73//
74// ext_token_producer_t
75//
88 : public hfp_impl::token_producer_t
89{
90public:
91 [[nodiscard]]
93 try_parse( ep_impl::source_t & from ) const
94 {
95 ep_impl::source_t::content_consumer_t consumer{ from };
96 const auto result = hfp_impl::token_producer_t::try_parse( from );
97 if( result )
98 {
99 if( '*' != *(result->rbegin()) )
100 {
101 // Extended token should have the trailing '*'.
102 return make_unexpected( parse_error_t{
103 consumer.started_at(),
104 error_reason_t::pattern_not_found
105 } );
106 }
107
108 consumer.commit();
109 }
110
111 return result;
112 }
113};
114
115//
116// mime_charsetc_predicate_t
117//
127{
128 [[nodiscard]]
129 bool
130 operator()( const char actual ) const noexcept
131 {
132 return hfp_impl::is_alpha(actual)
133 || hfp_impl::is_digit(actual)
134 || '!' == actual
135 || '#' == actual
136 || '$' == actual
137 || '%' == actual
138 || '&' == actual
139 || '+' == actual
140 || '-' == actual
141 || '^' == actual
142 || '_' == actual
143 || '`' == actual
144 || '{' == actual
145 || '}' == actual
146 || '~' == actual
147 ;
148 }
149};
150
151//
152// mime_charsetc_symbol_producer
153//
161[[nodiscard]]
162inline auto
164{
165 return ep_impl::symbol_producer_template_t< mime_charsetc_predicate_t >{};
166}
167
168//
169// language_predicate_t
170//
185{
186 [[nodiscard]]
187 bool
188 operator()( const char actual ) const noexcept
189 {
190 return hfp_impl::is_alpha(actual)
191 || hfp_impl::is_digit(actual)
192 || '-' == actual
193 ;
194 }
195};
196
197//
198// language_symbol_producer
199//
205[[nodiscard]]
206inline auto
208{
209 return ep_impl::symbol_producer_template_t< language_predicate_t >{};
210}
211
212//
213// attr_char_predicate_t
214//
224{
225 [[nodiscard]]
226 bool
227 operator()( const char actual ) const noexcept
228 {
229 return hfp_impl::is_alpha(actual)
230 || hfp_impl::is_digit(actual)
231 || '!' == actual
232 || '#' == actual
233 || '$' == actual
234 || '&' == actual
235 || '+' == actual
236 || '-' == actual
237 || '.' == actual
238 || '^' == actual
239 || '_' == actual
240 || '`' == actual
241 || '|' == actual
242 || '~' == actual
243 ;
244 }
245};
246
247//
248// attr_char_symbol_producer
249//
257[[nodiscard]]
258inline auto
260{
261 return ep_impl::symbol_producer_template_t< attr_char_predicate_t >{};
262}
263
264//
265// ext_parameter_value_producer
266//
297[[nodiscard]]
298inline auto
300{
303 symbol_p( '\'' ) >> to_container(),
305 symbol_p( '\'' ) >> to_container(),
306 repeat( 0, N,
309 hfp_details::pct_encoded_symbols_p() >>
310 hfp_details::pct_encoded_symbols_consumer_t{} )
311 )
312 );
313}
314
315} /* namespace content_disposition_details */
316
317//
318// content_disposition_value_t
319//
337{
339
341
342 std::string value;
344
350 [[nodiscard]]
351 static auto
353 {
354 using namespace content_disposition_details;
355
357 token_p() >> to_lower()
360 repeat( 0, N,
362 ows(),
363 symbol(';'),
364 ows(),
366 sequence(
367 regular_token_producer_t{}
368 >> to_lower() >> &parameter_t::first,
369 symbol('='),
371 token_p() >> &parameter_t::second,
372 quoted_string_p() >> &parameter_t::second
373 )
374 ),
375 sequence(
376 ext_token_producer_t{}
377 >> to_lower() >> &parameter_t::first,
378 symbol('='),
379 ext_parameter_value_p() >> &parameter_t::second
380 )
381 )
382 ) >> to_container()
383 )
385 );
386 }
387
393 [[nodiscard]]
396 {
398 }
399};
400
401} /* namespace http_field_parsers */
402
403} /* namespace restinio */
404
Utilities for parsing values of http-fields.
Information about parsing error.
A producer for token that is an "extended parameter name" in sense of RCF6266 and RCF5987.
expected_t< result_type, parse_error_t > try_parse(ep_impl::source_t &from) const
A producer for token that is a "regular parameter name" in sense of RCF6266 and RCF5987.
expected_t< result_type, parse_error_t > try_parse(ep_impl::source_t &from) const
auto to_container()
A factory function to create a to_container_consumer.
auto symbol(char expected) noexcept
A factory function to create a clause that expects the speficied symbol, extracts it and then skips i...
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.
auto symbol_p(char expected) noexcept
A factory function to create a symbol_producer.
auto to_lower() noexcept
A factory function to create a to_lower_transformer.
auto alternatives(Clauses &&... clauses)
A factory function to create an alternatives clause.
auto produce(Clauses &&... clauses)
A factory function to create a producer that creates an instance of the target type by using specifie...
constexpr std::size_t N
A special marker that means infinite repetitions.
auto repeat(std::size_t min_occurences, std::size_t max_occurences, Clauses &&... clauses)
A factory function to create repetitor of subclauses.
auto sequence(Clauses &&... clauses)
A factory function to create a sequence of subclauses.
auto ext_parameter_value_p()
A producer for an "extended parameter value" in sense of RCF6266 and RCF5987.
auto language_symbol_p()
A factory for producer that extracts language symbols.
auto mime_charsetc_symbol_p()
A factory for producer that extracts mime-charsetc symbols.
auto attr_char_symbol_p()
A factory for producer that extracts attr-char symbols.
auto token_p() noexcept
A factory function to create a token_producer.
Definition basics.hpp:987
auto ows() noexcept
A factory function to create an OWS clause.
Definition basics.hpp:941
std::pair< std::string, std::string > parameter_with_mandatory_value_t
A type that describes a parameter with mandatory value.
Definition basics.hpp:1523
auto quoted_string_p() noexcept
A factory function to create a quoted_string_producer.
Definition basics.hpp:1014
std::vector< parameter_with_mandatory_value_t > parameter_with_mandatory_value_container_t
A type of container for parameters with mandatory values.
Definition basics.hpp:1533
std::string_view string_view_t
nonstd::expected< T, E > expected_t
Definition expected.hpp:18
Stuff related to percent-encoded symbols.
A preducate for symbol_producer_template that checks that a symbol is attr-char symbol from RCF5987.
A preducate for symbol_producer_template that checks that a symbol is language symbol from RCF5646.
A preducate for symbol_producer_template that checks that a symbol is mime-charsetc symbol from RCF59...
Tools for working with the value of Content-Disposition HTTP-field.
static auto make_parser()
A factory function for a parser of Content-Disposition value.
static expected_t< content_disposition_value_t, restinio::easy_parser::parse_error_t > try_parse(string_view_t what)
An attempt to parse Content-Disposition HTTP-field.
parameter_with_mandatory_value_container_t parameter_container_t