onion-wownero-blockchain-ex.../ext/crow/crow/common.h

143 lines
3.6 KiB
C
Raw Permalink Normal View History

2016-04-06 06:53:37 +00:00
#pragma once
#include <vector>
#include <string>
#include <stdexcept>
#include <iostream>
2017-12-19 22:31:04 +00:00
#include "crow/utility.h"
2016-04-06 06:53:37 +00:00
namespace crow
{
enum class HTTPMethod
{
2016-09-06 10:34:07 +00:00
#ifndef DELETE
DELETE = 0,
2016-04-06 06:53:37 +00:00
GET,
HEAD,
POST,
PUT,
CONNECT,
OPTIONS,
TRACE,
2017-12-19 22:31:04 +00:00
PATCH = 24,
2016-09-06 10:34:07 +00:00
#endif
Delete = 0,
Get,
Head,
Post,
Put,
Connect,
Options,
Trace,
2017-12-19 22:31:04 +00:00
Patch = 24,
2016-04-06 06:53:37 +00:00
};
inline std::string method_name(HTTPMethod method)
{
switch(method)
{
2016-09-06 10:34:07 +00:00
case HTTPMethod::Delete:
2016-04-06 06:53:37 +00:00
return "DELETE";
2016-09-06 10:34:07 +00:00
case HTTPMethod::Get:
2016-04-06 06:53:37 +00:00
return "GET";
2016-09-06 10:34:07 +00:00
case HTTPMethod::Head:
2016-04-06 06:53:37 +00:00
return "HEAD";
2016-09-06 10:34:07 +00:00
case HTTPMethod::Post:
2016-04-06 06:53:37 +00:00
return "POST";
2016-09-06 10:34:07 +00:00
case HTTPMethod::Put:
2016-04-06 06:53:37 +00:00
return "PUT";
2016-09-06 10:34:07 +00:00
case HTTPMethod::Connect:
2016-04-06 06:53:37 +00:00
return "CONNECT";
2016-09-06 10:34:07 +00:00
case HTTPMethod::Options:
2016-04-06 06:53:37 +00:00
return "OPTIONS";
2016-09-06 10:34:07 +00:00
case HTTPMethod::Trace:
2016-04-06 06:53:37 +00:00
return "TRACE";
2017-12-19 22:31:04 +00:00
case HTTPMethod::Patch:
return "PATCH";
2016-04-06 06:53:37 +00:00
}
return "invalid";
}
enum class ParamType
{
INT,
UINT,
DOUBLE,
STRING,
PATH,
MAX
};
struct routing_params
{
std::vector<int64_t> int_params;
std::vector<uint64_t> uint_params;
std::vector<double> double_params;
std::vector<std::string> string_params;
void debug_print() const
{
std::cerr << "routing_params" << std::endl;
for(auto i:int_params)
std::cerr<<i <<", " ;
std::cerr<<std::endl;
for(auto i:uint_params)
std::cerr<<i <<", " ;
std::cerr<<std::endl;
for(auto i:double_params)
std::cerr<<i <<", " ;
std::cerr<<std::endl;
for(auto& i:string_params)
std::cerr<<i <<", " ;
std::cerr<<std::endl;
}
template <typename T>
T get(unsigned) const;
};
template<>
inline int64_t routing_params::get<int64_t>(unsigned index) const
{
return int_params[index];
}
template<>
inline uint64_t routing_params::get<uint64_t>(unsigned index) const
{
return uint_params[index];
}
template<>
inline double routing_params::get<double>(unsigned index) const
{
return double_params[index];
}
template<>
inline std::string routing_params::get<std::string>(unsigned index) const
{
return string_params[index];
}
}
#ifndef CROW_MSVC_WORKAROUND
2016-09-06 10:34:07 +00:00
constexpr crow::HTTPMethod operator "" _method(const char* str, size_t /*len*/)
2016-04-06 06:53:37 +00:00
{
return
2016-09-06 10:34:07 +00:00
crow::black_magic::is_equ_p(str, "GET", 3) ? crow::HTTPMethod::Get :
crow::black_magic::is_equ_p(str, "DELETE", 6) ? crow::HTTPMethod::Delete :
crow::black_magic::is_equ_p(str, "HEAD", 4) ? crow::HTTPMethod::Head :
crow::black_magic::is_equ_p(str, "POST", 4) ? crow::HTTPMethod::Post :
crow::black_magic::is_equ_p(str, "PUT", 3) ? crow::HTTPMethod::Put :
crow::black_magic::is_equ_p(str, "OPTIONS", 7) ? crow::HTTPMethod::Options :
crow::black_magic::is_equ_p(str, "CONNECT", 7) ? crow::HTTPMethod::Connect :
crow::black_magic::is_equ_p(str, "TRACE", 5) ? crow::HTTPMethod::Trace :
2017-12-19 22:31:04 +00:00
crow::black_magic::is_equ_p(str, "PATCH", 5) ? crow::HTTPMethod::Patch :
2016-04-06 06:53:37 +00:00
throw std::runtime_error("invalid http method");
2016-09-06 10:34:07 +00:00
}
2016-04-06 06:53:37 +00:00
#endif