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
|
|
|
*
|
2018-12-16 13:26:48 +11:00
|
|
|
* Copyright 2017-2018 Danny Robson <danny@nerdcruft.net>
|
2017-07-26 15:25:29 +10:00
|
|
|
*/
|
|
|
|
|
2018-12-16 13:26:48 +11:00
|
|
|
#pragma once
|
2017-07-26 15:25:29 +10:00
|
|
|
|
2017-12-18 14:50:10 +11:00
|
|
|
#include "view.hpp"
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft {
|
2017-07-26 15:25:29 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2018-12-16 13:26:48 +11:00
|
|
|
/// Extracts an instance of a native type T from the string [first, last).
|
2017-07-26 15:25:29 +10:00
|
|
|
///
|
2018-12-16 13:26:48 +11:00
|
|
|
/// Throws std::invalid_argument when the type cannot be parsed.
|
|
|
|
///
|
|
|
|
/// The view is modified in place to reflect the unused data.
|
2017-07-26 15:25:29 +10:00
|
|
|
template <typename T>
|
2018-12-16 13:26:48 +11:00
|
|
|
T
|
|
|
|
parse (cruft::view<const char *> &);
|
2017-07-26 15:25:29 +10:00
|
|
|
|
|
|
|
|
2018-12-16 13:26:48 +11:00
|
|
|
/// Parses a prefix string to obtain an instance of T.
|
|
|
|
///
|
|
|
|
/// This only differs from `parse` in that it throws if the entire string
|
|
|
|
/// isn't consumed during the parse, rather than reporting the remaining
|
|
|
|
/// data.
|
2017-07-26 15:25:29 +10:00
|
|
|
template <typename T>
|
|
|
|
T
|
2018-12-16 13:26:48 +11:00
|
|
|
from_string (cruft::view<const char*> data)
|
2017-07-26 15:25:29 +10:00
|
|
|
{
|
2018-12-16 13:26:48 +11:00
|
|
|
T res = parse<T> (data);
|
|
|
|
if (!data.empty ())
|
|
|
|
throw std::invalid_argument ("unable to parse");
|
|
|
|
return std::move (res);
|
2017-07-26 15:25:29 +10:00
|
|
|
}
|
|
|
|
|
2018-12-16 13:26:48 +11:00
|
|
|
template <typename T> T from_string (const char *data) { return from_string<T> (cruft::view (data)); }
|
|
|
|
template <typename T> T from_string (std::string const &data) { return from_string<T> (cruft::view (data)); }
|
|
|
|
}
|