2#ifndef _LOGIT_VARIABLE_VALUE_HPP_INCLUDED
3#define _LOGIT_VARIABLE_VALUE_HPP_INCLUDED
7#include <time_shield_cpp/time_shield.hpp>
17#if __cplusplus >= 201703L
29 template <
typename EnumType>
32 typedef typename std::underlying_type<EnumType>::type UnderlyingType;
33 return std::to_string(
static_cast<UnderlyingType
>(value));
94 typename std::enable_if<std::is_same<T, bool>::value>
::type* =
nullptr)
101 typename std::enable_if<std::is_same<T, char>::value>
::type* =
nullptr)
113 template <
typename T>
115 typename std::enable_if<std::is_base_of<std::exception, T>::value>
::type* =
nullptr)
123 template <
typename T>
125 typename std::enable_if<std::is_floating_point<T>::value>
::type* =
nullptr)
127 if (std::is_same<T, float>::value) {
130 }
else if (std::is_same<T, double>::value) {
133 }
else if (std::is_same<T, long double>::value) {
139 template <
typename T>
141 typename std::enable_if<std::is_integral<T>::value>
::type* =
nullptr)
143 if (std::is_signed<T>::value) {
144 if (
sizeof(T) <=
sizeof(int8_t)) {
146 pod_value.int8_value =
static_cast<int8_t
>(value);
147 }
else if (
sizeof(T) <=
sizeof(int16_t)) {
149 pod_value.int16_value =
static_cast<int16_t
>(value);
150 }
else if (
sizeof(T) <=
sizeof(int32_t)) {
152 pod_value.int32_value =
static_cast<int32_t
>(value);
155 pod_value.int64_value =
static_cast<int64_t
>(value);
158 if (
sizeof(T) <=
sizeof(uint8_t)) {
160 pod_value.uint8_value =
static_cast<uint8_t
>(value);
161 }
else if (
sizeof(T) <=
sizeof(uint16_t)) {
163 pod_value.uint16_value =
static_cast<uint16_t
>(value);
164 }
else if (
sizeof(T) <=
sizeof(uint32_t)) {
166 pod_value.uint32_value =
static_cast<uint32_t
>(value);
169 pod_value.uint64_value =
static_cast<uint64_t
>(value);
178 template <
typename EnumType>
180 typename std::enable_if<std::is_enum<EnumType>::value>
::type* = 0)
185 template <
typename Rep,
typename Period>
191 template <
typename Clock,
typename Duration>
192 VariableValue(
const std::string&
name,
const std::chrono::time_point<Clock, Duration>& time_point)
194 auto ts_ms = std::chrono::duration_cast<std::chrono::milliseconds>(time_point.time_since_epoch());
195 string_value = time_shield::to_human_readable_ms(ts_ms.count());
198# if __cplusplus >= 201703L
204 template <
typename... Ts>
207 string_value = std::visit([](
const auto& value) -> std::string {
208 if constexpr (std::is_arithmetic_v<
decltype(value)>) {
209 return std::to_string(value);
210 }
else if constexpr (std::is_same_v<
decltype(value), std::string>) {
213 std::ostringstream oss;
220 template <
typename T>
224 if constexpr (std::is_arithmetic_v<T>) {
226 }
else if constexpr (std::is_same_v<T, std::string>) {
229 std::ostringstream oss;
242 std::ostringstream oss;
247 template <
typename T>
250 std::ostringstream oss;
251 if (ptr) oss <<
"shared_ptr@" << ptr.get();
252 else oss <<
"nullptr";
256 template <
typename T>
259 std::ostringstream oss;
260 if (ptr) oss <<
"unique_ptr@" << ptr.get();
261 else oss <<
"nullptr";
277 if (
this == &other)
return *
this;
371 if (
name.empty())
return false;
372 return !std::isdigit(
static_cast<unsigned char>(
name[0]));
402 template <
typename Period>
404 if (std::is_same<Period, std::ratio<1>>::value) {
406 }
else if (std::is_same<Period, std::milli>::value) {
408 }
else if (std::is_same<Period, std::micro>::value) {
410 }
else if (std::is_same<Period, std::nano>::value) {
412 }
else if (std::is_same<Period, std::ratio<60>>::value) {
414 }
else if (std::is_same<Period, std::ratio<3600>>::value) {
The primary namespace for the LogIt++ library.
std::string format(const char *fmt,...)
Formats a string according to the specified format.
std::string enum_to_string(EnumType value)
Helper function to convert an enumeration to a string.
VariableValue(const std::string &name, T value, typename std::enable_if< std::is_integral< T >::value >::type *=nullptr)
VariableValue(const std::string &name, const std::chrono::duration< Rep, Period > &duration)
long double long_double_value
std::error_code error_code_value
Variable to store std::error_code.
std::string name
Variable name.
VariableValue & operator=(const VariableValue &other)
Assignment operator.
VariableValue(const std::string &name, const T &value, typename std::enable_if< std::is_base_of< std::exception, T >::value >::type *=nullptr)
static std::string duration_units()
Helper function to get the unit of the duration.
VariableValue(const std::string &name, const std::chrono::time_point< Clock, Duration > &time_point)
VariableValue(const std::string &name, T value, typename std::enable_if< std::is_same< T, bool >::value >::type *=nullptr)
~VariableValue()=default
Destructor.
bool is_literal
Flag indicating if the variable is a literal.
std::string to_string() const
Method to get the value as a string.
enum logit::VariableValue::ValueType type
Specifies the type of the stored value in the VariableValue structure.
union logit::VariableValue::@031270277233142267156311255133022172106116140056 pod_value
Union to store POD types.
std::string string_value
Variable to store string, exception messages, and enums.
VariableValue(const std::string &name, const std::unique_ptr< T > &ptr)
VariableValue(const std::string &name, const std::string &value)
VariableValue(const VariableValue &other)
Copy constructor.
VariableValue(const std::string &name, const std::shared_ptr< T > &ptr)
ValueType
Enumeration of possible value types for VariableValue.
@ BOOL_VAL
Value of type bool.
@ FLOAT_VAL
Value of type float (single-precision floating point).
@ ENUM_VAL
Value of any enumeration type (converted to string or integral value).
@ INT16_VAL
Value of type int16_t (signed 16-bit integer).
@ CHAR_VAL
Value of type char (single character).
@ OPTIONAL_VAL
Value of type std::optional (optional value holder).
@ STRING_VAL
Value of type std::string (dynamic-length string).
@ POINTER_VAL
Value of type void* (raw pointer).
@ UINT64_VAL
Value of type uint64_t (unsigned 64-bit integer).
@ UINT32_VAL
Value of type uint32_t (unsigned 32-bit integer).
@ VARIANT_VAL
Value of type std::variant (type-safe union).
@ SMART_POINTER_VAL
Value of type std::shared_ptr or std::unique_ptr (smart pointers).
@ INT64_VAL
Value of type int64_t (signed 64-bit integer).
@ PATH_VAL
Value of type std::filesystem::path (filesystem path).
@ DURATION_VAL
Value of type std::chrono::duration (time duration).
@ DOUBLE_VAL
Value of type double (double-precision floating point).
@ INT32_VAL
Value of type int32_t (signed 32-bit integer).
@ UINT8_VAL
Value of type uint8_t (unsigned 8-bit integer).
@ LONG_DOUBLE_VAL
Value of type long double (extended-precision floating point).
@ TIME_POINT_VAL
Value of type std::chrono::time_point (specific point in time).
@ INT8_VAL
Value of type int8_t (signed 8-bit integer).
@ UINT16_VAL
Value of type uint16_t (unsigned 16-bit integer).
@ UNKNOWN_VAL
Unknown or unsupported value type.
@ EXCEPTION_VAL
Value representing an exception (derived from std::exception).
@ ERROR_CODE_VAL
Value of type std::error_code (system error code).
VariableValue(const std::string &name, EnumType value, typename std::enable_if< std::is_enum< EnumType >::value >::type *=0)
Constructor for enumerations.
static bool is_valid_literal_name(const std::string &name)
Helper function to check if a name is a valid literal.
VariableValue(const std::string &name, const std::error_code &ec)
static bool is_pod_type(ValueType type)
Helper function to determine if a ValueType represents a POD type.
VariableValue(const std::string &name, T value, typename std::enable_if< std::is_same< T, char >::value >::type *=nullptr)
VariableValue(const std::string &name, const std::filesystem::path &path)
VariableValue(const std::string &name, const std::variant< Ts... > &variant)
std::string to_string(const char *fmt) const
Method to get the value as a formatted string.
VariableValue(const std::string &name, T value, typename std::enable_if< std::is_floating_point< T >::value >::type *=nullptr)
VariableValue(const std::string &name, const char *value)
VariableValue(const std::string &name, const std::optional< T > &optional)
VariableValue(const std::string &name, void *ptr)