2017-07-26 15:25:29 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2017-07-26 15:25:29 +10:00
|
|
|
*
|
|
|
|
* Copyright 2017 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CRUFT_UTIL_PARSE_HPP
|
|
|
|
#define CRUFT_UTIL_PARSE_HPP
|
|
|
|
|
2017-12-18 14:50:10 +11:00
|
|
|
#include "view.hpp"
|
|
|
|
|
2017-07-26 15:25:29 +10:00
|
|
|
#include <cstring>
|
|
|
|
#include <string>
|
|
|
|
#include <iterator>
|
|
|
|
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft {
|
2017-07-26 15:25:29 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// extracts an instance of a native type T from the string [first, last).
|
|
|
|
///
|
|
|
|
/// throws std::invalid_argument when the type cannot be parsed.
|
|
|
|
template <typename T>
|
2018-08-05 14:42:02 +10:00
|
|
|
T parse (cruft::view<const char *>);
|
2017-07-26 15:25:29 +10:00
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
2017-12-18 14:50:10 +11:00
|
|
|
T parse (const char *str)
|
2017-07-26 15:25:29 +10:00
|
|
|
{
|
2017-12-18 14:50:10 +11:00
|
|
|
return parse<T> (make_view (str));
|
2017-07-26 15:25:29 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
|
|
|
T
|
|
|
|
parse (const std::string &str)
|
|
|
|
{
|
2017-12-18 14:50:10 +11:00
|
|
|
return parse<T> (make_view (str));
|
2017-07-26 15:25:29 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|