RESTinio
sample/try_parse_query_string/main.cpp
#include <iostream>
#include <string>
#include <iterator>
#include <restinio/all.hpp>
using namespace std::string_literals;
// Type of query-string parser.
using query_string_parser_type =
// Create an appropriate query-string parser.
query_string_parser_type create_parser( int argc, char ** argv )
{
if( argc < 2 || "restinio_defaults"s == argv[ 1 ] )
return []( restinio::string_view_t what ) {
};
if( 2 == argc )
{
if( "javascript_compatible"s == argv[ 1 ] )
return []( restinio::string_view_t what ) {
};
if( "x_www_form_urlencoded"s == argv[ 1 ] )
return []( restinio::string_view_t what ) {
};
if( "relaxed"s == argv[ 1 ] ) {
return []( restinio::string_view_t what ) {
};
}
}
throw std::runtime_error{
"one optional argument expected: "
"restinio_defaults, javascript_compatible, x_www_form_urlencoded or "
"relaxed"
};
}
// Create request handler.
query_string_parser_type parser )
{
if( restinio::http_method_get() == req->header().method() )
{
fmt::basic_memory_buffer< char, 1u > response_body;
auto response_body_inserter = std::back_inserter( response_body );
fmt::format_to( response_body_inserter, "GET request to '{}'\n",
req->header().request_target() );
// Request header fields.
fmt::format_to( response_body_inserter, "HTTP-fields ({}):\n",
req->header().fields_count() );
for( const auto & f : req->header() )
{
fmt::format_to( response_body_inserter, "{}: {}\n",
f.name(), f.value() );
}
// An attempt to parse query-string.
const auto qs_parse_result = parser( req->header().query() );
if( !qs_parse_result )
{
// Return a negative response.
req->create_response( restinio::status_bad_request() )
.append_header( restinio::http_field::server, "RESTinio query string params server" )
.append_header_date_field()
.append_header( restinio::http_field::content_type, "text/plain; charset=utf-8" )
.set_body( "Unable to parse query-string: " +
qs_parse_result.error().description() )
.done();
}
// Handle query-string params.
const auto & qp = *qs_parse_result;
if( qp.empty() )
{
fmt::format_to( response_body_inserter, "No query parameters." );
}
else
{
fmt::format_to( response_body_inserter,
"Query params ({}):\n", qp.size() );
for( const auto p : qp )
{
fmt::format_to( response_body_inserter, "'{}' => '{}'\n",
p.first, p.second );
}
}
if( qp.has( "debug" ) && qp[ "debug" ] == "true" )
{
std::cout.write( response_body.data(), response_body.size() );
std::cout << std::flush;
}
req->create_response()
.append_header( restinio::http_field::server, "RESTinio query string params server" )
.append_header_date_field()
.append_header( restinio::http_field::content_type, "text/plain; charset=utf-8" )
.set_body( std::move(response_body) )
.done();
}
}
int main( int argc, char ** argv )
{
try
{
restinio::on_thread_pool( std::thread::hardware_concurrency() )
.port( 8080 )
.address( "localhost" )
.request_handler(
[parser = create_parser( argc, argv )]( const auto & req ) {
return handler( req, parser );
} )
);
}
catch( const std::exception & ex )
{
std::cerr << "Error: " << ex.what() << std::endl;
return 1;
}
return 0;
}
Type that indicates a failure of an attempt of query-string parsing.
Parameters container for query strings parameters.
Definition: uri_helpers.hpp:43
run_on_thread_pool_settings_t< Traits > on_thread_pool(std::size_t pool_size)
A special marker for the case when http_server must be run on an thread pool.
RESTINIO_NODISCARD constexpr request_handling_status_t request_rejected() noexcept
nonstd::string_view string_view_t
Definition: string_view.hpp:19
void run(asio_ns::io_context &ioctx, run_on_this_thread_settings_t< Traits > &&settings)
Helper function for running http server until ctrl+c is hit.
request_handling_status_t
Request handling status.
RESTINIO_NODISCARD expected_t< query_string_params_t, parse_query_failure_t > try_parse_query(string_view_t original_query_string)
Helper function for parsing query string.
RESTINIO_NODISCARD constexpr request_handling_status_t request_accepted() noexcept
nonstd::expected< T, E > expected_t
Definition: expected.hpp:22
http_status_line_t status_bad_request()
std::shared_ptr< request_t > request_handle_t
An alias for handle for incoming request without additional extra-data.
Traits for parsing a query string in JavaScript-compatible mode.
Traits for parsing a query string in a very relaxed mode.
Traits for the default RESTinio parser for query string.
Traits for parsing a query string in application/x-www-form-urlencoded mode.