diff options
author | Mattes D <github@xoft.cz> | 2014-08-28 16:35:56 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-08-28 16:35:56 +0200 |
commit | e931b649ac7915de1326d1dc124503383d82d3cf (patch) | |
tree | 3065edcd8277ee6f375ee433498fd6f6a67fe620 /src/StringUtils.h | |
parent | Fixed a typo. (diff) | |
parent | Final template keyword style fix. (diff) | |
download | cuberite-e931b649ac7915de1326d1dc124503383d82d3cf.tar cuberite-e931b649ac7915de1326d1dc124503383d82d3cf.tar.gz cuberite-e931b649ac7915de1326d1dc124503383d82d3cf.tar.bz2 cuberite-e931b649ac7915de1326d1dc124503383d82d3cf.tar.lz cuberite-e931b649ac7915de1326d1dc124503383d82d3cf.tar.xz cuberite-e931b649ac7915de1326d1dc124503383d82d3cf.tar.zst cuberite-e931b649ac7915de1326d1dc124503383d82d3cf.zip |
Diffstat (limited to 'src/StringUtils.h')
-rw-r--r-- | src/StringUtils.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/StringUtils.h b/src/StringUtils.h index 3d4379352..4a4c267c7 100644 --- a/src/StringUtils.h +++ b/src/StringUtils.h @@ -9,6 +9,7 @@ #pragma once #include <string> +#include <limits> @@ -98,6 +99,68 @@ extern int GetBEInt(const char * a_Mem); /// Writes four bytes to the specified memory location so that they interpret as BigEndian int extern void SetBEInt(char * a_Mem, Int32 a_Value); +/// Parses any integer type. Checks bounds and returns errors out of band. +template <class T> +bool StringToInteger(const AString& a_str, T& a_Num) +{ + size_t i = 0; + bool positive = true; + T result = 0; + if (a_str[0] == '+') + { + i++; + } + else if (a_str[0] == '-') + { + i++; + positive = false; + } + if (positive) + { + for (size_t size = a_str.size(); i < size; i++) + { + if ((a_str[i] <= '0') || (a_str[i] >= '9')) + { + return false; + } + if (std::numeric_limits<T>::max() / 10 < result) + { + return false; + } + result *= 10; + T digit = a_str[i] - '0'; + if (std::numeric_limits<T>::max() - digit < result) + { + return false; + } + result += digit; + } + } + else + { + for (size_t size = a_str.size(); i < size; i++) + { + if ((a_str[i] <= '0') || (a_str[i] >= '9')) + { + return false; + } + if (std::numeric_limits<T>::min() / 10 > result) + { + return false; + } + result *= 10; + T digit = a_str[i] - '0'; + if (std::numeric_limits<T>::min() + digit > result) + { + return false; + } + result -= digit; + } + } + a_Num = result; + return true; +} + // If you have any other string helper functions, declare them here |