2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-04-14 15:48:31 +00:00
|
|
|
#ifndef SPROUT_DETAIL_CHAR_CONVERSION_HPP
|
|
|
|
#define SPROUT_DETAIL_CHAR_CONVERSION_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <sprout/config.hpp>
|
2012-04-15 01:31:49 +00:00
|
|
|
#include <sprout/ctype/ascii.hpp>
|
2013-03-18 10:12:21 +00:00
|
|
|
#include <sprout/assert.hpp>
|
2012-04-14 15:48:31 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace detail {
|
|
|
|
template<typename Elem, typename IntType>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR Elem
|
|
|
|
int_to_char(IntType val, int base) {
|
2013-03-18 10:12:21 +00:00
|
|
|
return SPROUT_ASSERT(2 <= base && base <= 36), SPROUT_ASSERT(IntType(0) <= val && val < static_cast<IntType>(base)),
|
|
|
|
val < 10 ? static_cast<Elem>('0') + val
|
|
|
|
: static_cast<Elem>('a') + (val - 10)
|
2012-04-14 15:48:31 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename Elem, typename IntType>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR Elem
|
|
|
|
int_to_char(IntType val) {
|
2013-03-18 10:12:21 +00:00
|
|
|
return SPROUT_ASSERT(IntType(0) <= val && val < IntType(10)),
|
|
|
|
static_cast<Elem>('0') + val
|
2012-04-14 15:48:31 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename IntType, typename Elem>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR IntType
|
|
|
|
char_to_int(Elem c, int base) {
|
2012-04-16 06:33:29 +00:00
|
|
|
return sprout::ascii::isdigit(c) && c - static_cast<Elem>('0') < base ? c - static_cast<Elem>('0')
|
|
|
|
: sprout::ascii::islower(c) && c - static_cast<Elem>('a') + 10 < base ? c - static_cast<Elem>('a') + 10
|
|
|
|
: sprout::ascii::isupper(c) && c - static_cast<Elem>('A') + 10 < base ? c - static_cast<Elem>('A') + 10
|
2012-04-14 15:48:31 +00:00
|
|
|
: static_cast<IntType>(-1)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename IntType, typename Elem>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR IntType
|
|
|
|
char_to_int(Elem c) {
|
2012-04-15 01:31:49 +00:00
|
|
|
return sprout::ascii::isdigit(c) ? c - static_cast<Elem>('0')
|
2012-04-14 15:48:31 +00:00
|
|
|
: static_cast<IntType>(-1)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_DETAIL_CHAR_CONVERSION_HPP
|