2015-02-05 15:21:53 +01:00
|
|
|
/*
|
|
|
|
* nghttp2 - HTTP/2 C Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#ifndef TEMPLATE_H
|
|
|
|
#define TEMPLATE_H
|
|
|
|
|
|
|
|
#include "nghttp2_config.h"
|
|
|
|
|
2015-09-29 16:38:26 +02:00
|
|
|
#include <cstring>
|
2015-10-17 16:34:05 +02:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
2015-02-05 15:21:53 +01:00
|
|
|
#include <memory>
|
2015-02-05 15:39:36 +01:00
|
|
|
#include <array>
|
2015-02-06 15:40:34 +01:00
|
|
|
#include <functional>
|
2015-10-21 18:34:01 +02:00
|
|
|
#include <typeinfo>
|
2016-01-17 14:47:50 +01:00
|
|
|
#include <algorithm>
|
2016-01-31 11:41:56 +01:00
|
|
|
#include <ostream>
|
2018-11-02 07:40:53 +01:00
|
|
|
#include <utility>
|
2015-02-05 15:21:53 +01:00
|
|
|
|
|
|
|
namespace nghttp2 {
|
|
|
|
|
2015-10-25 03:31:55 +01:00
|
|
|
// std::forward is constexpr since C++14
|
2015-09-24 16:37:25 +02:00
|
|
|
template <typename... T>
|
|
|
|
constexpr std::array<
|
|
|
|
typename std::decay<typename std::common_type<T...>::type>::type,
|
|
|
|
sizeof...(T)>
|
2021-08-04 08:02:20 +02:00
|
|
|
make_array(T &&...t) {
|
2015-09-24 16:37:25 +02:00
|
|
|
return std::array<
|
|
|
|
typename std::decay<typename std::common_type<T...>::type>::type,
|
|
|
|
sizeof...(T)>{{std::forward<T>(t)...}};
|
2015-02-05 15:39:36 +01:00
|
|
|
}
|
|
|
|
|
2016-10-15 11:36:04 +02:00
|
|
|
template <typename T, size_t N> constexpr size_t array_size(T (&)[N]) {
|
2015-02-06 14:44:09 +01:00
|
|
|
return N;
|
|
|
|
}
|
|
|
|
|
2016-10-15 11:36:04 +02:00
|
|
|
template <typename T, size_t N> constexpr size_t str_size(T (&)[N]) {
|
2015-02-20 15:50:17 +01:00
|
|
|
return N - 1;
|
|
|
|
}
|
|
|
|
|
2015-02-06 15:27:15 +01:00
|
|
|
// inspired by <http://blog.korfuri.fr/post/go-defer-in-cpp/>, but our
|
|
|
|
// template can take functions returning other than void.
|
|
|
|
template <typename F, typename... T> struct Defer {
|
2021-08-04 08:02:20 +02:00
|
|
|
Defer(F &&f, T &&...t)
|
2015-02-06 15:27:15 +01:00
|
|
|
: f(std::bind(std::forward<F>(f), std::forward<T>(t)...)) {}
|
2016-10-15 11:51:22 +02:00
|
|
|
Defer(Defer &&o) noexcept : f(std::move(o.f)) {}
|
2015-02-06 15:27:15 +01:00
|
|
|
~Defer() { f(); }
|
|
|
|
|
2015-11-12 16:53:29 +01:00
|
|
|
using ResultType = typename std::result_of<typename std::decay<F>::type(
|
|
|
|
typename std::decay<T>::type...)>::type;
|
2015-02-06 15:27:15 +01:00
|
|
|
std::function<ResultType()> f;
|
|
|
|
};
|
|
|
|
|
2021-08-04 08:02:20 +02:00
|
|
|
template <typename F, typename... T> Defer<F, T...> defer(F &&f, T &&...t) {
|
2015-02-06 15:27:15 +01:00
|
|
|
return Defer<F, T...>(std::forward<F>(f), std::forward<T>(t)...);
|
|
|
|
}
|
|
|
|
|
2015-03-07 11:26:42 +01:00
|
|
|
template <typename T, typename F> bool test_flags(T t, F flags) {
|
|
|
|
return (t & flags) == flags;
|
|
|
|
}
|
|
|
|
|
2015-03-11 13:35:47 +01:00
|
|
|
// doubly linked list of element T*. T must have field T *dlprev and
|
|
|
|
// T *dlnext, which point to previous element and next element in the
|
|
|
|
// list respectively.
|
|
|
|
template <typename T> struct DList {
|
2016-03-27 08:52:24 +02:00
|
|
|
DList() : head(nullptr), tail(nullptr), len(0) {}
|
2015-03-11 13:35:47 +01:00
|
|
|
|
2016-02-27 15:24:14 +01:00
|
|
|
DList(const DList &) = delete;
|
|
|
|
DList &operator=(const DList &) = delete;
|
2015-03-11 13:35:47 +01:00
|
|
|
|
2016-10-15 11:51:22 +02:00
|
|
|
DList(DList &&other) noexcept
|
2018-11-02 07:40:53 +01:00
|
|
|
: head{std::exchange(other.head, nullptr)},
|
|
|
|
tail{std::exchange(other.tail, nullptr)},
|
|
|
|
len{std::exchange(other.len, 0)} {}
|
2015-03-11 13:35:47 +01:00
|
|
|
|
2016-10-15 11:51:22 +02:00
|
|
|
DList &operator=(DList &&other) noexcept {
|
2015-03-11 13:35:47 +01:00
|
|
|
if (this == &other) {
|
|
|
|
return *this;
|
|
|
|
}
|
2018-11-02 07:40:53 +01:00
|
|
|
head = std::exchange(other.head, nullptr);
|
|
|
|
tail = std::exchange(other.tail, nullptr);
|
|
|
|
len = std::exchange(other.len, 0);
|
2016-02-27 11:39:03 +01:00
|
|
|
|
2015-03-11 13:35:47 +01:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void append(T *t) {
|
2016-03-27 08:52:24 +02:00
|
|
|
++len;
|
2015-03-11 13:35:47 +01:00
|
|
|
if (tail) {
|
|
|
|
tail->dlnext = t;
|
|
|
|
t->dlprev = tail;
|
|
|
|
tail = t;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
head = tail = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
void remove(T *t) {
|
2016-03-27 08:52:24 +02:00
|
|
|
--len;
|
2015-03-11 13:35:47 +01:00
|
|
|
auto p = t->dlprev;
|
|
|
|
auto n = t->dlnext;
|
|
|
|
if (p) {
|
|
|
|
p->dlnext = n;
|
|
|
|
}
|
|
|
|
if (head == t) {
|
|
|
|
head = n;
|
|
|
|
}
|
|
|
|
if (n) {
|
|
|
|
n->dlprev = p;
|
|
|
|
}
|
|
|
|
if (tail == t) {
|
|
|
|
tail = p;
|
|
|
|
}
|
|
|
|
t->dlprev = t->dlnext = nullptr;
|
|
|
|
}
|
|
|
|
|
2015-03-11 16:17:05 +01:00
|
|
|
bool empty() const { return head == nullptr; }
|
|
|
|
|
2016-03-27 08:52:24 +02:00
|
|
|
size_t size() const { return len; }
|
2016-02-27 11:39:03 +01:00
|
|
|
|
2015-03-11 13:35:47 +01:00
|
|
|
T *head, *tail;
|
2016-03-27 08:52:24 +02:00
|
|
|
size_t len;
|
2015-03-11 13:35:47 +01:00
|
|
|
};
|
|
|
|
|
2015-03-11 16:17:05 +01:00
|
|
|
template <typename T> void dlist_delete_all(DList<T> &dl) {
|
|
|
|
for (auto e = dl.head; e;) {
|
|
|
|
auto next = e->dlnext;
|
|
|
|
delete e;
|
|
|
|
e = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-21 07:51:32 +02:00
|
|
|
// User-defined literals for K, M, and G (powers of 1024)
|
|
|
|
|
2015-06-21 07:32:47 +02:00
|
|
|
constexpr unsigned long long operator"" _k(unsigned long long k) {
|
|
|
|
return k * 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr unsigned long long operator"" _m(unsigned long long m) {
|
|
|
|
return m * 1024 * 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr unsigned long long operator"" _g(unsigned long long g) {
|
|
|
|
return g * 1024 * 1024 * 1024;
|
|
|
|
}
|
|
|
|
|
2015-06-21 07:51:32 +02:00
|
|
|
// User-defined literals for time, converted into double in seconds
|
|
|
|
|
2016-01-19 09:03:01 +01:00
|
|
|
// hours
|
2015-06-21 07:51:32 +02:00
|
|
|
constexpr double operator"" _h(unsigned long long h) { return h * 60 * 60; }
|
|
|
|
|
2016-01-19 09:03:01 +01:00
|
|
|
// minutes
|
2015-06-21 07:51:32 +02:00
|
|
|
constexpr double operator"" _min(unsigned long long min) { return min * 60; }
|
|
|
|
|
2016-01-19 09:03:01 +01:00
|
|
|
// seconds
|
|
|
|
constexpr double operator"" _s(unsigned long long s) { return s; }
|
|
|
|
|
|
|
|
// milliseconds
|
|
|
|
constexpr double operator"" _ms(unsigned long long ms) { return ms / 1000.; }
|
|
|
|
|
2015-09-25 19:38:45 +02:00
|
|
|
// Returns a copy of NULL-terminated string [first, last).
|
|
|
|
template <typename InputIt>
|
|
|
|
std::unique_ptr<char[]> strcopy(InputIt first, InputIt last) {
|
2018-10-15 16:02:44 +02:00
|
|
|
auto res = std::make_unique<char[]>(last - first + 1);
|
2015-09-25 19:38:45 +02:00
|
|
|
*std::copy(first, last, res.get()) = '\0';
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a copy of NULL-terminated string |val|.
|
|
|
|
inline std::unique_ptr<char[]> strcopy(const char *val) {
|
|
|
|
return strcopy(val, val + strlen(val));
|
|
|
|
}
|
|
|
|
|
2016-01-16 17:29:52 +01:00
|
|
|
inline std::unique_ptr<char[]> strcopy(const char *val, size_t n) {
|
|
|
|
return strcopy(val, val + n);
|
|
|
|
}
|
|
|
|
|
2015-09-25 19:38:45 +02:00
|
|
|
// Returns a copy of val.c_str().
|
|
|
|
inline std::unique_ptr<char[]> strcopy(const std::string &val) {
|
|
|
|
return strcopy(std::begin(val), std::end(val));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::unique_ptr<char[]> strcopy(const std::unique_ptr<char[]> &val) {
|
|
|
|
if (!val) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return strcopy(val.get());
|
|
|
|
}
|
|
|
|
|
2016-01-16 17:29:52 +01:00
|
|
|
inline std::unique_ptr<char[]> strcopy(const std::unique_ptr<char[]> &val,
|
|
|
|
size_t n) {
|
|
|
|
if (!val) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return strcopy(val.get(), val.get() + n);
|
|
|
|
}
|
|
|
|
|
2016-01-17 03:33:45 +01:00
|
|
|
// ImmutableString represents string that is immutable unlike
|
|
|
|
// std::string. It has c_str() and size() functions to mimic
|
|
|
|
// std::string. It manages buffer by itself. Just like std::string,
|
|
|
|
// c_str() returns NULL-terminated string, but NULL character may
|
2016-01-17 10:00:36 +01:00
|
|
|
// appear before the final terminal NULL.
|
2016-01-17 03:33:45 +01:00
|
|
|
class ImmutableString {
|
|
|
|
public:
|
2016-01-17 07:04:09 +01:00
|
|
|
using traits_type = std::char_traits<char>;
|
|
|
|
using value_type = traits_type::char_type;
|
|
|
|
using allocator_type = std::allocator<char>;
|
|
|
|
using size_type = std::allocator_traits<allocator_type>::size_type;
|
|
|
|
using difference_type =
|
|
|
|
std::allocator_traits<allocator_type>::difference_type;
|
|
|
|
using const_reference = const value_type &;
|
|
|
|
using const_pointer = const value_type *;
|
|
|
|
using const_iterator = const_pointer;
|
2016-03-12 16:59:25 +01:00
|
|
|
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
|
2016-01-17 07:04:09 +01:00
|
|
|
|
2016-01-17 10:00:36 +01:00
|
|
|
ImmutableString() : len(0), base("") {}
|
2016-01-17 03:33:45 +01:00
|
|
|
ImmutableString(const char *s, size_t slen)
|
2016-04-29 07:42:18 +02:00
|
|
|
: len(slen), base(copystr(s, s + len)) {}
|
2016-08-26 15:40:59 +02:00
|
|
|
explicit ImmutableString(const char *s)
|
|
|
|
: len(strlen(s)), base(copystr(s, s + len)) {}
|
2016-08-26 15:52:08 +02:00
|
|
|
explicit ImmutableString(const std::string &s)
|
2016-04-29 07:42:18 +02:00
|
|
|
: len(s.size()), base(copystr(std::begin(s), std::end(s))) {}
|
2016-01-16 16:52:41 +01:00
|
|
|
template <typename InputIt>
|
2016-01-17 03:33:45 +01:00
|
|
|
ImmutableString(InputIt first, InputIt last)
|
2016-04-29 07:42:18 +02:00
|
|
|
: len(std::distance(first, last)), base(copystr(first, last)) {}
|
2016-01-17 03:33:45 +01:00
|
|
|
ImmutableString(const ImmutableString &other)
|
2016-04-29 07:42:18 +02:00
|
|
|
: len(other.len), base(copystr(std::begin(other), std::end(other))) {}
|
2016-10-15 11:36:04 +02:00
|
|
|
ImmutableString(ImmutableString &&other) noexcept
|
2018-11-02 07:40:53 +01:00
|
|
|
: len{std::exchange(other.len, 0)}, base{std::exchange(other.base, "")} {}
|
2016-01-17 13:31:30 +01:00
|
|
|
~ImmutableString() {
|
|
|
|
if (len) {
|
|
|
|
delete[] base;
|
|
|
|
}
|
|
|
|
}
|
2016-01-17 08:32:55 +01:00
|
|
|
|
2016-01-17 03:33:45 +01:00
|
|
|
ImmutableString &operator=(const ImmutableString &other) {
|
2016-01-16 16:52:41 +01:00
|
|
|
if (this == &other) {
|
|
|
|
return *this;
|
|
|
|
}
|
2016-01-17 13:31:30 +01:00
|
|
|
if (len) {
|
|
|
|
delete[] base;
|
|
|
|
}
|
2016-01-16 16:52:41 +01:00
|
|
|
len = other.len;
|
2016-04-29 07:42:18 +02:00
|
|
|
base = copystr(std::begin(other), std::end(other));
|
2016-01-16 16:52:41 +01:00
|
|
|
return *this;
|
|
|
|
}
|
2016-01-17 08:32:55 +01:00
|
|
|
ImmutableString &operator=(ImmutableString &&other) noexcept {
|
|
|
|
if (this == &other) {
|
|
|
|
return *this;
|
|
|
|
}
|
2016-01-17 13:31:30 +01:00
|
|
|
if (len) {
|
|
|
|
delete[] base;
|
|
|
|
}
|
2018-11-02 07:40:53 +01:00
|
|
|
len = std::exchange(other.len, 0);
|
|
|
|
base = std::exchange(other.base, "");
|
2016-01-17 08:32:55 +01:00
|
|
|
return *this;
|
|
|
|
}
|
2016-01-17 03:33:45 +01:00
|
|
|
|
2016-10-15 11:36:04 +02:00
|
|
|
template <size_t N> static ImmutableString from_lit(const char (&s)[N]) {
|
2016-01-17 03:33:45 +01:00
|
|
|
return ImmutableString(s, N - 1);
|
|
|
|
}
|
2016-01-16 16:52:41 +01:00
|
|
|
|
2016-01-21 09:12:40 +01:00
|
|
|
const_iterator begin() const { return base; };
|
|
|
|
const_iterator cbegin() const { return base; };
|
|
|
|
|
|
|
|
const_iterator end() const { return base + len; };
|
|
|
|
const_iterator cend() const { return base + len; };
|
|
|
|
|
2016-03-12 16:59:25 +01:00
|
|
|
const_reverse_iterator rbegin() const {
|
|
|
|
return const_reverse_iterator{base + len};
|
|
|
|
}
|
|
|
|
const_reverse_iterator crbegin() const {
|
|
|
|
return const_reverse_iterator{base + len};
|
|
|
|
}
|
|
|
|
|
|
|
|
const_reverse_iterator rend() const { return const_reverse_iterator{base}; }
|
|
|
|
const_reverse_iterator crend() const { return const_reverse_iterator{base}; }
|
|
|
|
|
2016-01-17 10:00:36 +01:00
|
|
|
const char *c_str() const { return base; }
|
2016-01-17 07:04:09 +01:00
|
|
|
size_type size() const { return len; }
|
2016-01-17 10:09:12 +01:00
|
|
|
bool empty() const { return len == 0; }
|
|
|
|
const_reference operator[](size_type pos) const { return *(base + pos); }
|
2016-01-16 16:52:41 +01:00
|
|
|
|
2016-01-17 03:33:45 +01:00
|
|
|
private:
|
2016-04-29 07:42:18 +02:00
|
|
|
template <typename InputIt> const char *copystr(InputIt first, InputIt last) {
|
|
|
|
if (first == last) {
|
2016-01-17 13:31:30 +01:00
|
|
|
return "";
|
|
|
|
}
|
2016-04-29 07:42:18 +02:00
|
|
|
auto res = new char[std::distance(first, last) + 1];
|
|
|
|
*std::copy(first, last, res) = '\0';
|
2016-01-17 13:31:30 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2016-01-17 07:04:09 +01:00
|
|
|
size_type len;
|
2016-01-17 10:00:36 +01:00
|
|
|
const char *base;
|
2016-01-16 16:52:41 +01:00
|
|
|
};
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
inline bool operator==(const ImmutableString &lhs, const ImmutableString &rhs) {
|
|
|
|
return lhs.size() == rhs.size() &&
|
|
|
|
std::equal(std::begin(lhs), std::end(lhs), std::begin(rhs));
|
|
|
|
}
|
|
|
|
|
2016-01-21 09:12:40 +01:00
|
|
|
inline bool operator==(const ImmutableString &lhs, const std::string &rhs) {
|
|
|
|
return lhs.size() == rhs.size() &&
|
|
|
|
std::equal(std::begin(lhs), std::end(lhs), std::begin(rhs));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator==(const std::string &lhs, const ImmutableString &rhs) {
|
|
|
|
return rhs == lhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator==(const ImmutableString &lhs, const char *rhs) {
|
|
|
|
return lhs.size() == strlen(rhs) &&
|
|
|
|
std::equal(std::begin(lhs), std::end(lhs), rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator==(const char *lhs, const ImmutableString &rhs) {
|
|
|
|
return rhs == lhs;
|
|
|
|
}
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
inline bool operator!=(const ImmutableString &lhs, const ImmutableString &rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
2016-01-21 09:12:40 +01:00
|
|
|
inline bool operator!=(const ImmutableString &lhs, const std::string &rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator!=(const std::string &lhs, const ImmutableString &rhs) {
|
|
|
|
return !(rhs == lhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator!=(const ImmutableString &lhs, const char *rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator!=(const char *lhs, const ImmutableString &rhs) {
|
|
|
|
return !(rhs == lhs);
|
|
|
|
}
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
inline std::ostream &operator<<(std::ostream &o, const ImmutableString &s) {
|
|
|
|
return o.write(s.c_str(), s.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::string &operator+=(std::string &lhs, const ImmutableString &rhs) {
|
|
|
|
lhs.append(rhs.c_str(), rhs.size());
|
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
2016-01-17 03:33:45 +01:00
|
|
|
// StringRef is a reference to a string owned by something else. So
|
|
|
|
// it behaves like simple string, but it does not own pointer. When
|
|
|
|
// it is default constructed, it has empty string. You can freely
|
|
|
|
// copy or move around this struct, but never free its pointer. str()
|
|
|
|
// function can be used to export the content as std::string.
|
|
|
|
class StringRef {
|
|
|
|
public:
|
2016-01-17 07:04:09 +01:00
|
|
|
using traits_type = std::char_traits<char>;
|
|
|
|
using value_type = traits_type::char_type;
|
|
|
|
using allocator_type = std::allocator<char>;
|
|
|
|
using size_type = std::allocator_traits<allocator_type>::size_type;
|
|
|
|
using difference_type =
|
|
|
|
std::allocator_traits<allocator_type>::difference_type;
|
|
|
|
using const_reference = const value_type &;
|
|
|
|
using const_pointer = const value_type *;
|
|
|
|
using const_iterator = const_pointer;
|
2016-03-12 16:59:25 +01:00
|
|
|
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
|
2016-01-17 07:04:09 +01:00
|
|
|
|
2016-02-13 11:15:14 +01:00
|
|
|
constexpr StringRef() : base(""), len(0) {}
|
2016-01-21 09:12:40 +01:00
|
|
|
explicit StringRef(const std::string &s) : base(s.c_str()), len(s.size()) {}
|
|
|
|
explicit StringRef(const ImmutableString &s)
|
|
|
|
: base(s.c_str()), len(s.size()) {}
|
2016-02-28 13:35:26 +01:00
|
|
|
explicit StringRef(const char *s) : base(s), len(strlen(s)) {}
|
2016-03-12 09:29:07 +01:00
|
|
|
constexpr StringRef(const char *s, size_t n) : base(s), len(n) {}
|
2016-02-11 10:34:31 +01:00
|
|
|
template <typename CharT>
|
2017-01-09 13:15:53 +01:00
|
|
|
constexpr StringRef(const CharT *s, size_t n)
|
2016-02-11 10:34:31 +01:00
|
|
|
: base(reinterpret_cast<const char *>(s)), len(n) {}
|
2016-01-31 11:41:56 +01:00
|
|
|
template <typename InputIt>
|
|
|
|
StringRef(InputIt first, InputIt last)
|
2016-03-19 15:41:21 +01:00
|
|
|
: base(reinterpret_cast<const char *>(&*first)),
|
|
|
|
len(std::distance(first, last)) {}
|
2016-02-14 11:07:22 +01:00
|
|
|
template <typename InputIt>
|
|
|
|
StringRef(InputIt *first, InputIt *last)
|
2016-03-10 14:42:07 +01:00
|
|
|
: base(reinterpret_cast<const char *>(first)),
|
|
|
|
len(std::distance(first, last)) {}
|
2016-02-11 10:34:31 +01:00
|
|
|
template <typename CharT, size_t N>
|
2016-10-15 11:36:04 +02:00
|
|
|
constexpr static StringRef from_lit(const CharT (&s)[N]) {
|
2016-03-12 09:29:07 +01:00
|
|
|
return StringRef{s, N - 1};
|
2016-01-17 03:19:19 +01:00
|
|
|
}
|
2016-02-12 16:20:38 +01:00
|
|
|
static StringRef from_maybe_nullptr(const char *s) {
|
|
|
|
if (s == nullptr) {
|
|
|
|
return StringRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
return StringRef(s);
|
|
|
|
}
|
2016-01-16 16:52:41 +01:00
|
|
|
|
2016-03-20 09:55:17 +01:00
|
|
|
constexpr const_iterator begin() const { return base; };
|
|
|
|
constexpr const_iterator cbegin() const { return base; };
|
2016-01-17 07:04:09 +01:00
|
|
|
|
2016-03-20 09:55:17 +01:00
|
|
|
constexpr const_iterator end() const { return base + len; };
|
|
|
|
constexpr const_iterator cend() const { return base + len; };
|
2016-01-17 07:04:09 +01:00
|
|
|
|
2016-03-12 16:59:25 +01:00
|
|
|
const_reverse_iterator rbegin() const {
|
|
|
|
return const_reverse_iterator{base + len};
|
|
|
|
}
|
|
|
|
const_reverse_iterator crbegin() const {
|
|
|
|
return const_reverse_iterator{base + len};
|
|
|
|
}
|
|
|
|
|
|
|
|
const_reverse_iterator rend() const { return const_reverse_iterator{base}; }
|
|
|
|
const_reverse_iterator crend() const { return const_reverse_iterator{base}; }
|
|
|
|
|
2016-03-20 09:55:17 +01:00
|
|
|
constexpr const char *c_str() const { return base; }
|
|
|
|
constexpr size_type size() const { return len; }
|
|
|
|
constexpr bool empty() const { return len == 0; }
|
|
|
|
constexpr const_reference operator[](size_type pos) const {
|
|
|
|
return *(base + pos);
|
|
|
|
}
|
2016-01-16 16:52:41 +01:00
|
|
|
|
|
|
|
std::string str() const { return std::string(base, len); }
|
2016-02-11 10:34:31 +01:00
|
|
|
const uint8_t *byte() const {
|
|
|
|
return reinterpret_cast<const uint8_t *>(base);
|
|
|
|
}
|
2016-01-16 16:52:41 +01:00
|
|
|
|
2016-01-17 03:33:45 +01:00
|
|
|
private:
|
2016-01-16 16:52:41 +01:00
|
|
|
const char *base;
|
2016-01-17 07:04:09 +01:00
|
|
|
size_type len;
|
2016-01-16 16:52:41 +01:00
|
|
|
};
|
|
|
|
|
2016-03-09 13:15:32 +01:00
|
|
|
inline bool operator==(const StringRef &lhs, const StringRef &rhs) {
|
|
|
|
return lhs.size() == rhs.size() &&
|
|
|
|
std::equal(std::begin(lhs), std::end(lhs), std::begin(rhs));
|
|
|
|
}
|
|
|
|
|
2016-01-17 07:04:09 +01:00
|
|
|
inline bool operator==(const StringRef &lhs, const std::string &rhs) {
|
|
|
|
return lhs.size() == rhs.size() &&
|
|
|
|
std::equal(std::begin(lhs), std::end(lhs), std::begin(rhs));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator==(const std::string &lhs, const StringRef &rhs) {
|
|
|
|
return rhs == lhs;
|
|
|
|
}
|
|
|
|
|
2016-01-17 08:32:55 +01:00
|
|
|
inline bool operator==(const StringRef &lhs, const char *rhs) {
|
|
|
|
return lhs.size() == strlen(rhs) &&
|
|
|
|
std::equal(std::begin(lhs), std::end(lhs), rhs);
|
|
|
|
}
|
|
|
|
|
2016-03-12 16:59:25 +01:00
|
|
|
inline bool operator==(const StringRef &lhs, const ImmutableString &rhs) {
|
|
|
|
return lhs.size() == rhs.size() &&
|
|
|
|
std::equal(std::begin(lhs), std::end(lhs), std::begin(rhs));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator==(const ImmutableString &lhs, const StringRef &rhs) {
|
|
|
|
return rhs == lhs;
|
|
|
|
}
|
|
|
|
|
2016-01-17 08:32:55 +01:00
|
|
|
inline bool operator==(const char *lhs, const StringRef &rhs) {
|
|
|
|
return rhs == lhs;
|
|
|
|
}
|
|
|
|
|
2016-06-02 16:47:41 +02:00
|
|
|
inline bool operator!=(const StringRef &lhs, const StringRef &rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
2016-01-17 08:42:19 +01:00
|
|
|
inline bool operator!=(const StringRef &lhs, const std::string &rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator!=(const std::string &lhs, const StringRef &rhs) {
|
|
|
|
return !(rhs == lhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator!=(const StringRef &lhs, const char *rhs) {
|
|
|
|
return !(lhs == rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool operator!=(const char *lhs, const StringRef &rhs) {
|
|
|
|
return !(rhs == lhs);
|
|
|
|
}
|
|
|
|
|
2016-03-09 13:15:32 +01:00
|
|
|
inline bool operator<(const StringRef &lhs, const StringRef &rhs) {
|
|
|
|
return std::lexicographical_compare(std::begin(lhs), std::end(lhs),
|
|
|
|
std::begin(rhs), std::end(rhs));
|
|
|
|
}
|
|
|
|
|
2016-01-31 11:41:56 +01:00
|
|
|
inline std::ostream &operator<<(std::ostream &o, const StringRef &s) {
|
|
|
|
return o.write(s.c_str(), s.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::string &operator+=(std::string &lhs, const StringRef &rhs) {
|
|
|
|
lhs.append(rhs.c_str(), rhs.size());
|
|
|
|
return lhs;
|
|
|
|
}
|
|
|
|
|
2015-10-17 16:34:05 +02:00
|
|
|
inline int run_app(std::function<int(int, char **)> app, int argc,
|
|
|
|
char **argv) {
|
|
|
|
try {
|
|
|
|
return app(argc, argv);
|
|
|
|
} catch (const std::bad_alloc &) {
|
|
|
|
fputs("Out of memory\n", stderr);
|
|
|
|
} catch (const std::exception &x) {
|
2015-10-21 18:34:01 +02:00
|
|
|
fprintf(stderr, "Caught %s:\n%s\n", typeid(x).name(), x.what());
|
2015-10-17 16:34:05 +02:00
|
|
|
} catch (...) {
|
2015-10-17 17:10:08 +02:00
|
|
|
fputs("Unknown exception caught\n", stderr);
|
2015-10-17 16:34:05 +02:00
|
|
|
}
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2015-02-05 15:21:53 +01:00
|
|
|
} // namespace nghttp2
|
|
|
|
|
2019-01-19 03:12:05 +01:00
|
|
|
namespace std {
|
|
|
|
template <> struct hash<nghttp2::StringRef> {
|
|
|
|
std::size_t operator()(const nghttp2::StringRef &s) const noexcept {
|
|
|
|
// 32 bit FNV-1a:
|
|
|
|
// https://tools.ietf.org/html/draft-eastlake-fnv-16#section-6.1.1
|
|
|
|
uint32_t h = 2166136261u;
|
|
|
|
for (auto c : s) {
|
|
|
|
h ^= static_cast<uint8_t>(c);
|
|
|
|
h += (h << 1) + (h << 4) + (h << 7) + (h << 8) + (h << 24);
|
|
|
|
}
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace std
|
|
|
|
|
2015-02-05 15:21:53 +01:00
|
|
|
#endif // TEMPLATE_H
|