TDME2 1.9.121
Integer.h
Go to the documentation of this file.
1#pragma once
2
3#if defined(_WIN32) && defined(_MSC_VER)
4 #define NOMINMAX
5 #undef max
6 #undef min
7#endif
8
9#include <tdme/tdme.h>
11
12#include <limits>
13#include <string>
14#include <string_view>
15
16using std::numeric_limits;
17using std::string;
18using std::string_view;
19
20/**
21 * Integer class
22 * @author Andreas Drewke
23 * @version $Id$
24 */
26{
27public:
28 static constexpr int MAX_VALUE { numeric_limits<int>::max() };
29 static constexpr int MIN_VALUE { -numeric_limits<int>::max() };
30
31 /**
32 * Check if given string is a integer string
33 * @param str string
34 * @return given string is integer
35 */
36 static bool is(const string& str);
37
38 /**
39 * Check if given string is a integer string
40 * @param str string
41 * @return given string is integer
42 */
43 static bool viewIs(const string_view& str);
44
45 /**
46 * Parse integer
47 * @param str string
48 * @return integer
49 */
50 static int parse(const string& str);
51
52 /**
53 * Parse integer
54 * @param str string
55 * @return integer
56 */
57 static int viewParse(const string_view& str);
58
59 /**
60 * @brief Encodes an 32 bit unsigned integer to a 6 char string representation
61 * @param decodedInt int value to encode
62 * @returns encodedString
63 */
64 inline static const string encode(const uint32_t decodedInt) {
65 string encodedString;
66 encode(decodedInt, encodedString);
67 return encodedString;
68 }
69
70 /**
71 * @brief Decodes an 6 char string representation to a unsigned 32 bit integer
72 * @param encodedString encoded string
73 * @returns decodedString
74 */
75 inline static const uint32_t decode(const string& encodedString) {
76 uint32_t decodedInt;
77 decode(encodedString, decodedInt);
78 return decodedInt;
79 }
80
81 /**
82 * @brief Encodes an 32 bit unsigned integer to a 6 char string representation
83 * @param decodedInt int value to encode
84 * @param encodedString string
85 */
86 static void encode(const uint32_t decodedInt, string& encodedString);
87
88 /**
89 * @brief Decodes an 6 char string representation to a unsigned 32 bit integer
90 * @param encodedString encoded string
91 * @param decodedInt integer
92 */
93 static bool decode(const string& encodedString, uint32_t& decodedInt);
94
95};
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 constexpr int MIN_VALUE
Definition: Integer.h:29
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
static constexpr int MAX_VALUE
Definition: Integer.h:28
static bool is(const string &str)
Check if given string is a integer string.
Definition: Integer.cpp:26