2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 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. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2016-08-27 10:59:01 +02:00
|
|
|
|
2017-09-23 01:53:46 +02:00
|
|
|
/// !!! NOTE !!!
|
|
|
|
///
|
|
|
|
/// Many functions implemented here need to be replaced with karma generators
|
|
|
|
/// similar to ircd::fmt. Both the boost and std lexical conversions are an
|
|
|
|
/// order of magnitude slower than the formal generators. Some tokenizations
|
|
|
|
/// can also be replaced.
|
|
|
|
///
|
|
|
|
|
2018-02-06 06:23:34 +01:00
|
|
|
#include <boost/tokenizer.hpp>
|
|
|
|
#include <boost/lexical_cast.hpp>
|
2016-08-31 08:58:07 +02:00
|
|
|
|
2017-10-02 06:14:34 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// ircd/tokens.h
|
|
|
|
//
|
|
|
|
|
2017-03-18 04:25:14 +01:00
|
|
|
ircd::string_view
|
2017-09-21 04:28:33 +02:00
|
|
|
ircd::tokens_after(const string_view &str,
|
|
|
|
const char &sep,
|
|
|
|
const size_t &i)
|
2017-03-18 04:25:14 +01:00
|
|
|
{
|
2017-09-21 04:28:33 +02:00
|
|
|
const char ssep[2] { sep, '\0' };
|
|
|
|
return tokens_after(str, ssep, i);
|
2017-03-18 04:25:14 +01:00
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
ircd::string_view
|
2017-03-21 03:22:58 +01:00
|
|
|
ircd::tokens_after(const string_view &str,
|
|
|
|
const char *const &sep,
|
|
|
|
const size_t &i)
|
2016-11-29 16:23:38 +01:00
|
|
|
{
|
2017-03-21 03:22:58 +01:00
|
|
|
using type = string_view;
|
|
|
|
using iter = typename type::const_iterator;
|
|
|
|
using delim = boost::char_separator<char>;
|
|
|
|
|
|
|
|
const delim d(sep);
|
|
|
|
const boost::tokenizer<delim, iter, type> view(str, d);
|
|
|
|
|
|
|
|
auto it(begin(view));
|
|
|
|
for(size_t j(0); it != end(view); ++it, j++)
|
|
|
|
if(j > i)
|
|
|
|
return string_view{it->data(), str.data() + str.size()};
|
|
|
|
|
|
|
|
return {};
|
2016-11-29 16:23:38 +01:00
|
|
|
}
|
|
|
|
|
2017-09-21 04:28:33 +02:00
|
|
|
ircd::string_view
|
|
|
|
ircd::token_first(const string_view &str,
|
|
|
|
const char &sep)
|
|
|
|
{
|
|
|
|
const char ssep[2] { sep, '\0' };
|
|
|
|
return token(str, ssep, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::token_first(const string_view &str,
|
|
|
|
const char *const &sep)
|
|
|
|
{
|
|
|
|
return token(str, sep, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::token_last(const string_view &str,
|
|
|
|
const char &sep)
|
|
|
|
{
|
|
|
|
const char ssep[2] { sep, '\0' };
|
|
|
|
return token_last(str, ssep);
|
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::token_last(const string_view &str,
|
|
|
|
const char *const &sep)
|
|
|
|
{
|
|
|
|
using type = string_view;
|
|
|
|
using iter = typename type::const_iterator;
|
|
|
|
using delim = boost::char_separator<char>;
|
|
|
|
|
|
|
|
const delim d(sep);
|
|
|
|
const boost::tokenizer<delim, iter, type> view(str, d);
|
|
|
|
|
|
|
|
auto it(begin(view));
|
|
|
|
if(it == end(view))
|
|
|
|
return str.empty()? str : throw std::out_of_range("token out of range");
|
|
|
|
|
2017-04-05 07:12:32 +02:00
|
|
|
string_view ret(*it);
|
|
|
|
for(++it; it != end(view); ++it)
|
|
|
|
ret = *it;
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-04-05 07:12:32 +02:00
|
|
|
return ret;
|
2016-11-29 16:23:38 +01:00
|
|
|
}
|
|
|
|
|
2017-09-21 04:28:33 +02:00
|
|
|
ircd::string_view
|
|
|
|
ircd::token(const string_view &str,
|
|
|
|
const char &sep,
|
|
|
|
const size_t &i)
|
|
|
|
{
|
|
|
|
const char ssep[2] { sep, '\0' };
|
|
|
|
return token(str, ssep, i);
|
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
ircd::string_view
|
|
|
|
ircd::token(const string_view &str,
|
|
|
|
const char *const &sep,
|
|
|
|
const size_t &i)
|
|
|
|
{
|
|
|
|
using type = string_view;
|
|
|
|
using iter = typename type::const_iterator;
|
|
|
|
using delim = boost::char_separator<char>;
|
|
|
|
|
|
|
|
const delim d(sep);
|
|
|
|
const boost::tokenizer<delim, iter, type> view(str, d);
|
|
|
|
const auto it(at(begin(view), end(view), i));
|
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
|
2017-09-21 04:28:33 +02:00
|
|
|
size_t
|
2017-10-12 02:56:15 +02:00
|
|
|
ircd::token_count(const string_view &str,
|
|
|
|
const char &sep)
|
2017-09-21 04:28:33 +02:00
|
|
|
{
|
|
|
|
const char ssep[2] { sep, '\0' };
|
2017-10-12 02:56:15 +02:00
|
|
|
return token_count(str, ssep);
|
2017-09-21 04:28:33 +02:00
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
size_t
|
2017-10-12 02:56:15 +02:00
|
|
|
ircd::token_count(const string_view &str,
|
|
|
|
const char *const &sep)
|
2016-11-29 16:23:38 +01:00
|
|
|
{
|
|
|
|
using type = string_view;
|
|
|
|
using iter = typename type::const_iterator;
|
|
|
|
using delim = boost::char_separator<char>;
|
|
|
|
|
|
|
|
const delim d(sep);
|
|
|
|
const boost::tokenizer<delim, iter, type> view(str, d);
|
|
|
|
return std::distance(begin(view), end(view));
|
|
|
|
}
|
|
|
|
|
2017-09-21 04:28:33 +02:00
|
|
|
size_t
|
|
|
|
ircd::tokens(const string_view &str,
|
|
|
|
const char &sep,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf,
|
2017-09-21 04:28:33 +02:00
|
|
|
const token_view &closure)
|
|
|
|
{
|
|
|
|
const char ssep[2] { sep, '\0' };
|
2017-10-17 09:41:51 +02:00
|
|
|
return tokens(str, ssep, buf, closure);
|
2017-09-21 04:28:33 +02:00
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
size_t
|
|
|
|
ircd::tokens(const string_view &str,
|
|
|
|
const char *const &sep,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf,
|
2016-11-29 16:23:38 +01:00
|
|
|
const token_view &closure)
|
|
|
|
{
|
2017-10-17 09:41:51 +02:00
|
|
|
char *ptr(data(buf));
|
|
|
|
char *const stop(data(buf) + size(buf));
|
2016-11-29 16:23:38 +01:00
|
|
|
tokens(str, sep, [&closure, &ptr, &stop]
|
|
|
|
(const string_view &token)
|
|
|
|
{
|
|
|
|
const size_t terminated_size(token.size() + 1);
|
|
|
|
const size_t remaining(std::distance(ptr, stop));
|
|
|
|
if(remaining < terminated_size)
|
|
|
|
return;
|
|
|
|
|
|
|
|
char *const dest(ptr);
|
|
|
|
ptr += strlcpy(dest, token.data(), terminated_size);
|
|
|
|
closure(string_view(dest, token.size()));
|
|
|
|
});
|
|
|
|
|
2017-10-17 09:41:51 +02:00
|
|
|
return std::distance(data(buf), ptr);
|
2016-11-29 16:23:38 +01:00
|
|
|
}
|
|
|
|
|
2017-09-21 04:28:33 +02:00
|
|
|
size_t
|
|
|
|
ircd::tokens(const string_view &str,
|
|
|
|
const char &sep,
|
|
|
|
const size_t &limit,
|
|
|
|
const token_view &closure)
|
|
|
|
{
|
|
|
|
const char ssep[2] { sep, '\0' };
|
|
|
|
return tokens(str, ssep, limit, closure);
|
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
size_t
|
|
|
|
ircd::tokens(const string_view &str,
|
|
|
|
const char *const &sep,
|
|
|
|
const size_t &limit,
|
|
|
|
const token_view &closure)
|
|
|
|
{
|
|
|
|
using type = string_view;
|
|
|
|
using iter = typename type::const_iterator;
|
|
|
|
using delim = boost::char_separator<char>;
|
|
|
|
|
|
|
|
const delim d(sep);
|
|
|
|
const boost::tokenizer<delim, iter, type> view(str, d);
|
|
|
|
|
|
|
|
size_t i(0);
|
|
|
|
for(auto it(begin(view)); i < limit && it != end(view); ++it, i++)
|
|
|
|
closure(*it);
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2017-09-21 04:28:33 +02:00
|
|
|
void
|
|
|
|
ircd::tokens(const string_view &str,
|
|
|
|
const char &sep,
|
|
|
|
const token_view &closure)
|
|
|
|
{
|
|
|
|
const char ssep[2] { sep, '\0' };
|
|
|
|
tokens(str, ssep, closure);
|
|
|
|
}
|
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
void
|
|
|
|
ircd::tokens(const string_view &str,
|
|
|
|
const char *const &sep,
|
|
|
|
const token_view &closure)
|
|
|
|
{
|
|
|
|
using type = string_view;
|
|
|
|
using iter = typename type::const_iterator;
|
|
|
|
using delim = boost::char_separator<char>;
|
|
|
|
|
|
|
|
const delim d(sep);
|
|
|
|
const boost::tokenizer<delim, iter, type> view(str, d);
|
|
|
|
std::for_each(begin(view), end(view), closure);
|
|
|
|
}
|
|
|
|
|
2017-10-02 06:14:34 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// ircd/lex_cast.h
|
|
|
|
//
|
2017-09-23 00:50:28 +02:00
|
|
|
|
2017-10-02 06:14:34 +02:00
|
|
|
namespace ircd
|
2017-09-23 00:50:28 +02:00
|
|
|
{
|
2017-10-02 06:14:34 +02:00
|
|
|
/// The static lex_cast ring buffers are each LEX_CAST_BUFSIZE bytes;
|
|
|
|
/// Consider increasing if some lex_cast<T>(str) has more characters.
|
|
|
|
const size_t LEX_CAST_BUFSIZE {64};
|
2017-09-23 00:50:28 +02:00
|
|
|
|
2017-10-02 06:14:34 +02:00
|
|
|
/// This is a static "ring buffer" to simplify a majority of lex_cast uses.
|
|
|
|
/// If the lex_cast has binary input and string output, and no user buffer
|
|
|
|
/// is supplied, the next buffer here will be used instead. The returned
|
|
|
|
/// string_view of data from this buffer is only valid for several more
|
|
|
|
/// calls to lex_cast before it is overwritten.
|
|
|
|
thread_local char lex_cast_buf[LEX_CAST_BUFS][LEX_CAST_BUFSIZE];
|
|
|
|
thread_local uint lex_cast_cur;
|
2017-09-23 00:50:28 +02:00
|
|
|
|
2017-10-17 09:41:51 +02:00
|
|
|
template<size_t N, class T> static string_view _lex_cast(const T &i, mutable_buffer buf);
|
2017-10-02 06:14:34 +02:00
|
|
|
template<class T> static T _lex_cast(const string_view &s);
|
2017-09-23 00:50:28 +02:00
|
|
|
}
|
|
|
|
|
2017-10-02 06:14:34 +02:00
|
|
|
/// Internal template providing conversions from a number to a string;
|
|
|
|
/// potentially using the ring buffer if no user buffer is supplied.
|
2017-03-14 19:39:26 +01:00
|
|
|
template<size_t N,
|
|
|
|
class T>
|
2017-10-02 06:14:34 +02:00
|
|
|
ircd::string_view
|
|
|
|
ircd::_lex_cast(const T &i,
|
2017-10-17 09:41:51 +02:00
|
|
|
mutable_buffer buf)
|
2017-03-16 21:31:17 +01:00
|
|
|
try
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
using array = std::array<char, N>;
|
|
|
|
|
|
|
|
if(!buf)
|
|
|
|
{
|
2017-10-02 06:14:34 +02:00
|
|
|
buf = lex_cast_buf[lex_cast_cur++];
|
|
|
|
lex_cast_cur %= LEX_CAST_BUFS;
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
2017-10-17 09:41:51 +02:00
|
|
|
assert(size(buf) >= N);
|
|
|
|
auto &a(*reinterpret_cast<array *>(data(buf)));
|
2017-03-14 19:39:26 +01:00
|
|
|
a = boost::lexical_cast<array>(i);
|
2017-10-17 09:41:51 +02:00
|
|
|
return { data(buf), strnlen(data(buf), size(buf)) };
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
2017-03-16 21:31:17 +01:00
|
|
|
catch(const boost::bad_lexical_cast &e)
|
|
|
|
{
|
|
|
|
throw ircd::bad_lex_cast("%s", e.what());
|
|
|
|
}
|
2017-03-14 19:39:26 +01:00
|
|
|
|
2017-10-02 06:14:34 +02:00
|
|
|
/// Internal template providing conversions from a string to a number;
|
|
|
|
/// the native object is returned directly; no ring buffer is consumed.
|
2017-03-14 19:39:26 +01:00
|
|
|
template<class T>
|
2017-10-02 06:14:34 +02:00
|
|
|
T
|
|
|
|
ircd::_lex_cast(const string_view &s)
|
2017-03-16 21:31:17 +01:00
|
|
|
try
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
return boost::lexical_cast<T>(s);
|
|
|
|
}
|
2017-03-16 21:31:17 +01:00
|
|
|
catch(const boost::bad_lexical_cast &e)
|
|
|
|
{
|
|
|
|
throw ircd::bad_lex_cast("%s", e.what());
|
|
|
|
}
|
2017-03-14 19:39:26 +01:00
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(bool i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(8);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(int8_t i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(8);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(uint8_t i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(8);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(short i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(8);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(ushort i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(8);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(int i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(16);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(uint i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(16);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(long i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(32);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(ulong i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(32);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(double i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(64);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(long double i,
|
2017-10-17 09:41:51 +02:00
|
|
|
const mutable_buffer &buf)
|
2017-03-14 19:39:26 +01:00
|
|
|
{
|
|
|
|
static const size_t MAX(64);
|
2017-10-17 09:41:51 +02:00
|
|
|
return _lex_cast<MAX>(i, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(nanoseconds i,
|
|
|
|
const mutable_buffer &buf)
|
|
|
|
{
|
|
|
|
static const size_t MAX(64);
|
|
|
|
return _lex_cast<MAX>(i.count(), buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(microseconds i,
|
|
|
|
const mutable_buffer &buf)
|
|
|
|
{
|
|
|
|
static const size_t MAX(64);
|
|
|
|
return _lex_cast<MAX>(i.count(), buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(milliseconds i,
|
|
|
|
const mutable_buffer &buf)
|
|
|
|
{
|
|
|
|
static const size_t MAX(64);
|
|
|
|
return _lex_cast<MAX>(i.count(), buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::string_view
|
|
|
|
ircd::lex_cast(seconds i,
|
|
|
|
const mutable_buffer &buf)
|
|
|
|
{
|
|
|
|
static const size_t MAX(64);
|
|
|
|
return _lex_cast<MAX>(i.count(), buf);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
2017-10-16 06:25:03 +02:00
|
|
|
return s == "true"? true:
|
|
|
|
s == "false"? false:
|
|
|
|
_lex_cast<bool>(s);
|
2017-03-14 19:39:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> int8_t
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<char>(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> uint8_t
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<unsigned char>(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> short
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<short>(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> unsigned short
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<unsigned short>(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> int
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<int>(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> unsigned int
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<unsigned int>(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> long
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<long>(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> unsigned long
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<unsigned long>(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> double
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<double>(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> long double
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return _lex_cast<long double>(s);
|
|
|
|
}
|
|
|
|
|
2017-10-17 09:41:51 +02:00
|
|
|
template<> ircd::nanoseconds
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return std::chrono::duration<time_t, std::ratio<1L, 1000000000L>>(_lex_cast<time_t>(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::microseconds
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return std::chrono::duration<time_t, std::ratio<1L, 1000000L>>(_lex_cast<time_t>(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::milliseconds
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return std::chrono::duration<time_t, std::ratio<1L, 1000L>>(_lex_cast<time_t>(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> ircd::seconds
|
|
|
|
ircd::lex_cast(const string_view &s)
|
|
|
|
{
|
|
|
|
return std::chrono::duration<time_t, std::ratio<1L, 1L>>(_lex_cast<time_t>(s));
|
|
|
|
}
|
|
|
|
|
2017-03-14 19:39:26 +01:00
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<bool>(const string_view &s)
|
|
|
|
{
|
|
|
|
bool i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<int8_t>(const string_view &s)
|
|
|
|
{
|
|
|
|
int8_t i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<uint8_t>(const string_view &s)
|
|
|
|
{
|
|
|
|
uint8_t i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<short>(const string_view &s)
|
|
|
|
{
|
|
|
|
short i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<ushort>(const string_view &s)
|
|
|
|
{
|
|
|
|
ushort i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<int>(const string_view &s)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<unsigned int>(const string_view &s)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<long>(const string_view &s)
|
|
|
|
{
|
|
|
|
long i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<unsigned long>(const string_view &s)
|
|
|
|
{
|
|
|
|
unsigned long i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<double>(const string_view &s)
|
|
|
|
{
|
|
|
|
double i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<long double>(const string_view &s)
|
|
|
|
{
|
|
|
|
long double i;
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
2017-10-17 09:41:51 +02:00
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<ircd::nanoseconds>(const string_view &s)
|
|
|
|
{
|
|
|
|
time_t i; //TODO: XXX
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<ircd::microseconds>(const string_view &s)
|
|
|
|
{
|
|
|
|
time_t i; //TODO: XXX
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<ircd::milliseconds>(const string_view &s)
|
|
|
|
{
|
|
|
|
time_t i; //TODO: XXX
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> bool
|
|
|
|
ircd::try_lex_cast<ircd::seconds>(const string_view &s)
|
|
|
|
{
|
|
|
|
time_t i; //TODO: XXX
|
|
|
|
return boost::conversion::try_lexical_convert(s, i);
|
|
|
|
}
|
|
|
|
|
2017-10-02 06:14:34 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// ircd/stringops.h
|
|
|
|
//
|
|
|
|
|
2017-10-12 02:57:50 +02:00
|
|
|
std::string
|
|
|
|
ircd::replace(const string_view &s,
|
|
|
|
const char &before,
|
|
|
|
const string_view &after)
|
|
|
|
{
|
|
|
|
const auto occurs
|
|
|
|
{
|
|
|
|
std::count(begin(s), end(s), before)
|
|
|
|
};
|
|
|
|
|
|
|
|
const size_t size
|
|
|
|
{
|
|
|
|
occurs? s.size() + (occurs * after.size()):
|
|
|
|
s.size() - occurs
|
|
|
|
};
|
|
|
|
|
2018-01-29 17:37:20 +01:00
|
|
|
return string(size, [&s, &before, &after]
|
|
|
|
(const mutable_buffer &buf)
|
2017-10-12 02:57:50 +02:00
|
|
|
{
|
2018-01-29 17:37:20 +01:00
|
|
|
char *p{begin(buf)};
|
|
|
|
std::for_each(begin(s), end(s), [&before, &after, &p]
|
|
|
|
(const char &c)
|
2017-10-12 02:57:50 +02:00
|
|
|
{
|
2018-01-29 17:37:20 +01:00
|
|
|
if(c == before)
|
|
|
|
{
|
|
|
|
memcpy(p, after.data(), after.size());
|
|
|
|
p += after.size();
|
|
|
|
}
|
|
|
|
else *p++ = c;
|
|
|
|
});
|
|
|
|
|
|
|
|
return std::distance(begin(buf), p);
|
2017-10-12 02:57:50 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-01-28 20:41:46 +01:00
|
|
|
std::string
|
2018-02-03 08:20:26 +01:00
|
|
|
ircd::u2a(const const_buffer &in)
|
2018-01-28 20:41:46 +01:00
|
|
|
{
|
2018-01-29 17:37:20 +01:00
|
|
|
return string(size(in) * 2, [&in]
|
|
|
|
(const mutable_buffer &out)
|
2018-01-28 20:41:46 +01:00
|
|
|
{
|
2018-01-29 17:37:20 +01:00
|
|
|
return u2a(out, in);
|
|
|
|
});
|
2018-01-28 20:41:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ircd::string_view
|
|
|
|
ircd::u2a(const mutable_buffer &out,
|
2018-02-03 08:20:26 +01:00
|
|
|
const const_buffer &in)
|
2018-01-28 20:41:46 +01:00
|
|
|
{
|
|
|
|
char *p(data(out));
|
2018-03-01 11:30:59 +01:00
|
|
|
for(size_t i(0); i < size(in); ++i, p += 2)
|
|
|
|
snprintf(p, end(out) - p, "%02x", in[i]);
|
2018-01-28 20:41:46 +01:00
|
|
|
|
2018-03-01 11:30:59 +01:00
|
|
|
return { data(out), p };
|
2018-01-28 20:41:46 +01:00
|
|
|
}
|
|
|
|
|
2018-02-03 08:20:26 +01:00
|
|
|
ircd::const_buffer
|
|
|
|
ircd::a2u(const mutable_buffer &out,
|
2017-10-02 06:14:34 +02:00
|
|
|
const const_buffer &in)
|
|
|
|
{
|
|
|
|
const size_t len{size(in) / 2};
|
|
|
|
for(size_t i(0); i < len; ++i)
|
|
|
|
{
|
|
|
|
const char gl[3]
|
|
|
|
{
|
|
|
|
in[i * 2],
|
|
|
|
in[i * 2 + 1],
|
|
|
|
'\0'
|
|
|
|
};
|
|
|
|
|
|
|
|
out[i] = strtol(gl, nullptr, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
return { data(out), len };
|
|
|
|
}
|