- Used <format> library in StringService

- Updated minimum GCC version to 13
This commit is contained in:
Nav
2025-08-17 23:10:00 +01:00
parent cc5562c1b5
commit 3e9ddfa23b
3 changed files with 25 additions and 29 deletions

View File

@@ -32,7 +32,7 @@ The accompanying package names are from the Debian (APT) package repositories -
repositories. repositories.
- CMake version 3.22 or later - CMake version 3.22 or later
- G++10 or later - G++13 or later
- libusb v1.0 (`libusb-1.0-0-dev`) - libusb v1.0 (`libusb-1.0-0-dev`)
- libhidapi (0.11.2 or later) (`libhidapi-dev`) - libhidapi (0.11.2 or later) (`libhidapi-dev`)
- yaml-cpp (version 0.7.0 or later) (`libyaml-cpp-dev`) - yaml-cpp (version 0.7.0 or later) (`libyaml-cpp-dev`)

View File

@@ -64,30 +64,6 @@ namespace Services
}); });
} }
std::string StringService::toHex(std::uint64_t value) {
auto stream = std::stringstream{};
stream << std::hex << std::setfill('0') << std::setw(16) << static_cast<unsigned int>(value);
return stream.str();
}
std::string StringService::toHex(std::uint32_t value) {
auto stream = std::stringstream{};
stream << std::hex << std::setfill('0') << std::setw(8) << static_cast<unsigned int>(value);
return stream.str();
}
std::string StringService::toHex(std::uint16_t value) {
auto stream = std::stringstream{};
stream << std::hex << std::setfill('0') << std::setw(4) << static_cast<unsigned int>(value);
return stream.str();
}
std::string StringService::toHex(unsigned char value) {
auto stream = std::stringstream{};
stream << std::hex << std::setfill('0') << std::setw(2) << static_cast<unsigned int>(value);
return stream.str();
}
std::string StringService::toHex(std::span<const unsigned char> data) { std::string StringService::toHex(std::span<const unsigned char> data) {
auto stream = std::stringstream{}; auto stream = std::stringstream{};
stream << std::hex << std::setfill('0'); stream << std::hex << std::setfill('0');

View File

@@ -7,6 +7,7 @@
#include <vector> #include <vector>
#include <type_traits> #include <type_traits>
#include <utility> #include <utility>
#include <format>
namespace Services namespace Services
{ {
@@ -23,10 +24,29 @@ namespace Services
static bool isNumeric(std::string_view str); static bool isNumeric(std::string_view str);
static bool isBinary(std::string_view str); static bool isBinary(std::string_view str);
static std::string toHex(std::uint64_t value); template <typename Type>
static std::string toHex(std::uint32_t value); requires std::is_integral_v<Type>
static std::string toHex(std::uint16_t value); static std::string toHex(Type value) {
static std::string toHex(unsigned char value); if constexpr (sizeof(Type) == 1) {
return std::format("{:02X}", value);
}
if constexpr (sizeof(Type) == 2) {
return std::format("{:04X}", value);
}
if constexpr (sizeof(Type) == 4) {
return std::format("{:08X}", value);
}
if constexpr (sizeof(Type) == 8) {
return std::format("{:016X}", value);
} else {
return std::format("{:X}", value);
}
}
static std::string toHex(std::span<const unsigned char> data); static std::string toHex(std::span<const unsigned char> data);
static std::string toHex(std::string_view data); static std::string toHex(std::string_view data);