7#include "crow/utility.h"
42 inline std::string method_name(HTTPMethod method)
46 case HTTPMethod::Delete:
50 case HTTPMethod::Head:
52 case HTTPMethod::Post:
56 case HTTPMethod::Connect:
58 case HTTPMethod::Options:
60 case HTTPMethod::Trace:
62 case HTTPMethod::Patch:
64 case HTTPMethod::Purge:
85 std::vector<int64_t> int_params;
86 std::vector<uint64_t> uint_params;
87 std::vector<double> double_params;
88 std::vector<std::string> string_params;
90 void debug_print()
const
92 std::cerr <<
"routing_params" << std::endl;
93 for(
auto i:int_params)
96 for(
auto i:uint_params)
99 for(
auto i:double_params)
100 std::cerr<<i <<
", " ;
101 std::cerr<<std::endl;
102 for(
auto& i:string_params)
103 std::cerr<<i <<
", " ;
104 std::cerr<<std::endl;
107 template <
typename T>
108 T get(
unsigned)
const;
113 inline int64_t routing_params::get<int64_t>(
unsigned index)
const
115 return int_params[index];
119 inline uint64_t routing_params::get<uint64_t>(
unsigned index)
const
121 return uint_params[index];
125 inline double routing_params::get<double>(
unsigned index)
const
127 return double_params[index];
131 inline std::string routing_params::get<std::string>(
unsigned index)
const
133 return string_params[index];
137#ifndef CROW_MSVC_WORKAROUND
138constexpr crow::HTTPMethod
operator "" _method(
const char* str,
size_t )
141 crow::black_magic::is_equ_p(str,
"GET", 3) ? crow::HTTPMethod::Get :
142 crow::black_magic::is_equ_p(str,
"DELETE", 6) ? crow::HTTPMethod::Delete :
143 crow::black_magic::is_equ_p(str,
"HEAD", 4) ? crow::HTTPMethod::Head :
144 crow::black_magic::is_equ_p(str,
"POST", 4) ? crow::HTTPMethod::Post :
145 crow::black_magic::is_equ_p(str,
"PUT", 3) ? crow::HTTPMethod::Put :
146 crow::black_magic::is_equ_p(str,
"OPTIONS", 7) ? crow::HTTPMethod::Options :
147 crow::black_magic::is_equ_p(str,
"CONNECT", 7) ? crow::HTTPMethod::Connect :
148 crow::black_magic::is_equ_p(str,
"TRACE", 5) ? crow::HTTPMethod::Trace :
149 crow::black_magic::is_equ_p(str,
"PATCH", 5) ? crow::HTTPMethod::Patch :
150 crow::black_magic::is_equ_p(str,
"PURGE", 5) ? crow::HTTPMethod::Purge :
151 throw std::runtime_error(
"invalid http method");