TDME2 1.9.121
Integer.cpp
Go to the documentation of this file.
2
3#include <string.h>
4
5#include <algorithm>
6#include <cctype>
7#include <charconv>
8#include <string>
9#include <string_view>
10
11#include <tdme/tdme.h>
13
15
16using std::find_if;
17using std::from_chars;
18using std::isdigit;
19using std::stoi;
20using std::string;
21using std::string_view;
22using std::to_string;
23
25
26bool Integer::is(const string& str) {
27 auto trimmedStr = StringTools::trim(str);
28 return
29 trimmedStr.empty() == false && find_if(trimmedStr.begin() + (trimmedStr[0] == '-'?1:0), trimmedStr.end(), [](char c) { return isdigit(c) == false; }) == trimmedStr.end();
30}
31
32bool Integer::viewIs(const string_view& str) {
33 auto trimmedStr = StringTools::viewTrim(str);
34 return
35 trimmedStr.empty() == false && find_if(trimmedStr.begin() + (trimmedStr[0] == '-'?1:0), trimmedStr.end(), [](char c) { return isdigit(c) == false; }) == trimmedStr.end();
36}
37
38int Integer::parse(const string& str) {
39 auto trimmedStr = StringTools::trim(str);
40 if (trimmedStr.empty() == true) return 0;
41 if (trimmedStr == "-") return -0;
42 return stoi(trimmedStr);
43}
44
45int Integer::viewParse(const string_view& str) {
46 auto trimmedStr = StringTools::viewTrim(str);
47 if (trimmedStr.empty() == true) return 0;
48 if (trimmedStr == "-") return -0;
49 int result;
50 from_chars(&trimmedStr[0], &trimmedStr[trimmedStr.size()], result);
51 return result;
52}
53
54void Integer::encode(const uint32_t decodedInt, string& encodedString) {
55 encodedString = "";
56 char encodingCharSet[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW-+/*.";
57 for (auto i = 0; i < 6; i++) {
58 auto charIdx = (decodedInt >> (i * 6)) & 63;
59 encodedString = encodingCharSet[charIdx] + encodedString;
60 }
61}
62
63bool Integer::decode(const string& encodedString, uint32_t& decodedInt) {
64 char encodingCharSet[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW-+/*.";
65 decodedInt = 0;
66 for (auto i = 0; i < encodedString.length(); i++) {
67 auto codeIdx = -1;
68 char c = encodedString[encodedString.length() - i - 1];
69 char* codePtr = strchr(encodingCharSet, c);
70 if (codePtr == NULL) {
71 return false;
72 } else {
73 codeIdx = codePtr - encodingCharSet;
74 }
75 decodedInt+= codeIdx << (i * 6);
76 }
77 return true;
78}
79
Integer class.
Definition: Integer.h:26
static bool viewIs(const string_view &str)
Check if given string is a integer string.
Definition: Integer.cpp:32
static int parse(const string &str)
Parse integer.
Definition: Integer.cpp:38
static const uint32_t decode(const string &encodedString)
Decodes an 6 char string representation to a unsigned 32 bit integer.
Definition: Integer.h:75
static const string encode(const uint32_t decodedInt)
Encodes an 32 bit unsigned integer to a 6 char string representation.
Definition: Integer.h:64
static int viewParse(const string_view &str)
Parse integer.
Definition: Integer.cpp:45
String tools class.
Definition: StringTools.h:20
static const string trim(const string &src)
Trim string.
Definition: StringTools.cpp:51
static const string_view viewTrim(const string_view &src)
Trim string.
Definition: StringTools.cpp:76