2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
2018-01-10 22:16:34 +01:00
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
2018-02-04 03:22:01 +01:00
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
2018-01-10 22:16:34 +01:00
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
2018-02-04 03:22:01 +01:00
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2018-01-10 22:16:34 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_UTIL_H
|
|
|
|
|
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
/// Utilities for IRCd.
|
|
|
|
///
|
|
|
|
/// This is an inline namespace: everything declared in it will be
|
|
|
|
/// accessible in ircd::. By first opening it here as inline all
|
|
|
|
/// subsequent openings of this namespace do not have to use the inline
|
|
|
|
/// keyword but will still be inlined to ircd::.
|
|
|
|
inline namespace util {}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Fundamental macros
|
|
|
|
//
|
|
|
|
|
|
|
|
#define IRCD_EXPCAT(a, b) a ## b
|
|
|
|
#define IRCD_CONCAT(a, b) IRCD_EXPCAT(a, b)
|
|
|
|
#define IRCD_UNIQUE(a) IRCD_CONCAT(a, __COUNTER__)
|
|
|
|
|
2018-01-12 08:36:42 +01:00
|
|
|
#include "typography.h"
|
2018-01-10 22:16:34 +01:00
|
|
|
#include "unit_literal.h"
|
|
|
|
#include "unwind.h"
|
|
|
|
#include "reentrance.h"
|
|
|
|
#include "enum.h"
|
|
|
|
#include "syscall.h"
|
|
|
|
#include "va_rtti.h"
|
|
|
|
#include "unique_iterator.h"
|
|
|
|
#include "instance_list.h"
|
|
|
|
#include "bswap.h"
|
2018-01-12 11:52:45 +01:00
|
|
|
#include "tuple.h"
|
|
|
|
#include "timer.h"
|
|
|
|
#include "life_guard.h"
|
2018-04-25 01:47:19 +02:00
|
|
|
#include "string.h"
|
|
|
|
#include "pubsetbuf.h"
|
|
|
|
#include "pointers.h"
|
|
|
|
#include "iterator.h"
|
|
|
|
#include "nothrow.h"
|
2018-05-08 03:36:27 +02:00
|
|
|
#include "what.h"
|
2018-01-10 22:16:34 +01:00
|
|
|
|
|
|
|
// Unsorted section
|
|
|
|
namespace ircd {
|
|
|
|
namespace util {
|
|
|
|
|
2018-01-12 08:36:42 +01:00
|
|
|
/// A standard unique_ptr but accepting an std::function for T as its custom
|
|
|
|
/// deleter. This reduces the boilerplate burden on declaring the right
|
|
|
|
/// unique_ptr template for custom deleters every single time.
|
|
|
|
///
|
|
|
|
template<class T>
|
|
|
|
using custom_ptr = std::unique_ptr<T, std::function<void (T *) noexcept>>;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Misc size() participants.
|
|
|
|
//
|
|
|
|
|
2018-01-10 22:16:34 +01: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<size_t SIZE>
|
|
|
|
constexpr size_t
|
|
|
|
size(const char (&buf)[SIZE])
|
|
|
|
{
|
|
|
|
return SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<size_t SIZE>
|
|
|
|
constexpr size_t
|
|
|
|
size(const std::array<const char, SIZE> &buf)
|
|
|
|
{
|
|
|
|
return SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<size_t SIZE>
|
|
|
|
constexpr size_t
|
|
|
|
size(const std::array<char, SIZE> &buf)
|
|
|
|
{
|
|
|
|
return SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
constexpr typename std::enable_if<std::is_integral<T>::value, size_t>::type
|
|
|
|
size(const T &val)
|
|
|
|
{
|
|
|
|
return sizeof(T);
|
|
|
|
}
|
|
|
|
|
2018-01-12 08:36:42 +01:00
|
|
|
//
|
|
|
|
// Misc data() participants
|
|
|
|
//
|
|
|
|
|
2018-01-10 22:16:34 +01:00
|
|
|
template<size_t SIZE>
|
|
|
|
constexpr const char *
|
|
|
|
data(const char (&buf)[SIZE])
|
|
|
|
{
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<size_t SIZE>
|
|
|
|
constexpr char *
|
|
|
|
data(char (&buf)[SIZE])
|
|
|
|
{
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
constexpr typename std::enable_if<std::is_pod<T>::value, const uint8_t *>::type
|
|
|
|
data(const T &val)
|
|
|
|
{
|
|
|
|
return reinterpret_cast<const uint8_t *>(&val);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
constexpr typename std::enable_if<std::is_pod<T>::value, uint8_t *>::type
|
|
|
|
data(T &val)
|
|
|
|
{
|
|
|
|
return reinterpret_cast<uint8_t *>(&val);
|
|
|
|
}
|
|
|
|
|
2018-01-12 08:36:42 +01:00
|
|
|
//
|
|
|
|
// Misc bang participants
|
|
|
|
//
|
|
|
|
|
|
|
|
inline auto
|
|
|
|
operator!(const std::string &str)
|
|
|
|
{
|
|
|
|
return str.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline auto
|
|
|
|
operator!(const std::string_view &str)
|
|
|
|
{
|
|
|
|
return str.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Like std::next() but with out_of_range exception
|
|
|
|
///
|
2018-01-10 22:16:34 +01:00
|
|
|
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)
|
|
|
|
{
|
|
|
|
for(; start != stop; --i, std::advance(start, 1))
|
|
|
|
if(!i)
|
|
|
|
return start;
|
|
|
|
|
|
|
|
throw std::out_of_range("at(a, b, i): 'i' out of range");
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Some functors for STL
|
|
|
|
//
|
|
|
|
|
|
|
|
template<class container>
|
|
|
|
struct keys
|
|
|
|
{
|
|
|
|
auto &operator()(typename container::reference v) const
|
|
|
|
{
|
|
|
|
return v.first;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class container>
|
|
|
|
struct values
|
|
|
|
{
|
|
|
|
auto &operator()(typename container::reference v) const
|
|
|
|
{
|
|
|
|
return v.second;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Compile-time comparison of string literals
|
|
|
|
///
|
|
|
|
constexpr bool
|
|
|
|
_constexpr_equal(const char *a,
|
|
|
|
const char *b)
|
|
|
|
{
|
|
|
|
return *a == *b && (*a == '\0' || _constexpr_equal(a + 1, b + 1));
|
|
|
|
}
|
|
|
|
|
2018-01-12 08:36:42 +01:00
|
|
|
/// Iterator based until() matching std::for_each except the function
|
|
|
|
/// returns a bool to continue rather than void.
|
|
|
|
///
|
2018-01-10 22:16:34 +01:00
|
|
|
template<class it_a,
|
|
|
|
class it_b,
|
|
|
|
class boolean_function>
|
|
|
|
bool
|
|
|
|
until(it_a a,
|
|
|
|
const it_b &b,
|
|
|
|
boolean_function&& f)
|
|
|
|
{
|
|
|
|
for(; a != b; ++a)
|
|
|
|
if(!f(*a))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool
|
|
|
|
is_powerof2(const long long v)
|
|
|
|
{
|
|
|
|
return v && !(v & (v - 1LL));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace util
|
|
|
|
} // namespace ircd
|