2014-04-02 16:38:08 +00:00
|
|
|
#pragma once
|
|
|
|
|
2014-07-08 09:29:36 +00:00
|
|
|
#include <cstdint>
|
2014-04-13 02:24:06 +00:00
|
|
|
#include <stdexcept>
|
2014-09-06 16:24:45 +00:00
|
|
|
#include <tuple>
|
|
|
|
#include <type_traits>
|
2015-02-20 02:47:51 +00:00
|
|
|
#include <cstring>
|
2022-06-06 14:17:36 +00:00
|
|
|
#include <cctype>
|
2015-02-20 02:47:51 +00:00
|
|
|
#include <functional>
|
2016-09-06 00:39:45 +00:00
|
|
|
#include <string>
|
2022-06-06 15:14:37 +00:00
|
|
|
#include <sstream>
|
2021-10-30 23:50:19 +00:00
|
|
|
#include <unordered_map>
|
2022-05-28 13:39:33 +00:00
|
|
|
#include <random>
|
2014-04-13 02:24:06 +00:00
|
|
|
|
2016-09-21 14:11:06 +00:00
|
|
|
#include "crow/settings.h"
|
2016-09-09 16:16:05 +00:00
|
|
|
|
2022-06-21 12:38:22 +00:00
|
|
|
#ifdef CROW_CAN_USE_CPP17
|
|
|
|
#include <filesystem>
|
|
|
|
#endif
|
|
|
|
|
2022-02-10 21:56:30 +00:00
|
|
|
// TODO(EDev): Adding C++20's [[likely]] and [[unlikely]] attributes might be useful
|
|
|
|
#if defined(__GNUG__) || defined(__clang__)
|
|
|
|
#define CROW_LIKELY(X) __builtin_expect(!!(X), 1)
|
|
|
|
#define CROW_UNLIKELY(X) __builtin_expect(!!(X), 0)
|
|
|
|
#else
|
|
|
|
#define CROW_LIKELY(X) (X)
|
|
|
|
#define CROW_UNLIKELY(X) (X)
|
|
|
|
#endif
|
|
|
|
|
2014-04-26 17:19:59 +00:00
|
|
|
namespace crow
|
2014-04-02 16:38:08 +00:00
|
|
|
{
|
2022-03-23 22:55:46 +00:00
|
|
|
/// @cond SKIP
|
2014-12-11 16:38:57 +00:00
|
|
|
namespace black_magic
|
|
|
|
{
|
2015-02-20 02:47:51 +00:00
|
|
|
#ifndef CROW_MSVC_WORKAROUND
|
2022-01-11 17:27:41 +00:00
|
|
|
/// Out of Range Exception for const_str
|
2014-12-11 16:38:57 +00:00
|
|
|
struct OutOfRange
|
|
|
|
{
|
2016-08-27 09:03:49 +00:00
|
|
|
OutOfRange(unsigned /*pos*/, unsigned /*length*/) {}
|
2014-12-11 16:38:57 +00:00
|
|
|
};
|
2022-01-11 17:27:41 +00:00
|
|
|
/// Helper function to throw an exception if i is larger than len
|
2021-11-25 11:45:38 +00:00
|
|
|
constexpr unsigned requires_in_range(unsigned i, unsigned len)
|
2014-12-11 16:38:57 +00:00
|
|
|
{
|
|
|
|
return i >= len ? throw OutOfRange(i, len) : i;
|
|
|
|
}
|
|
|
|
|
2020-11-18 22:13:57 +00:00
|
|
|
/// A constant string implementation.
|
2014-12-11 16:38:57 +00:00
|
|
|
class const_str
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
const char* const begin_;
|
2014-12-11 16:38:57 +00:00
|
|
|
unsigned size_;
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
public:
|
|
|
|
template<unsigned N>
|
|
|
|
constexpr const_str(const char (&arr)[N]):
|
|
|
|
begin_(arr), size_(N - 1)
|
|
|
|
{
|
|
|
|
static_assert(N >= 1, "not a string literal");
|
|
|
|
}
|
|
|
|
constexpr char operator[](unsigned i) const
|
|
|
|
{
|
|
|
|
return requires_in_range(i, size_), begin_[i];
|
2014-12-11 16:38:57 +00:00
|
|
|
}
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
constexpr operator const char*() const
|
|
|
|
{
|
|
|
|
return begin_;
|
2014-12-11 16:38:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constexpr const char* begin() const { return begin_; }
|
|
|
|
constexpr const char* end() const { return begin_ + size_; }
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
constexpr unsigned size() const
|
|
|
|
{
|
|
|
|
return size_;
|
2014-12-11 16:38:57 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
constexpr unsigned find_closing_tag(const_str s, unsigned p)
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
return s[p] == '>' ? p : find_closing_tag(s, p + 1);
|
2014-12-11 16:38:57 +00:00
|
|
|
}
|
2014-04-02 16:38:08 +00:00
|
|
|
|
2022-01-11 17:27:41 +00:00
|
|
|
/// Check that the CROW_ROUTE string is valid
|
2014-04-13 02:24:06 +00:00
|
|
|
constexpr bool is_valid(const_str s, unsigned i = 0, int f = 0)
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
return i == s.size() ? f == 0 :
|
|
|
|
f < 0 || f >= 2 ? false :
|
|
|
|
s[i] == '<' ? is_valid(s, i + 1, f + 1) :
|
|
|
|
s[i] == '>' ? is_valid(s, i + 1, f - 1) :
|
|
|
|
is_valid(s, i + 1, f);
|
2014-04-13 02:24:06 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 08:45:10 +00:00
|
|
|
constexpr bool is_equ_p(const char* a, const char* b, unsigned n)
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
return *a == 0 && *b == 0 && n == 0 ? true :
|
|
|
|
(*a == 0 || *b == 0) ? false :
|
|
|
|
n == 0 ? true :
|
|
|
|
*a != *b ? false :
|
|
|
|
is_equ_p(a + 1, b + 1, n - 1);
|
2014-04-20 08:45:10 +00:00
|
|
|
}
|
|
|
|
|
2014-04-13 02:24:06 +00:00
|
|
|
constexpr bool is_equ_n(const_str a, unsigned ai, const_str b, unsigned bi, unsigned n)
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
return ai + n > a.size() || bi + n > b.size() ? false :
|
|
|
|
n == 0 ? true :
|
|
|
|
a[ai] != b[bi] ? false :
|
|
|
|
is_equ_n(a, ai + 1, b, bi + 1, n - 1);
|
2014-04-13 02:24:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool is_int(const_str s, unsigned i)
|
|
|
|
{
|
|
|
|
return is_equ_n(s, i, "<int>", 0, 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool is_uint(const_str s, unsigned i)
|
|
|
|
{
|
|
|
|
return is_equ_n(s, i, "<uint>", 0, 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool is_float(const_str s, unsigned i)
|
|
|
|
{
|
|
|
|
return is_equ_n(s, i, "<float>", 0, 7) ||
|
2021-11-25 11:45:38 +00:00
|
|
|
is_equ_n(s, i, "<double>", 0, 8);
|
2014-04-13 02:24:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool is_str(const_str s, unsigned i)
|
|
|
|
{
|
2014-04-14 20:11:37 +00:00
|
|
|
return is_equ_n(s, i, "<str>", 0, 5) ||
|
2021-11-25 11:45:38 +00:00
|
|
|
is_equ_n(s, i, "<string>", 0, 8);
|
2014-04-13 02:24:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool is_path(const_str s, unsigned i)
|
|
|
|
{
|
|
|
|
return is_equ_n(s, i, "<path>", 0, 6);
|
|
|
|
}
|
2015-02-20 02:47:51 +00:00
|
|
|
#endif
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename T>
|
2015-03-12 21:53:45 +00:00
|
|
|
struct parameter_tag
|
2015-02-19 03:16:28 +00:00
|
|
|
{
|
|
|
|
static const int value = 0;
|
|
|
|
};
|
|
|
|
#define CROW_INTERNAL_PARAMETER_TAG(t, i) \
|
2021-11-25 11:45:38 +00:00
|
|
|
template<> \
|
|
|
|
struct parameter_tag<t> \
|
|
|
|
{ \
|
|
|
|
static const int value = i; \
|
|
|
|
}
|
2015-02-19 03:16:28 +00:00
|
|
|
CROW_INTERNAL_PARAMETER_TAG(int, 1);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(char, 1);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(short, 1);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(long, 1);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(long long, 1);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(unsigned int, 2);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(unsigned char, 2);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(unsigned short, 2);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(unsigned long, 2);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(unsigned long long, 2);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(double, 3);
|
|
|
|
CROW_INTERNAL_PARAMETER_TAG(std::string, 4);
|
|
|
|
#undef CROW_INTERNAL_PARAMETER_TAG
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename... Args>
|
2015-03-12 21:53:45 +00:00
|
|
|
struct compute_parameter_tag_from_args_list;
|
2015-02-19 03:16:28 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
2015-03-12 21:53:45 +00:00
|
|
|
struct compute_parameter_tag_from_args_list<>
|
2015-02-19 03:16:28 +00:00
|
|
|
{
|
|
|
|
static const int value = 0;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename Arg, typename... Args>
|
2015-03-12 21:53:45 +00:00
|
|
|
struct compute_parameter_tag_from_args_list<Arg, Args...>
|
2015-02-19 03:16:28 +00:00
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
static const int sub_value =
|
|
|
|
compute_parameter_tag_from_args_list<Args...>::value;
|
|
|
|
static const int value =
|
|
|
|
parameter_tag<typename std::decay<Arg>::type>::value ? sub_value * 6 + parameter_tag<typename std::decay<Arg>::type>::value : sub_value;
|
2015-02-19 03:16:28 +00:00
|
|
|
};
|
|
|
|
|
2015-04-25 06:37:24 +00:00
|
|
|
static inline bool is_parameter_tag_compatible(uint64_t a, uint64_t b)
|
2015-02-19 03:16:28 +00:00
|
|
|
{
|
|
|
|
if (a == 0)
|
|
|
|
return b == 0;
|
|
|
|
if (b == 0)
|
|
|
|
return a == 0;
|
2021-11-25 11:45:38 +00:00
|
|
|
int sa = a % 6;
|
|
|
|
int sb = a % 6;
|
2015-02-19 03:16:28 +00:00
|
|
|
if (sa == 5) sa = 4;
|
|
|
|
if (sb == 5) sb = 4;
|
|
|
|
if (sa != sb)
|
|
|
|
return false;
|
2021-11-25 11:45:38 +00:00
|
|
|
return is_parameter_tag_compatible(a / 6, b / 6);
|
2015-02-19 03:16:28 +00:00
|
|
|
}
|
|
|
|
|
2015-04-25 06:37:24 +00:00
|
|
|
static inline unsigned find_closing_tag_runtime(const char* s, unsigned p)
|
2015-02-20 02:47:51 +00:00
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
return s[p] == 0 ? throw std::runtime_error("unmatched tag <") :
|
|
|
|
s[p] == '>' ? p :
|
|
|
|
find_closing_tag_runtime(s, p + 1);
|
2015-02-20 02:47:51 +00:00
|
|
|
}
|
2021-11-25 11:45:38 +00:00
|
|
|
|
2015-04-25 06:24:22 +00:00
|
|
|
static inline uint64_t get_parameter_tag_runtime(const char* s, unsigned p = 0)
|
2015-02-19 03:16:28 +00:00
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
return s[p] == 0 ? 0 :
|
|
|
|
s[p] == '<' ? (
|
|
|
|
std::strncmp(s + p, "<int>", 5) == 0 ? get_parameter_tag_runtime(s, find_closing_tag_runtime(s, p)) * 6 + 1 :
|
|
|
|
std::strncmp(s + p, "<uint>", 6) == 0 ? get_parameter_tag_runtime(s, find_closing_tag_runtime(s, p)) * 6 + 2 :
|
|
|
|
(std::strncmp(s + p, "<float>", 7) == 0 ||
|
|
|
|
std::strncmp(s + p, "<double>", 8) == 0) ?
|
|
|
|
get_parameter_tag_runtime(s, find_closing_tag_runtime(s, p)) * 6 + 3 :
|
|
|
|
(std::strncmp(s + p, "<str>", 5) == 0 ||
|
|
|
|
std::strncmp(s + p, "<string>", 8) == 0) ?
|
|
|
|
get_parameter_tag_runtime(s, find_closing_tag_runtime(s, p)) * 6 + 4 :
|
|
|
|
std::strncmp(s + p, "<path>", 6) == 0 ? get_parameter_tag_runtime(s, find_closing_tag_runtime(s, p)) * 6 + 5 :
|
|
|
|
throw std::runtime_error("invalid parameter type")) :
|
|
|
|
get_parameter_tag_runtime(s, p + 1);
|
2015-02-19 03:16:28 +00:00
|
|
|
}
|
2015-02-20 02:47:51 +00:00
|
|
|
#ifndef CROW_MSVC_WORKAROUND
|
2014-04-13 02:24:06 +00:00
|
|
|
constexpr uint64_t get_parameter_tag(const_str s, unsigned p = 0)
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
return p == s.size() ? 0 :
|
|
|
|
s[p] == '<' ? (
|
|
|
|
is_int(s, p) ? get_parameter_tag(s, find_closing_tag(s, p)) * 6 + 1 :
|
|
|
|
is_uint(s, p) ? get_parameter_tag(s, find_closing_tag(s, p)) * 6 + 2 :
|
|
|
|
is_float(s, p) ? get_parameter_tag(s, find_closing_tag(s, p)) * 6 + 3 :
|
|
|
|
is_str(s, p) ? get_parameter_tag(s, find_closing_tag(s, p)) * 6 + 4 :
|
|
|
|
is_path(s, p) ? get_parameter_tag(s, find_closing_tag(s, p)) * 6 + 5 :
|
|
|
|
throw std::runtime_error("invalid parameter type")) :
|
|
|
|
get_parameter_tag(s, p + 1);
|
2014-04-13 02:24:06 +00:00
|
|
|
}
|
2015-02-20 02:47:51 +00:00
|
|
|
#endif
|
2014-04-13 02:24:06 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename... T>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct S
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename U>
|
2014-04-13 02:24:06 +00:00
|
|
|
using push = S<U, T...>;
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename U>
|
2014-04-14 15:31:51 +00:00
|
|
|
using push_back = S<T..., U>;
|
2021-11-25 11:45:38 +00:00
|
|
|
template<template<typename... Args> class U>
|
2014-04-13 02:24:06 +00:00
|
|
|
using rebind = U<T...>;
|
|
|
|
};
|
2022-04-16 13:04:49 +00:00
|
|
|
|
|
|
|
// Check whether the template function can be called with specific arguments
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename F, typename Set>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct CallHelper;
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename F, typename... Args>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct CallHelper<F, S<Args...>>
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename F1, typename... Args1, typename = decltype(std::declval<F1>()(std::declval<Args1>()...))>
|
2014-04-13 02:24:06 +00:00
|
|
|
static char __test(int);
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename...>
|
2014-04-13 02:24:06 +00:00
|
|
|
static int __test(...);
|
|
|
|
|
|
|
|
static constexpr bool value = sizeof(__test<F, Args...>(0)) == sizeof(char);
|
|
|
|
};
|
|
|
|
|
2022-02-01 13:31:05 +00:00
|
|
|
// Check Tuple contains type T
|
2022-02-01 20:21:07 +00:00
|
|
|
template<typename T, typename Tuple>
|
2022-02-01 13:31:05 +00:00
|
|
|
struct has_type;
|
|
|
|
|
2022-02-01 20:21:07 +00:00
|
|
|
template<typename T>
|
|
|
|
struct has_type<T, std::tuple<>> : std::false_type
|
|
|
|
{};
|
2022-02-01 13:31:05 +00:00
|
|
|
|
2022-02-01 20:21:07 +00:00
|
|
|
template<typename T, typename U, typename... Ts>
|
|
|
|
struct has_type<T, std::tuple<U, Ts...>> : has_type<T, std::tuple<Ts...>>
|
|
|
|
{};
|
2022-02-01 13:31:05 +00:00
|
|
|
|
2022-02-01 20:21:07 +00:00
|
|
|
template<typename T, typename... Ts>
|
|
|
|
struct has_type<T, std::tuple<T, Ts...>> : std::true_type
|
|
|
|
{};
|
2022-02-01 13:31:05 +00:00
|
|
|
|
2022-05-23 17:17:49 +00:00
|
|
|
// Find index of type in tuple
|
|
|
|
template<class T, class Tuple>
|
|
|
|
struct tuple_index;
|
|
|
|
|
|
|
|
template<class T, class... Types>
|
|
|
|
struct tuple_index<T, std::tuple<T, Types...>>
|
|
|
|
{
|
|
|
|
static const int value = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T, class U, class... Types>
|
|
|
|
struct tuple_index<T, std::tuple<U, Types...>>
|
|
|
|
{
|
|
|
|
static const int value = 1 + tuple_index<T, std::tuple<Types...>>::value;
|
|
|
|
};
|
|
|
|
|
2022-04-13 17:49:22 +00:00
|
|
|
// Extract element from forward tuple or get default
|
|
|
|
#ifdef CROW_CAN_USE_CPP14
|
|
|
|
template<typename T, typename Tup>
|
|
|
|
typename std::enable_if<has_type<T&, Tup>::value, typename std::decay<T>::type&&>::type
|
|
|
|
tuple_extract(Tup& tup)
|
|
|
|
{
|
|
|
|
return std::move(std::get<T&>(tup));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
template<typename T, typename Tup>
|
|
|
|
typename std::enable_if<has_type<T&, Tup>::value, T&&>::type
|
|
|
|
tuple_extract(Tup& tup)
|
|
|
|
{
|
|
|
|
return std::move(std::get<tuple_index<T&, Tup>::value>(tup));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
template<typename T, typename Tup>
|
|
|
|
typename std::enable_if<!has_type<T&, Tup>::value, T>::type
|
|
|
|
tuple_extract(Tup&)
|
|
|
|
{
|
|
|
|
return T{};
|
|
|
|
}
|
2022-02-01 13:31:05 +00:00
|
|
|
|
|
|
|
// Kind of fold expressions in C++11
|
|
|
|
template<bool...>
|
|
|
|
struct bool_pack;
|
|
|
|
template<bool... bs>
|
|
|
|
using all_true = std::is_same<bool_pack<bs..., true>, bool_pack<true, bs...>>;
|
2014-04-13 02:24:06 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<int N>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct single_tag_to_type
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2014-04-13 02:24:06 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct single_tag_to_type<1>
|
|
|
|
{
|
|
|
|
using type = int64_t;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct single_tag_to_type<2>
|
|
|
|
{
|
|
|
|
using type = uint64_t;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct single_tag_to_type<3>
|
|
|
|
{
|
|
|
|
using type = double;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct single_tag_to_type<4>
|
|
|
|
{
|
|
|
|
using type = std::string;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct single_tag_to_type<5>
|
|
|
|
{
|
|
|
|
using type = std::string;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<uint64_t Tag>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct arguments
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
using subarguments = typename arguments<Tag / 6>::type;
|
|
|
|
using type =
|
|
|
|
typename subarguments::template push<typename single_tag_to_type<Tag % 6>::type>;
|
2014-04-13 02:24:06 +00:00
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
2014-04-13 02:24:06 +00:00
|
|
|
struct arguments<0>
|
|
|
|
{
|
|
|
|
using type = S<>;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename... T>
|
2014-09-06 16:24:45 +00:00
|
|
|
struct last_element_type
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
using type = typename std::tuple_element<sizeof...(T) - 1, std::tuple<T...>>::type;
|
2014-09-06 16:24:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
2014-09-06 16:24:45 +00:00
|
|
|
struct last_element_type<>
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2014-09-06 16:24:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
// from http://stackoverflow.com/questions/13072359/c11-compile-time-array-with-logarithmic-evaluation-depth
|
2021-11-25 11:45:38 +00:00
|
|
|
template<class T>
|
|
|
|
using Invoke = typename T::type;
|
2014-09-06 16:24:45 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<unsigned...>
|
|
|
|
struct seq
|
|
|
|
{
|
|
|
|
using type = seq;
|
|
|
|
};
|
2014-09-06 16:24:45 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<class S1, class S2>
|
|
|
|
struct concat;
|
2014-09-06 16:24:45 +00:00
|
|
|
|
|
|
|
template<unsigned... I1, unsigned... I2>
|
2021-11-25 11:45:38 +00:00
|
|
|
struct concat<seq<I1...>, seq<I2...>> : seq<I1..., (sizeof...(I1) + I2)...>
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2014-09-06 16:24:45 +00:00
|
|
|
|
|
|
|
template<class S1, class S2>
|
|
|
|
using Concat = Invoke<concat<S1, S2>>;
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<unsigned N>
|
|
|
|
struct gen_seq;
|
|
|
|
template<unsigned N>
|
|
|
|
using GenSeq = Invoke<gen_seq<N>>;
|
2014-09-06 16:24:45 +00:00
|
|
|
|
|
|
|
template<unsigned N>
|
2021-11-25 11:45:38 +00:00
|
|
|
struct gen_seq : Concat<GenSeq<N / 2>, GenSeq<N - N / 2>>
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2014-09-06 16:24:45 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
|
|
|
struct gen_seq<0> : seq<>
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
|
|
|
struct gen_seq<1> : seq<0>
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2014-09-06 16:24:45 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename Seq, typename Tuple>
|
2014-09-06 16:24:45 +00:00
|
|
|
struct pop_back_helper;
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<unsigned... N, typename Tuple>
|
2014-09-06 16:24:45 +00:00
|
|
|
struct pop_back_helper<seq<N...>, Tuple>
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
template<template<typename... Args> class U>
|
2014-09-07 22:07:53 +00:00
|
|
|
using rebind = U<typename std::tuple_element<N, Tuple>::type...>;
|
2014-09-06 16:24:45 +00:00
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename... T>
|
2014-09-07 22:07:53 +00:00
|
|
|
struct pop_back //: public pop_back_helper<typename gen_seq<sizeof...(T)-1>::type, std::tuple<T...>>
|
2014-09-06 16:24:45 +00:00
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
template<template<typename... Args> class U>
|
|
|
|
using rebind = typename pop_back_helper<typename gen_seq<sizeof...(T) - 1>::type, std::tuple<T...>>::template rebind<U>;
|
2014-09-06 16:24:45 +00:00
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<>
|
2014-09-06 16:24:45 +00:00
|
|
|
struct pop_back<>
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
template<template<typename... Args> class U>
|
2014-09-06 16:24:45 +00:00
|
|
|
using rebind = U<>;
|
|
|
|
};
|
|
|
|
|
|
|
|
// from http://stackoverflow.com/questions/2118541/check-if-c0x-parameter-pack-contains-a-type
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename Tp, typename... List>
|
|
|
|
struct contains : std::true_type
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2014-09-06 16:24:45 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename Tp, typename Head, typename... Rest>
|
|
|
|
struct contains<Tp, Head, Rest...> : std::conditional<std::is_same<Tp, Head>::value, std::true_type, contains<Tp, Rest...>>::type
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2014-09-06 16:24:45 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename Tp>
|
|
|
|
struct contains<Tp> : std::false_type
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2014-09-07 22:07:53 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename T>
|
2014-09-07 22:07:53 +00:00
|
|
|
struct empty_context
|
2021-11-27 12:28:50 +00:00
|
|
|
{};
|
2014-10-23 17:33:03 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename T>
|
2015-02-18 15:57:01 +00:00
|
|
|
struct promote
|
|
|
|
{
|
|
|
|
using type = T;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define CROW_INTERNAL_PROMOTE_TYPE(t1, t2) \
|
2021-11-25 11:45:38 +00:00
|
|
|
template<> \
|
|
|
|
struct promote<t1> \
|
|
|
|
{ \
|
|
|
|
using type = t2; \
|
|
|
|
}
|
2015-02-18 15:57:01 +00:00
|
|
|
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(char, int64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(short, int64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(int, int64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(long, int64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(long long, int64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(unsigned char, uint64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(unsigned short, uint64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(unsigned int, uint64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(unsigned long, uint64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(unsigned long long, uint64_t);
|
|
|
|
CROW_INTERNAL_PROMOTE_TYPE(float, double);
|
|
|
|
#undef CROW_INTERNAL_PROMOTE_TYPE
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename T>
|
2015-02-18 15:57:01 +00:00
|
|
|
using promote_t = typename promote<T>::type;
|
|
|
|
|
2014-10-23 17:33:03 +00:00
|
|
|
} // namespace black_magic
|
|
|
|
|
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<class T, std::size_t N, class... Args>
|
2014-10-23 17:33:03 +00:00
|
|
|
struct get_index_of_element_from_tuple_by_type_impl
|
|
|
|
{
|
|
|
|
static constexpr auto value = N;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<class T, std::size_t N, class... Args>
|
2014-10-23 17:33:03 +00:00
|
|
|
struct get_index_of_element_from_tuple_by_type_impl<T, N, T, Args...>
|
|
|
|
{
|
|
|
|
static constexpr auto value = N;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<class T, std::size_t N, class U, class... Args>
|
2014-10-23 17:33:03 +00:00
|
|
|
struct get_index_of_element_from_tuple_by_type_impl<T, N, U, Args...>
|
|
|
|
{
|
|
|
|
static constexpr auto value = get_index_of_element_from_tuple_by_type_impl<T, N + 1, Args...>::value;
|
|
|
|
};
|
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
namespace utility
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
template<class T, class... Args>
|
2014-12-11 16:38:57 +00:00
|
|
|
T& get_element_by_type(std::tuple<Args...>& t)
|
2014-10-23 17:33:03 +00:00
|
|
|
{
|
|
|
|
return std::get<detail::get_index_of_element_from_tuple_by_type_impl<T, 0, Args...>::value>(t);
|
|
|
|
}
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename T>
|
|
|
|
struct function_traits;
|
2015-02-18 15:57:01 +00:00
|
|
|
|
2015-02-20 02:47:51 +00:00
|
|
|
#ifndef CROW_MSVC_WORKAROUND
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename T>
|
2015-02-18 15:57:01 +00:00
|
|
|
struct function_traits : public function_traits<decltype(&T::operator())>
|
|
|
|
{
|
|
|
|
using parent_t = function_traits<decltype(&T::operator())>;
|
|
|
|
static const size_t arity = parent_t::arity;
|
|
|
|
using result_type = typename parent_t::result_type;
|
2021-11-25 11:45:38 +00:00
|
|
|
template<size_t i>
|
2015-02-18 15:57:01 +00:00
|
|
|
using arg = typename parent_t::template arg<i>;
|
2021-11-25 11:45:38 +00:00
|
|
|
};
|
2015-02-20 02:47:51 +00:00
|
|
|
#endif
|
2015-02-18 15:57:01 +00:00
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename ClassType, typename R, typename... Args>
|
|
|
|
struct function_traits<R (ClassType::*)(Args...) const>
|
2015-02-18 15:57:01 +00:00
|
|
|
{
|
|
|
|
static const size_t arity = sizeof...(Args);
|
|
|
|
|
|
|
|
typedef R result_type;
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<size_t i>
|
2015-02-18 15:57:01 +00:00
|
|
|
using arg = typename std::tuple_element<i, std::tuple<Args...>>::type;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename ClassType, typename R, typename... Args>
|
|
|
|
struct function_traits<R (ClassType::*)(Args...)>
|
2015-02-18 15:57:01 +00:00
|
|
|
{
|
|
|
|
static const size_t arity = sizeof...(Args);
|
|
|
|
|
|
|
|
typedef R result_type;
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<size_t i>
|
2015-02-18 15:57:01 +00:00
|
|
|
using arg = typename std::tuple_element<i, std::tuple<Args...>>::type;
|
|
|
|
};
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<typename R, typename... Args>
|
2015-02-18 15:57:01 +00:00
|
|
|
struct function_traits<std::function<R(Args...)>>
|
|
|
|
{
|
|
|
|
static const size_t arity = sizeof...(Args);
|
|
|
|
|
|
|
|
typedef R result_type;
|
|
|
|
|
2021-11-25 11:45:38 +00:00
|
|
|
template<size_t i>
|
2015-02-18 15:57:01 +00:00
|
|
|
using arg = typename std::tuple_element<i, std::tuple<Args...>>::type;
|
|
|
|
};
|
2022-03-23 22:55:46 +00:00
|
|
|
/// @endcond
|
2015-02-18 15:57:01 +00:00
|
|
|
|
2021-10-30 23:50:19 +00:00
|
|
|
inline static std::string base64encode(const unsigned char* data, size_t size, const char* key = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/")
|
2016-08-28 05:46:31 +00:00
|
|
|
{
|
|
|
|
std::string ret;
|
2021-11-25 11:45:38 +00:00
|
|
|
ret.resize((size + 2) / 3 * 4);
|
2016-08-28 05:46:31 +00:00
|
|
|
auto it = ret.begin();
|
2021-11-25 11:45:38 +00:00
|
|
|
while (size >= 3)
|
2016-08-28 05:46:31 +00:00
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
*it++ = key[(static_cast<unsigned char>(*data) & 0xFC) >> 2];
|
2021-02-21 00:14:30 +00:00
|
|
|
unsigned char h = (static_cast<unsigned char>(*data++) & 0x03) << 4;
|
2021-11-25 11:45:38 +00:00
|
|
|
*it++ = key[h | ((static_cast<unsigned char>(*data) & 0xF0) >> 4)];
|
2021-02-21 00:14:30 +00:00
|
|
|
h = (static_cast<unsigned char>(*data++) & 0x0F) << 2;
|
2021-11-25 11:45:38 +00:00
|
|
|
*it++ = key[h | ((static_cast<unsigned char>(*data) & 0xC0) >> 6)];
|
|
|
|
*it++ = key[static_cast<unsigned char>(*data++) & 0x3F];
|
2016-08-28 05:46:31 +00:00
|
|
|
|
|
|
|
size -= 3;
|
|
|
|
}
|
|
|
|
if (size == 1)
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
*it++ = key[(static_cast<unsigned char>(*data) & 0xFC) >> 2];
|
2021-02-21 00:14:30 +00:00
|
|
|
unsigned char h = (static_cast<unsigned char>(*data++) & 0x03) << 4;
|
2016-08-28 05:46:31 +00:00
|
|
|
*it++ = key[h];
|
|
|
|
*it++ = '=';
|
|
|
|
*it++ = '=';
|
|
|
|
}
|
|
|
|
else if (size == 2)
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
*it++ = key[(static_cast<unsigned char>(*data) & 0xFC) >> 2];
|
2021-02-21 00:14:30 +00:00
|
|
|
unsigned char h = (static_cast<unsigned char>(*data++) & 0x03) << 4;
|
2021-11-25 11:45:38 +00:00
|
|
|
*it++ = key[h | ((static_cast<unsigned char>(*data) & 0xF0) >> 4)];
|
2021-02-21 00:14:30 +00:00
|
|
|
h = (static_cast<unsigned char>(*data++) & 0x0F) << 2;
|
2016-08-28 05:46:31 +00:00
|
|
|
*it++ = key[h];
|
|
|
|
*it++ = '=';
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-10-30 23:50:19 +00:00
|
|
|
inline static std::string base64encode(std::string data, size_t size, const char* key = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/")
|
|
|
|
{
|
|
|
|
return base64encode((const unsigned char*)data.c_str(), size, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static std::string base64encode_urlsafe(const unsigned char* data, size_t size)
|
2016-08-28 05:46:31 +00:00
|
|
|
{
|
|
|
|
return base64encode(data, size, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_");
|
|
|
|
}
|
|
|
|
|
2021-10-30 23:50:19 +00:00
|
|
|
inline static std::string base64encode_urlsafe(std::string data, size_t size)
|
|
|
|
{
|
|
|
|
return base64encode((const unsigned char*)data.c_str(), size, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_");
|
|
|
|
}
|
|
|
|
|
2022-01-23 17:31:22 +00:00
|
|
|
inline static std::string base64decode(const char* data, size_t size)
|
2021-10-30 23:50:19 +00:00
|
|
|
{
|
2022-01-23 17:31:22 +00:00
|
|
|
// We accept both regular and url encoding here, as there does not seem to be any downside to that.
|
|
|
|
// If we want to distinguish that we should use +/ for non-url and -_ for url.
|
2021-10-30 23:50:19 +00:00
|
|
|
|
2022-01-23 17:31:22 +00:00
|
|
|
// Mapping logic from characters to [0-63]
|
|
|
|
auto key = [](char c) -> unsigned char {
|
|
|
|
if ((c >= 'A') && (c <= 'Z')) return c - 'A';
|
|
|
|
if ((c >= 'a') && (c <= 'z')) return c - 'a' + 26;
|
|
|
|
if ((c >= '0') && (c <= '9')) return c - '0' + 52;
|
|
|
|
if ((c == '+') || (c == '-')) return 62;
|
|
|
|
if ((c == '/') || (c == '_')) return 63;
|
|
|
|
return 0;
|
|
|
|
};
|
2021-11-25 11:45:38 +00:00
|
|
|
|
2021-10-30 23:50:19 +00:00
|
|
|
// Not padded
|
2021-11-25 11:45:38 +00:00
|
|
|
if (size % 4 == 2) // missing last 2 characters
|
2021-10-30 23:50:19 +00:00
|
|
|
size = (size / 4 * 3) + 1; // Not subtracting extra characters because they're truncated in int division
|
2021-11-25 11:45:38 +00:00
|
|
|
else if (size % 4 == 3) // missing last character
|
2021-10-30 23:50:19 +00:00
|
|
|
size = (size / 4 * 3) + 2; // Not subtracting extra characters because they're truncated in int division
|
|
|
|
|
|
|
|
// Padded
|
2021-11-25 11:45:38 +00:00
|
|
|
else if (data[size - 2] == '=') // padded with '=='
|
|
|
|
size = (size / 4 * 3) - 2; // == padding means the last block only has 1 character instead of 3, hence the '-2'
|
|
|
|
else if (data[size - 1] == '=') // padded with '='
|
|
|
|
size = (size / 4 * 3) - 1; // = padding means the last block only has 2 character instead of 3, hence the '-1'
|
2021-10-30 23:50:19 +00:00
|
|
|
|
|
|
|
// Padding not needed
|
|
|
|
else
|
|
|
|
size = size / 4 * 3;
|
|
|
|
|
|
|
|
std::string ret;
|
|
|
|
ret.resize(size);
|
|
|
|
auto it = ret.begin();
|
|
|
|
|
|
|
|
// These will be used to decode 1 character at a time
|
|
|
|
unsigned char odd; // char1 and char3
|
|
|
|
unsigned char even; // char2 and char4
|
|
|
|
|
|
|
|
// Take 4 character blocks to turn into 3
|
|
|
|
while (size >= 3)
|
|
|
|
{
|
2021-11-25 11:45:38 +00:00
|
|
|
// dec_char1 = (char1 shifted 2 bits to the left) OR ((char2 AND 00110000) shifted 4 bits to the right))
|
2022-01-23 17:31:22 +00:00
|
|
|
odd = key(*data++);
|
|
|
|
even = key(*data++);
|
2021-10-30 23:50:19 +00:00
|
|
|
*it++ = (odd << 2) | ((even & 0x30) >> 4);
|
2021-11-25 11:45:38 +00:00
|
|
|
// dec_char2 = ((char2 AND 00001111) shifted 4 bits left) OR ((char3 AND 00111100) shifted 2 bits right))
|
2022-01-23 17:31:22 +00:00
|
|
|
odd = key(*data++);
|
2021-10-30 23:50:19 +00:00
|
|
|
*it++ = ((even & 0x0F) << 4) | ((odd & 0x3C) >> 2);
|
2021-11-25 11:45:38 +00:00
|
|
|
// dec_char3 = ((char3 AND 00000011) shifted 6 bits left) OR (char4)
|
2022-01-23 17:31:22 +00:00
|
|
|
even = key(*data++);
|
2021-10-30 23:50:19 +00:00
|
|
|
*it++ = ((odd & 0x03) << 6) | (even);
|
|
|
|
|
|
|
|
size -= 3;
|
|
|
|
}
|
|
|
|
if (size == 2)
|
|
|
|
{
|
|
|
|
// d_char1 = (char1 shifted 2 bits to the left) OR ((char2 AND 00110000) shifted 4 bits to the right))
|
2022-01-23 17:31:22 +00:00
|
|
|
odd = key(*data++);
|
|
|
|
even = key(*data++);
|
2021-11-25 11:45:38 +00:00
|
|
|
*it++ = (odd << 2) | ((even & 0x30) >> 4);
|
2021-10-30 23:50:19 +00:00
|
|
|
// d_char2 = ((char2 AND 00001111) shifted 4 bits left) OR ((char3 AND 00111100) shifted 2 bits right))
|
2022-01-23 17:31:22 +00:00
|
|
|
odd = key(*data++);
|
2021-11-25 11:45:38 +00:00
|
|
|
*it++ = ((even & 0x0F) << 4) | ((odd & 0x3C) >> 2);
|
2021-10-30 23:50:19 +00:00
|
|
|
}
|
|
|
|
else if (size == 1)
|
|
|
|
{
|
|
|
|
// d_char1 = (char1 shifted 2 bits to the left) OR ((char2 AND 00110000) shifted 4 bits to the right))
|
2022-01-23 17:31:22 +00:00
|
|
|
odd = key(*data++);
|
|
|
|
even = key(*data++);
|
2021-11-25 11:45:38 +00:00
|
|
|
*it++ = (odd << 2) | ((even & 0x30) >> 4);
|
2021-10-30 23:50:19 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2022-01-23 17:31:22 +00:00
|
|
|
inline static std::string base64decode(const std::string& data, size_t size)
|
2021-10-30 23:50:19 +00:00
|
|
|
{
|
2022-01-23 17:31:22 +00:00
|
|
|
return base64decode(data.data(), size);
|
2021-10-30 23:50:19 +00:00
|
|
|
}
|
2016-08-28 05:46:31 +00:00
|
|
|
|
2022-01-23 17:31:22 +00:00
|
|
|
inline static std::string base64decode(const std::string& data)
|
|
|
|
{
|
|
|
|
return base64decode(data.data(), data.length());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-11 18:48:51 +00:00
|
|
|
inline static void sanitize_filename(std::string& data, char replacement = '_')
|
2022-01-11 17:27:41 +00:00
|
|
|
{
|
2022-01-22 15:40:26 +00:00
|
|
|
if (data.length() > 255)
|
|
|
|
data.resize(255);
|
2022-01-11 17:27:41 +00:00
|
|
|
|
2022-01-22 15:40:26 +00:00
|
|
|
static const auto toUpper = [](char c) {
|
|
|
|
return ((c >= 'a') && (c <= 'z')) ? (c - ('a' - 'A')) : c;
|
|
|
|
};
|
|
|
|
// Check for special device names. The Windows behavior is really odd here, it will consider both AUX and AUX.txt
|
|
|
|
// a special device. Thus we search for the string (case-insensitive), and then check if the string ends or if
|
|
|
|
// is has a dangerous follow up character (.:\/)
|
|
|
|
auto sanitizeSpecialFile = [](std::string& source, unsigned ofs, const char* pattern, bool includeNumber, char replacement) {
|
|
|
|
unsigned i = ofs, len = source.length();
|
|
|
|
const char* p = pattern;
|
|
|
|
while (*p)
|
|
|
|
{
|
|
|
|
if (i >= len) return;
|
|
|
|
if (toUpper(source[i]) != *p) return;
|
|
|
|
++i;
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
if (includeNumber)
|
|
|
|
{
|
|
|
|
if ((i >= len) || (source[i] < '1') || (source[i] > '9')) return;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
if ((i >= len) || (source[i] == '.') || (source[i] == ':') || (source[i] == '/') || (source[i] == '\\'))
|
|
|
|
{
|
|
|
|
source.erase(ofs + 1, (i - ofs) - 1);
|
|
|
|
source[ofs] = replacement;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
bool checkForSpecialEntries = true;
|
|
|
|
for (unsigned i = 0; i < data.length(); ++i)
|
2022-01-11 17:27:41 +00:00
|
|
|
{
|
2022-01-22 15:40:26 +00:00
|
|
|
// Recognize directory traversals and the special devices CON/PRN/AUX/NULL/COM[1-]/LPT[1-9]
|
|
|
|
if (checkForSpecialEntries)
|
|
|
|
{
|
|
|
|
checkForSpecialEntries = false;
|
|
|
|
switch (toUpper(data[i]))
|
|
|
|
{
|
|
|
|
case 'A':
|
|
|
|
sanitizeSpecialFile(data, i, "AUX", false, replacement);
|
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
sanitizeSpecialFile(data, i, "CON", false, replacement);
|
|
|
|
sanitizeSpecialFile(data, i, "COM", true, replacement);
|
|
|
|
break;
|
|
|
|
case 'L':
|
|
|
|
sanitizeSpecialFile(data, i, "LPT", true, replacement);
|
|
|
|
break;
|
|
|
|
case 'N':
|
|
|
|
sanitizeSpecialFile(data, i, "NUL", false, replacement);
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
sanitizeSpecialFile(data, i, "PRN", false, replacement);
|
|
|
|
break;
|
|
|
|
case '.':
|
|
|
|
sanitizeSpecialFile(data, i, "..", false, replacement);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sanitize individual characters
|
|
|
|
unsigned char c = data[i];
|
|
|
|
if ((c < ' ') || ((c >= 0x80) && (c <= 0x9F)) || (c == '?') || (c == '<') || (c == '>') || (c == ':') || (c == '*') || (c == '|') || (c == '\"'))
|
|
|
|
{
|
|
|
|
data[i] = replacement;
|
|
|
|
}
|
|
|
|
else if ((c == '/') || (c == '\\'))
|
2022-02-10 22:04:32 +00:00
|
|
|
{
|
|
|
|
if (CROW_UNLIKELY(i == 0)) //Prevent Unix Absolute Paths (Windows Absolute Paths are prevented with `(c == ':')`)
|
2022-02-08 16:11:46 +00:00
|
|
|
{
|
|
|
|
data[i] = replacement;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
checkForSpecialEntries = true;
|
|
|
|
}
|
2022-01-11 17:27:41 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-10 22:04:32 +00:00
|
|
|
}
|
2022-06-21 12:38:22 +00:00
|
|
|
|
|
|
|
inline std::string random_alphanum(std::size_t size)
|
|
|
|
{
|
|
|
|
static const char alphabet[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
2022-05-28 13:39:33 +00:00
|
|
|
std::random_device dev;
|
|
|
|
std::mt19937 rng(dev());
|
2022-06-21 12:38:22 +00:00
|
|
|
std::uniform_int_distribution<std::mt19937::result_type> dist(0, sizeof(alphabet) - 2);
|
2022-05-28 13:39:33 +00:00
|
|
|
std::string out;
|
|
|
|
out.reserve(size);
|
2022-06-21 12:38:22 +00:00
|
|
|
for (std::size_t i = 0; i < size; i++)
|
|
|
|
out.push_back(alphabet[dist(rng)]);
|
2022-05-28 13:39:33 +00:00
|
|
|
return out;
|
|
|
|
}
|
2022-01-11 17:27:41 +00:00
|
|
|
|
2022-06-21 12:38:22 +00:00
|
|
|
inline std::string join_path(std::string path, const std::string& fname)
|
|
|
|
{
|
|
|
|
#ifdef CROW_CAN_USE_CPP17
|
|
|
|
return std::filesystem::path(path) / fname;
|
|
|
|
#else
|
|
|
|
if (!(path.back() == '/' || path.back() == '\\'))
|
|
|
|
path += '/';
|
|
|
|
path += fname;
|
|
|
|
return path;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-06-06 14:17:36 +00:00
|
|
|
/**
|
|
|
|
* @brief Checks two string for equality.
|
|
|
|
* Always returns false if strings differ in size.
|
|
|
|
* Defaults to case-insensitive comparison.
|
|
|
|
*/
|
|
|
|
inline static bool string_equals(const std::string& l, const std::string& r, bool case_sensitive = false)
|
|
|
|
{
|
|
|
|
if (l.length() != r.length())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < l.length(); i++)
|
|
|
|
{
|
|
|
|
if (case_sensitive)
|
2022-06-07 00:47:07 +00:00
|
|
|
{
|
|
|
|
if (l[i] != r[i])
|
|
|
|
return false;
|
|
|
|
}
|
2022-06-06 14:17:36 +00:00
|
|
|
else
|
2022-06-07 00:47:07 +00:00
|
|
|
{
|
|
|
|
if (std::toupper(l[i]) != std::toupper(r[i]))
|
|
|
|
return false;
|
|
|
|
}
|
2022-06-06 14:17:36 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 00:47:07 +00:00
|
|
|
return true;
|
2022-06-06 14:17:36 +00:00
|
|
|
}
|
2022-06-06 15:14:37 +00:00
|
|
|
|
|
|
|
template<typename T, typename U>
|
2022-06-06 16:57:18 +00:00
|
|
|
inline static T lexical_cast(const U& v)
|
2022-06-06 15:14:37 +00:00
|
|
|
{
|
|
|
|
std::stringstream stream;
|
|
|
|
T res;
|
|
|
|
|
|
|
|
stream << v;
|
|
|
|
stream >> res;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
2022-06-06 16:57:18 +00:00
|
|
|
inline static T lexical_cast(const char* v, size_t count)
|
2022-06-06 15:14:37 +00:00
|
|
|
{
|
|
|
|
std::stringstream stream;
|
|
|
|
T res;
|
|
|
|
|
|
|
|
stream.write(v, count);
|
|
|
|
stream >> res;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
2022-06-06 16:04:05 +00:00
|
|
|
|
2022-06-15 23:44:22 +00:00
|
|
|
|
|
|
|
/// Return a copy of the given string with its
|
|
|
|
/// leading and trailing whitespaces removed.
|
2022-06-06 16:57:18 +00:00
|
|
|
inline static std::string trim(const std::string& v)
|
2022-06-06 16:04:05 +00:00
|
|
|
{
|
|
|
|
if (v.empty())
|
|
|
|
return "";
|
|
|
|
|
|
|
|
size_t begin = 0, end = v.length();
|
|
|
|
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < v.length(); i++)
|
|
|
|
{
|
|
|
|
if (!std::isspace(v[i]))
|
|
|
|
{
|
|
|
|
begin = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == v.length())
|
|
|
|
return "";
|
|
|
|
|
|
|
|
for (i = v.length(); i > 0; i--)
|
|
|
|
{
|
|
|
|
if (!std::isspace(v[i - 1]))
|
|
|
|
{
|
|
|
|
end = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return v.substr(begin, end - begin);
|
|
|
|
}
|
2014-10-23 17:33:03 +00:00
|
|
|
} // namespace utility
|
2021-11-25 11:45:38 +00:00
|
|
|
} // namespace crow
|