mirror of
https://github.com/boostorg/redis.git
synced 2026-01-19 04:42:09 +00:00
31 lines
692 B
C++
31 lines
692 B
C++
/* Copyright (c) 2018 Marcelo Zimbres Silva (mzimbres@gmail.com)
|
|
*
|
|
* Distributed under the Boost Software License, Version 1.0. (See
|
|
* accompanying file LICENSE.txt)
|
|
*/
|
|
|
|
#include <boost/spirit/include/qi.hpp>
|
|
#include <boost/spirit/home/x3.hpp>
|
|
|
|
#include <aedis/resp3/detail/parser.hpp>
|
|
#include <aedis/resp3/type.hpp>
|
|
|
|
namespace aedis {
|
|
namespace resp3 {
|
|
namespace detail {
|
|
|
|
std::size_t
|
|
parse_uint(char const* data, std::size_t size, boost::system::error_code& ec)
|
|
{
|
|
static constexpr boost::spirit::x3::uint_parser<std::size_t, 10> p{};
|
|
std::size_t ret;
|
|
if (!parse(data, data + size, p, ret))
|
|
ec = error::not_a_number;
|
|
|
|
return ret;
|
|
}
|
|
|
|
} // detail
|
|
} // resp3
|
|
} // aedis
|