2016-07-26 04:06:31 +02:00
|
|
|
/*
|
|
|
|
* charybdis: 21st Century IRC++d
|
|
|
|
* util.h: Miscellaneous utilities
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 Jason Volk <jason@zemos.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice is present in all copies.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_UTIL_H
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
namespace ircd {
|
2016-07-31 03:50:27 +02:00
|
|
|
inline namespace util {
|
2016-07-26 04:06:31 +02:00
|
|
|
|
|
|
|
#define IRCD_EXPCAT(a, b) a ## b
|
|
|
|
#define IRCD_CONCAT(a, b) IRCD_EXPCAT(a, b)
|
|
|
|
#define IRCD_UNIQUE(a) IRCD_CONCAT(a, __COUNTER__)
|
|
|
|
|
|
|
|
|
|
|
|
#define IRCD_OVERLOAD(NAME) \
|
|
|
|
struct NAME##_t {}; \
|
|
|
|
static constexpr NAME##_t NAME {};
|
|
|
|
|
|
|
|
|
2016-09-12 00:14:41 +02:00
|
|
|
#define IRCD_WEAK_TYPEDEF(TYPE, NAME) \
|
|
|
|
struct NAME \
|
|
|
|
:TYPE \
|
|
|
|
{ \
|
|
|
|
using TYPE::TYPE; \
|
|
|
|
};
|
|
|
|
|
2016-11-07 00:59:37 +01:00
|
|
|
#define IRCD_STRONG_TYPEDEF(TYPE, NAME) \
|
|
|
|
struct NAME \
|
|
|
|
{ \
|
|
|
|
TYPE val; \
|
|
|
|
\
|
|
|
|
explicit operator const TYPE &() const { return val; } \
|
|
|
|
explicit operator TYPE &() { return val; } \
|
2016-07-26 04:06:31 +02:00
|
|
|
};
|
|
|
|
|
2016-09-12 00:14:41 +02:00
|
|
|
#define IRCD_WEAK_T(TYPE) \
|
|
|
|
IRCD_WEAK_TYPEDEF(TYPE, IRCD_UNIQUE(weak_t))
|
2016-07-26 04:06:31 +02:00
|
|
|
|
|
|
|
// ex: using foo_t = IRCD_STRONG_T(int)
|
|
|
|
#define IRCD_STRONG_T(TYPE) \
|
|
|
|
IRCD_STRONG_TYPEDEF(TYPE, IRCD_UNIQUE(strong_t))
|
|
|
|
|
|
|
|
|
2016-08-14 02:18:07 +02:00
|
|
|
struct scope
|
|
|
|
{
|
2017-03-20 07:59:11 +01:00
|
|
|
struct nominal;
|
|
|
|
struct exceptional;
|
2017-03-13 19:59:00 +01:00
|
|
|
|
2016-08-14 02:18:07 +02:00
|
|
|
const std::function<void ()> func;
|
|
|
|
|
2017-03-13 19:59:00 +01:00
|
|
|
template<class F>
|
2017-03-20 07:59:11 +01:00
|
|
|
scope(F &&func): func(std::forward<F>(func)) {}
|
|
|
|
scope() = default;
|
2016-09-12 05:46:16 +02:00
|
|
|
scope(const scope &) = delete;
|
2017-03-20 07:59:11 +01:00
|
|
|
scope &operator=(const scope &) = delete;
|
2017-03-13 19:59:00 +01:00
|
|
|
~scope() noexcept
|
|
|
|
{
|
|
|
|
func();
|
|
|
|
}
|
2016-08-14 02:18:07 +02:00
|
|
|
};
|
|
|
|
|
2017-03-20 07:59:11 +01:00
|
|
|
struct scope::nominal
|
|
|
|
:scope
|
2016-09-12 05:46:16 +02:00
|
|
|
{
|
2017-03-13 19:59:00 +01:00
|
|
|
template<class F>
|
2017-03-20 07:59:11 +01:00
|
|
|
nominal(F &&func)
|
|
|
|
:scope
|
|
|
|
{
|
|
|
|
[func(std::forward<F>(func))]
|
|
|
|
{
|
|
|
|
if(likely(!std::uncaught_exception()))
|
|
|
|
func();
|
|
|
|
}
|
|
|
|
}{}
|
|
|
|
|
|
|
|
nominal() = default;
|
|
|
|
};
|
2017-03-13 19:59:00 +01:00
|
|
|
|
2017-03-20 07:59:11 +01:00
|
|
|
struct scope::exceptional
|
|
|
|
:scope
|
|
|
|
{
|
|
|
|
template<class F>
|
|
|
|
exceptional(F &&func)
|
|
|
|
:scope
|
2017-03-13 19:59:00 +01:00
|
|
|
{
|
2017-03-20 07:59:11 +01:00
|
|
|
[func(std::forward<F>(func))]
|
|
|
|
{
|
|
|
|
if(unlikely(std::uncaught_exception()))
|
|
|
|
func();
|
|
|
|
}
|
|
|
|
}{}
|
|
|
|
|
|
|
|
exceptional() = default;
|
2017-03-13 19:59:00 +01:00
|
|
|
};
|
2016-09-12 05:46:16 +02:00
|
|
|
|
2016-08-14 02:18:07 +02:00
|
|
|
|
2017-03-20 07:59:11 +01:00
|
|
|
template<class T>
|
|
|
|
using custom_ptr = std::unique_ptr<T, std::function<void (T *) noexcept>>;
|
|
|
|
|
|
|
|
|
2017-03-21 02:04:19 +01:00
|
|
|
//
|
|
|
|
// Iteration of a tuple
|
|
|
|
//
|
|
|
|
// for_each(tuple, [](auto&& elem) { ... });
|
|
|
|
|
2017-03-23 23:03:15 +01:00
|
|
|
template<size_t i,
|
|
|
|
class func,
|
|
|
|
class... args>
|
|
|
|
typename std::enable_if<i == std::tuple_size<std::tuple<args...>>::value, void>::type
|
|
|
|
for_each(std::tuple<args...> &t,
|
|
|
|
func&& f)
|
|
|
|
{}
|
|
|
|
|
2017-03-21 02:04:19 +01:00
|
|
|
template<size_t i,
|
|
|
|
class func,
|
|
|
|
class... args>
|
|
|
|
typename std::enable_if<i == std::tuple_size<std::tuple<args...>>::value, void>::type
|
|
|
|
for_each(const std::tuple<args...> &t,
|
|
|
|
func&& f)
|
|
|
|
{}
|
|
|
|
|
|
|
|
template<size_t i = 0,
|
|
|
|
class func,
|
|
|
|
class... args>
|
|
|
|
typename std::enable_if<i < std::tuple_size<std::tuple<args...>>::value, void>::type
|
|
|
|
for_each(const std::tuple<args...> &t,
|
|
|
|
func&& f)
|
|
|
|
{
|
|
|
|
f(std::get<i>(t));
|
|
|
|
for_each<i+1>(t, std::forward<func>(f));
|
|
|
|
}
|
|
|
|
|
2017-03-23 23:03:15 +01:00
|
|
|
template<size_t i = 0,
|
|
|
|
class func,
|
|
|
|
class... args>
|
|
|
|
typename std::enable_if<i < std::tuple_size<std::tuple<args...>>::value, void>::type
|
|
|
|
for_each(std::tuple<args...> &t,
|
|
|
|
func&& f)
|
|
|
|
{
|
|
|
|
f(std::get<i>(t));
|
|
|
|
for_each<i+1>(t, std::forward<func>(f));
|
|
|
|
}
|
|
|
|
|
2017-03-21 02:04:19 +01:00
|
|
|
|
2017-03-21 03:13:12 +01:00
|
|
|
//
|
|
|
|
// Iteration of a tuple until() style: your closure returns true to continue, false
|
|
|
|
// to break. until() then remains true to the end, or returns false if not.
|
|
|
|
|
2017-03-23 23:03:15 +01:00
|
|
|
template<size_t i,
|
|
|
|
class func,
|
|
|
|
class... args>
|
|
|
|
typename std::enable_if<i == std::tuple_size<std::tuple<args...>>::value, bool>::type
|
|
|
|
until(std::tuple<args...> &t,
|
|
|
|
func&& f)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-03-21 03:13:12 +01:00
|
|
|
template<size_t i,
|
|
|
|
class func,
|
|
|
|
class... args>
|
|
|
|
typename std::enable_if<i == std::tuple_size<std::tuple<args...>>::value, bool>::type
|
|
|
|
until(const std::tuple<args...> &t,
|
|
|
|
func&& f)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-03-23 23:03:15 +01:00
|
|
|
template<size_t i = 0,
|
|
|
|
class func,
|
|
|
|
class... args>
|
|
|
|
typename std::enable_if<i < std::tuple_size<std::tuple<args...>>::value, bool>::type
|
|
|
|
until(std::tuple<args...> &t,
|
|
|
|
func&& f)
|
|
|
|
{
|
|
|
|
return f(std::get<i>(t))? until<i+1>(t, std::forward<func>(f)) : false;
|
|
|
|
}
|
|
|
|
|
2017-03-21 03:13:12 +01:00
|
|
|
template<size_t i = 0,
|
|
|
|
class func,
|
|
|
|
class... args>
|
|
|
|
typename std::enable_if<i < std::tuple_size<std::tuple<args...>>::value, bool>::type
|
|
|
|
until(const std::tuple<args...> &t,
|
|
|
|
func&& f)
|
|
|
|
{
|
|
|
|
return f(std::get<i>(t))? until<i+1>(t, std::forward<func>(f)) : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-14 05:35:38 +02:00
|
|
|
// For conforming enums include a _NUM_ as the last element,
|
|
|
|
// then num_of<my_enum>() works
|
|
|
|
template<class Enum>
|
|
|
|
constexpr
|
|
|
|
typename std::underlying_type<Enum>::type
|
|
|
|
num_of()
|
|
|
|
{
|
|
|
|
return static_cast<typename std::underlying_type<Enum>::type>(Enum::_NUM_);
|
|
|
|
}
|
|
|
|
|
2016-08-26 05:43:14 +02:00
|
|
|
// Iteration of a num_of() conforming enum
|
|
|
|
template<class Enum>
|
|
|
|
typename std::enable_if<std::is_enum<Enum>::value, void>::type
|
|
|
|
for_each(const std::function<void (const Enum &)> &func)
|
|
|
|
{
|
|
|
|
for(size_t i(0); i < num_of<Enum>(); ++i)
|
|
|
|
func(static_cast<Enum>(i));
|
|
|
|
}
|
|
|
|
|
2016-08-14 05:35:38 +02:00
|
|
|
|
2016-08-23 00:48:02 +02:00
|
|
|
/**
|
|
|
|
* flag-enum utilities
|
|
|
|
*
|
|
|
|
* This relaxes the strong typing of enums to allow bitflags with operations on the elements
|
|
|
|
* with intuitive behavior.
|
|
|
|
*
|
|
|
|
* If the project desires absolute guarantees on the strong enum typing then this can be tucked
|
|
|
|
* away in some namespace and imported into select scopes instead.
|
|
|
|
*/
|
|
|
|
|
|
|
|
template<class Enum>
|
2016-09-04 15:42:45 +02:00
|
|
|
constexpr
|
2016-08-23 00:48:02 +02:00
|
|
|
typename std::enable_if<std::is_enum<Enum>::value, Enum>::type
|
|
|
|
operator~(const Enum &a)
|
|
|
|
{
|
|
|
|
using enum_t = typename std::underlying_type<Enum>::type;
|
|
|
|
|
|
|
|
return static_cast<Enum>(~static_cast<enum_t>(a));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Enum>
|
2016-09-04 15:42:45 +02:00
|
|
|
constexpr
|
2016-08-23 00:48:02 +02:00
|
|
|
typename std::enable_if<std::is_enum<Enum>::value, bool>::type
|
|
|
|
operator!(const Enum &a)
|
|
|
|
{
|
|
|
|
using enum_t = typename std::underlying_type<Enum>::type;
|
|
|
|
|
|
|
|
return !static_cast<enum_t>(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Enum>
|
2016-09-04 15:42:45 +02:00
|
|
|
constexpr
|
2016-08-23 00:48:02 +02:00
|
|
|
typename std::enable_if<std::is_enum<Enum>::value, Enum>::type
|
|
|
|
operator|(const Enum &a, const Enum &b)
|
|
|
|
{
|
|
|
|
using enum_t = typename std::underlying_type<Enum>::type;
|
|
|
|
|
|
|
|
return static_cast<Enum>(static_cast<enum_t>(a) | static_cast<enum_t>(b));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Enum>
|
2016-09-04 15:42:45 +02:00
|
|
|
constexpr
|
2016-08-23 00:48:02 +02:00
|
|
|
typename std::enable_if<std::is_enum<Enum>::value, Enum>::type
|
|
|
|
operator&(const Enum &a, const Enum &b)
|
|
|
|
{
|
|
|
|
using enum_t = typename std::underlying_type<Enum>::type;
|
|
|
|
|
|
|
|
return static_cast<Enum>(static_cast<enum_t>(a) & static_cast<enum_t>(b));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Enum>
|
2016-09-04 15:42:45 +02:00
|
|
|
constexpr
|
2016-08-23 00:48:02 +02:00
|
|
|
typename std::enable_if<std::is_enum<Enum>::value, Enum>::type
|
|
|
|
operator^(const Enum &a, const Enum &b)
|
|
|
|
{
|
|
|
|
using enum_t = typename std::underlying_type<Enum>::type;
|
|
|
|
|
|
|
|
return static_cast<Enum>(static_cast<enum_t>(a) ^ static_cast<enum_t>(b));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Enum>
|
2016-09-04 15:42:45 +02:00
|
|
|
constexpr
|
2016-08-23 00:48:02 +02:00
|
|
|
typename std::enable_if<std::is_enum<Enum>::value, Enum &>::type
|
|
|
|
operator|=(Enum &a, const Enum &b)
|
|
|
|
{
|
|
|
|
using enum_t = typename std::underlying_type<Enum>::type;
|
|
|
|
|
|
|
|
return (a = (a | b));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Enum>
|
2016-09-04 15:42:45 +02:00
|
|
|
constexpr
|
2016-08-23 00:48:02 +02:00
|
|
|
typename std::enable_if<std::is_enum<Enum>::value, Enum &>::type
|
|
|
|
operator&=(Enum &a, const Enum &b)
|
|
|
|
{
|
|
|
|
using enum_t = typename std::underlying_type<Enum>::type;
|
|
|
|
|
|
|
|
return (a = (a & b));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class Enum>
|
2016-09-04 15:42:45 +02:00
|
|
|
constexpr
|
2016-08-23 00:48:02 +02:00
|
|
|
typename std::enable_if<std::is_enum<Enum>::value, Enum &>::type
|
|
|
|
operator^=(Enum &a, const Enum &b)
|
|
|
|
{
|
|
|
|
using enum_t = typename std::underlying_type<Enum>::type;
|
|
|
|
|
|
|
|
return (a = (a ^ b));
|
|
|
|
}
|
|
|
|
|
2016-08-25 09:59:58 +02:00
|
|
|
|
|
|
|
inline size_t
|
|
|
|
size(std::ostream &s)
|
|
|
|
{
|
|
|
|
const auto cur(s.tellp());
|
|
|
|
s.seekp(0, std::ios::end);
|
|
|
|
const auto ret(s.tellp());
|
|
|
|
s.seekp(cur, std::ios::beg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-26 05:43:53 +02:00
|
|
|
inline std::pair<time_t, int32_t>
|
|
|
|
microtime()
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, nullptr);
|
|
|
|
return { tv.tv_sec, tv.tv_usec };
|
|
|
|
}
|
|
|
|
|
|
|
|
inline ssize_t
|
|
|
|
microtime(char *const &buf,
|
|
|
|
const size_t &size)
|
|
|
|
{
|
|
|
|
const auto mt(microtime());
|
|
|
|
return snprintf(buf, size, "%zd.%06d", mt.first, mt.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-09-04 15:54:09 +02:00
|
|
|
template<class T>
|
2016-09-28 23:18:00 +02:00
|
|
|
auto
|
2016-09-04 15:54:09 +02:00
|
|
|
string(const T &s)
|
|
|
|
{
|
2016-10-11 07:02:57 +02:00
|
|
|
std::stringstream ss;
|
2016-10-26 07:41:29 +02:00
|
|
|
return static_cast<std::stringstream &>(ss << s).str();
|
2016-09-04 15:54:09 +02:00
|
|
|
}
|
|
|
|
|
2016-09-28 23:18:00 +02:00
|
|
|
inline auto
|
|
|
|
string(const char *const &buf, const size_t &size)
|
|
|
|
{
|
|
|
|
return std::string{buf, size};
|
|
|
|
}
|
|
|
|
|
|
|
|
inline auto
|
|
|
|
string(const uint8_t *const &buf, const size_t &size)
|
|
|
|
{
|
|
|
|
return string(reinterpret_cast<const char *>(buf), size);
|
|
|
|
}
|
|
|
|
|
2016-09-06 00:17:52 +02:00
|
|
|
inline auto
|
|
|
|
operator!(const std::string &str)
|
|
|
|
{
|
|
|
|
return str.empty();
|
|
|
|
}
|
2016-09-04 15:54:09 +02:00
|
|
|
|
2016-09-06 00:24:06 +02:00
|
|
|
|
|
|
|
constexpr size_t
|
|
|
|
hash(const char *const &str,
|
|
|
|
const size_t i = 0)
|
|
|
|
{
|
|
|
|
return !str[i]? 7681ULL : (hash(str, i+1) * 33ULL) ^ str[i];
|
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
inline size_t
|
|
|
|
hash(const std::string_view &str,
|
|
|
|
const size_t i = 0)
|
|
|
|
{
|
|
|
|
return i >= str.size()? 7681ULL : (hash(str, i+1) * 33ULL) ^ str.at(i);
|
|
|
|
}
|
|
|
|
|
2016-09-06 00:24:06 +02:00
|
|
|
inline size_t
|
|
|
|
hash(const std::string &str,
|
|
|
|
const size_t i = 0)
|
|
|
|
{
|
|
|
|
return i >= str.size()? 7681ULL : (hash(str, i+1) * 33ULL) ^ str.at(i);
|
|
|
|
}
|
|
|
|
|
2016-11-04 00:49:41 +01:00
|
|
|
constexpr size_t
|
|
|
|
hash(const char16_t *const &str,
|
|
|
|
const size_t i = 0)
|
|
|
|
{
|
|
|
|
return !str[i]? 7681ULL : (hash(str, i+1) * 33ULL) ^ str[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
inline size_t
|
|
|
|
hash(const std::u16string &str,
|
|
|
|
const size_t i = 0)
|
|
|
|
{
|
|
|
|
return i >= str.size()? 7681ULL : (hash(str, i+1) * 33ULL) ^ str.at(i);
|
|
|
|
}
|
|
|
|
|
2016-09-06 00:24:06 +02:00
|
|
|
|
2016-09-06 18:22:29 +02:00
|
|
|
/***
|
|
|
|
* C++14 user defined literals
|
|
|
|
*
|
|
|
|
* These are very useful for dealing with space. Simply write 8_MiB and it's
|
|
|
|
* as if a macro turned that into (8 * 1024 * 1024) at compile time.
|
|
|
|
*/
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
#define IRCD_UNIT_LITERAL_LL(name, morphism) \
|
2016-09-06 18:22:29 +02:00
|
|
|
constexpr auto \
|
|
|
|
operator"" _ ## name(const unsigned long long val) \
|
|
|
|
{ \
|
|
|
|
return (morphism); \
|
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
#define IRCD_UNIT_LITERAL_LD(name, morphism) \
|
2016-09-06 18:22:29 +02:00
|
|
|
constexpr auto \
|
|
|
|
operator"" _ ## name(const long double val) \
|
|
|
|
{ \
|
|
|
|
return (morphism); \
|
|
|
|
}
|
|
|
|
|
|
|
|
// IEC unit literals
|
2016-11-29 16:23:38 +01:00
|
|
|
IRCD_UNIT_LITERAL_LL( B, val )
|
|
|
|
IRCD_UNIT_LITERAL_LL( KiB, val * 1024LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( MiB, val * 1024LL * 1024LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( GiB, val * 1024LL * 1024LL * 1024LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( TiB, val * 1024LL * 1024LL * 1024LL * 1024LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( PiB, val * 1024LL * 1024LL * 1024LL * 1024LL * 1024LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( EiB, val * 1024LL * 1024LL * 1024LL * 1024LL * 1024LL * 1024LL )
|
|
|
|
|
|
|
|
IRCD_UNIT_LITERAL_LD( B, val )
|
|
|
|
IRCD_UNIT_LITERAL_LD( KiB, val * 1024.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( MiB, val * 1024.0L * 1024.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( GiB, val * 1024.0L * 1024.0L * 1024.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( TiB, val * 1024.0L * 1024.0L * 1024.0L * 1024.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( PiB, val * 1024.0L * 1024.0L * 1024.0L * 1024.0L * 1024.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( EiB, val * 1024.0L * 1024.0L * 1024.0L * 1024.0L * 1024.0L * 1024.0L )
|
2016-09-06 18:22:29 +02:00
|
|
|
|
|
|
|
// SI unit literals
|
2016-11-29 16:23:38 +01:00
|
|
|
IRCD_UNIT_LITERAL_LL( KB, val * 1000LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( MB, val * 1000LL * 1000LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( GB, val * 1000LL * 1000LL * 1000LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( TB, val * 1000LL * 1000LL * 1000LL * 1000LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( PB, val * 1000LL * 1000LL * 1000LL * 1000LL * 1000LL )
|
|
|
|
IRCD_UNIT_LITERAL_LL( EB, val * 1000LL * 1000LL * 1000LL * 1000LL * 1000LL * 1000LL )
|
2016-09-06 18:22:29 +02:00
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
IRCD_UNIT_LITERAL_LD( KB, val * 1000.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( MB, val * 1000.0L * 1000.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( GB, val * 1000.0L * 1000.0L * 1000.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( TB, val * 1000.0L * 1000.0L * 1000.0L * 1000.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( PB, val * 1000.0L * 1000.0L * 1000.0L * 1000.0L * 1000.0L )
|
|
|
|
IRCD_UNIT_LITERAL_LD( EB, val * 1000.0L * 1000.0L * 1000.0L * 1000.0L * 1000.0L * 1000.0L )
|
2016-09-06 18:22:29 +02:00
|
|
|
|
|
|
|
|
2016-09-06 18:50:59 +02:00
|
|
|
/* Output the sizeof a structure at compile time.
|
|
|
|
* This stops the compiler with an error (good) containing the size of the target
|
|
|
|
* in the message.
|
|
|
|
*
|
|
|
|
* example: struct foo {}; IRCD_TEST_SIZEOF(foo)
|
|
|
|
*/
|
|
|
|
|
|
|
|
template<size_t SIZE>
|
|
|
|
struct _TEST_SIZEOF_;
|
|
|
|
|
|
|
|
#define IRCD_TEST_SIZEOF(name) \
|
|
|
|
ircd::util::_TEST_SIZEOF_<sizeof(name)> _test_;
|
|
|
|
|
2016-09-07 23:39:05 +02:00
|
|
|
|
|
|
|
/* This is a template alternative to nothrow overloads, which
|
|
|
|
* allows keeping the function arguments sanitized of the thrownness.
|
|
|
|
*/
|
|
|
|
|
|
|
|
template<class exception_t>
|
|
|
|
constexpr bool
|
|
|
|
is_nothrow()
|
|
|
|
{
|
|
|
|
return std::is_same<exception_t, std::nothrow_t>::value;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class exception_t = std::nothrow_t,
|
|
|
|
class return_t = bool>
|
|
|
|
using nothrow_overload = typename std::enable_if<is_nothrow<exception_t>(), return_t>::type;
|
|
|
|
|
|
|
|
template<class exception_t,
|
|
|
|
class return_t = void>
|
|
|
|
using throw_overload = typename std::enable_if<!is_nothrow<exception_t>(), return_t>::type;
|
|
|
|
|
|
|
|
|
2016-09-20 23:52:57 +02:00
|
|
|
//
|
|
|
|
// Test if type is forward declared or complete
|
|
|
|
//
|
|
|
|
|
|
|
|
template<class T,
|
|
|
|
class = void>
|
|
|
|
struct is_complete
|
|
|
|
:std::false_type
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
struct is_complete<T, decltype(void(sizeof(T)))>
|
|
|
|
:std::true_type
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
//
|
|
|
|
// Convenience constexprs for iterators
|
|
|
|
//
|
|
|
|
|
|
|
|
template<class It>
|
|
|
|
constexpr auto
|
|
|
|
is_iterator()
|
|
|
|
{
|
|
|
|
return std::is_base_of<typename std::iterator_traits<It>::value_type, It>::value;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class It>
|
|
|
|
constexpr auto
|
|
|
|
is_forward_iterator()
|
|
|
|
{
|
|
|
|
return std::is_base_of<std::forward_iterator_tag, typename std::iterator_traits<It>::iterator_category>::value;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class It>
|
|
|
|
constexpr auto
|
|
|
|
is_input_iterator()
|
|
|
|
{
|
|
|
|
return std::is_base_of<std::forward_iterator_tag, typename std::iterator_traits<It>::iterator_category>::value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// std::next with out_of_range exception
|
|
|
|
template<class It>
|
|
|
|
typename std::enable_if<is_forward_iterator<It>() || is_input_iterator<It>(), It>::type
|
|
|
|
at(It &&start,
|
|
|
|
It &&stop,
|
|
|
|
ssize_t i)
|
|
|
|
{
|
2017-03-11 04:31:20 +01:00
|
|
|
for(; start != stop; --i, std::advance(start, 1))
|
2016-11-29 16:23:38 +01:00
|
|
|
if(!i)
|
|
|
|
return start;
|
|
|
|
|
|
|
|
throw std::out_of_range("at(a, b, i): 'i' out of range");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-21 02:04:57 +01:00
|
|
|
//
|
|
|
|
// Customized std::string_view (experimental TS / C++17)
|
|
|
|
//
|
|
|
|
// This class adds iterator-based (char*, char*) construction to std::string_view which otherwise
|
|
|
|
// takes traditional (char*, size_t) arguments. This allows boost::spirit grammars to create
|
|
|
|
// string_view's using the raw[] directive achieving zero-copy/zero-allocation parsing.
|
|
|
|
//
|
2016-11-29 16:23:38 +01:00
|
|
|
struct string_view
|
|
|
|
:std::string_view
|
|
|
|
{
|
|
|
|
// (non-standard) our faux insert stub
|
2017-04-03 05:50:32 +02:00
|
|
|
// Tricks boost::spirit into thinking this is mutable string (hint: it's not).
|
|
|
|
// Instead, the raw[] directive in Qi grammar will use the iterator constructor only.
|
|
|
|
// __attribute__((error("string_view is not insertable (hint: use raw[] directive)")))
|
|
|
|
void insert(const iterator &, const char &)
|
|
|
|
{
|
|
|
|
assert(0);
|
|
|
|
}
|
2016-11-29 16:23:38 +01:00
|
|
|
|
|
|
|
// (non-standard) our iterator-based assign
|
|
|
|
string_view &assign(const char *const &begin, const char *const &end)
|
|
|
|
{
|
|
|
|
*this = std::string_view{begin, size_t(std::distance(begin, end))};
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// (non-standard) our iterator-based constructor
|
|
|
|
string_view(const char *const &begin, const char *const &end)
|
|
|
|
:std::string_view{begin, size_t(std::distance(begin, end))}
|
|
|
|
{}
|
|
|
|
|
|
|
|
// Required due to current instability in stdlib
|
|
|
|
//string_view(const std::experimental::string_view &esv)
|
|
|
|
//:std::string_view{esv}
|
|
|
|
//{}
|
|
|
|
|
|
|
|
// Required due to current instability in stdlib
|
|
|
|
string_view(const std::experimental::fundamentals_v1::basic_string_view<char> &bsv)
|
|
|
|
:std::string_view{bsv}
|
|
|
|
{}
|
|
|
|
|
|
|
|
string_view()
|
|
|
|
:std::string_view{}
|
|
|
|
{}
|
|
|
|
|
|
|
|
using std::string_view::string_view;
|
|
|
|
};
|
|
|
|
|
2017-04-03 05:18:38 +02:00
|
|
|
template<class T>
|
|
|
|
struct vector_view
|
|
|
|
{
|
|
|
|
T *_data { nullptr };
|
|
|
|
T *_stop { nullptr };
|
|
|
|
|
|
|
|
public:
|
|
|
|
T *data() const { return _data; }
|
|
|
|
size_t size() const { return std::distance(_data, _stop); }
|
|
|
|
bool empty() const { return !size(); }
|
|
|
|
|
|
|
|
const T *begin() const { return data(); }
|
|
|
|
const T *end() const { return _stop; }
|
|
|
|
const T *cbegin() { return data(); }
|
|
|
|
const T *cend() { return _stop; }
|
|
|
|
T *begin() { return data(); }
|
|
|
|
T *end() { return _stop; }
|
|
|
|
|
|
|
|
const T &operator[](const size_t &pos) const
|
|
|
|
{
|
|
|
|
return *(data() + pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
T &operator[](const size_t &pos)
|
|
|
|
{
|
|
|
|
return *(data() + pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
const T &at(const size_t &pos) const
|
|
|
|
{
|
|
|
|
if(unlikely(pos >= size()))
|
|
|
|
throw std::out_of_range();
|
|
|
|
|
|
|
|
return operator[](pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
T &at(const size_t &pos)
|
|
|
|
{
|
|
|
|
if(unlikely(pos >= size()))
|
|
|
|
throw std::out_of_range();
|
|
|
|
|
|
|
|
return operator[](pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
vector_view(T *const &start, T *const &stop)
|
|
|
|
:_data{start}
|
|
|
|
,_stop{stop}
|
|
|
|
{}
|
|
|
|
|
|
|
|
vector_view(T *const &start, const size_t &size)
|
|
|
|
:_data{start}
|
|
|
|
,_stop{start + size}
|
|
|
|
{}
|
|
|
|
|
|
|
|
template<class U,
|
|
|
|
class A>
|
|
|
|
vector_view(std::vector<U, A> &v)
|
|
|
|
:vector_view{v.data(), v.size()}
|
|
|
|
{}
|
|
|
|
|
|
|
|
template<size_t SIZE>
|
|
|
|
vector_view(T (&buffer)[SIZE])
|
|
|
|
:vector_view{std::addressof(buffer), SIZE}
|
|
|
|
{}
|
|
|
|
|
|
|
|
template<size_t SIZE>
|
|
|
|
vector_view(std::array<T, SIZE> &array)
|
|
|
|
:vector_view{array.data(), array.size()}
|
|
|
|
{}
|
|
|
|
|
|
|
|
vector_view() = default;
|
|
|
|
};
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-03-21 02:04:57 +01:00
|
|
|
//
|
|
|
|
// Error-checking closure for POSIX system calls. Note the usage is
|
|
|
|
// syscall(read, foo, bar, baz) not a macro like syscall(read(foo, bar, baz));
|
|
|
|
//
|
2016-11-29 16:23:38 +01:00
|
|
|
template<class function,
|
|
|
|
class... args>
|
|
|
|
auto
|
|
|
|
syscall(function&& f,
|
|
|
|
args&&... a)
|
|
|
|
{
|
|
|
|
const auto ret(f(a...));
|
|
|
|
if(unlikely(long(ret) == -1))
|
|
|
|
throw std::system_error(errno, std::system_category());
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-21 02:04:57 +01:00
|
|
|
//
|
|
|
|
// Similar to a va_list, but conveying std-c++ type data acquired from a variadic template
|
|
|
|
// parameter pack acting as the ...) elipsis. This is used to implement fmt::snprintf(),
|
|
|
|
// exceptions and logger et al in their respective translation units rather than the header
|
|
|
|
// files.
|
|
|
|
//
|
2017-03-23 23:03:54 +01:00
|
|
|
// Limitations: The choice of a fixed array of 12 is because std::initializer_list doesn't
|
2017-03-21 02:04:57 +01:00
|
|
|
// seem to work and other containers may be heavy in this context.
|
|
|
|
//
|
2017-03-18 01:36:09 +01:00
|
|
|
struct va_rtti
|
2017-03-23 23:03:54 +01:00
|
|
|
:std::array<std::pair<const void *, const std::type_info *>, 12>
|
2017-03-18 01:36:09 +01:00
|
|
|
{
|
2017-03-18 03:58:17 +01:00
|
|
|
size_t argc;
|
|
|
|
|
|
|
|
size_t size() const
|
|
|
|
{
|
|
|
|
return argc;
|
|
|
|
}
|
|
|
|
|
2017-03-18 01:36:09 +01:00
|
|
|
template<class... Args>
|
|
|
|
va_rtti(Args&&... args)
|
2017-03-23 23:03:54 +01:00
|
|
|
:std::array<std::pair<const void *, const std::type_info *>, 12>
|
2017-03-18 03:58:17 +01:00
|
|
|
{{
|
|
|
|
std::make_pair(std::addressof(args), std::addressof(typeid(Args)))...
|
|
|
|
}}
|
|
|
|
,argc
|
2017-03-18 01:36:09 +01:00
|
|
|
{
|
2017-03-18 03:58:17 +01:00
|
|
|
sizeof...(args)
|
2017-03-18 07:29:25 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
assert(argc <= 8);
|
|
|
|
}
|
2017-03-18 01:36:09 +01:00
|
|
|
};
|
|
|
|
|
2017-03-23 23:03:54 +01:00
|
|
|
static_assert(sizeof(va_rtti) == 192 + 8, "");
|
2017-03-18 01:36:09 +01:00
|
|
|
|
2017-04-03 05:18:54 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// To collapse pairs of iterators down to a single type
|
|
|
|
//
|
|
|
|
template<class T>
|
|
|
|
struct iterators
|
|
|
|
:std::pair<typename T::iterator, typename T::iterator>
|
|
|
|
{
|
|
|
|
using std::pair<typename T::iterator, typename T::iterator>::pair;
|
|
|
|
|
|
|
|
iterators(T &t)
|
|
|
|
:std::pair<typename T::iterator, typename T::iterator>
|
|
|
|
{
|
|
|
|
std::begin(t), std::end(t)
|
|
|
|
}{}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
struct const_iterators
|
|
|
|
:std::pair<typename T::const_iterator, typename T::const_iterator>
|
|
|
|
{
|
|
|
|
using std::pair<typename T::const_iterator, typename T::const_iterator>::pair;
|
|
|
|
|
|
|
|
const_iterators(const T &t)
|
|
|
|
:std::pair<typename T::const_iterator, typename T::const_iterator>
|
|
|
|
{
|
|
|
|
std::begin(t), std::end(t)
|
|
|
|
}{}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
typename T::iterator
|
|
|
|
begin(const iterators<T> &i)
|
|
|
|
{
|
|
|
|
return i.first;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
typename T::iterator
|
|
|
|
end(const iterators<T> &i)
|
|
|
|
{
|
|
|
|
return i.second;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
typename T::const_iterator
|
|
|
|
begin(const const_iterators<T> &ci)
|
|
|
|
{
|
|
|
|
return ci.first;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
typename T::const_iterator
|
|
|
|
end(const const_iterators<T> &ci)
|
|
|
|
{
|
|
|
|
return ci.second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
} // namespace util
|
|
|
|
} // namespace ircd
|