5#include "../SqlColumnTypeDefinitions.hpp"
23 static std::optional<
SqlGuid> TryParse(std::string_view const& text) noexcept;
26 static
SqlGuid constexpr UnsafeParse(std::string_view const& text) noexcept;
28 constexpr std::weak_ordering operator<=>(
SqlGuid const& other) const noexcept = default;
30 constexpr
bool operator==(
SqlGuid const& other) const noexcept
32 return (*this <=> other) == std::weak_ordering::equivalent;
35 constexpr bool operator!=(
SqlGuid const& other)
const noexcept
37 return !(*
this == other);
41 constexpr explicit operator bool() const noexcept
47 constexpr bool operator!() const noexcept
49 return !
static_cast<bool>(*this);
61 if (text.size() != 36)
65 if (text[8] !=
'-' || text[13] !=
'-' || text[18] !=
'-' || text[23] !=
'-')
69 auto const version = text[14];
70 if (!(
'1' <= version && version <=
'5'))
74 auto const variant = text[21];
75 if (variant !=
'8' && variant !=
'9' && variant !=
'A' && variant !=
'B' && variant !=
'a' && variant !=
'b')
80 for (
auto const index: { 0, 2, 4, 6,
84 24, 26, 28, 30, 32, 34 })
86 if (std::from_chars(text.data() + index, text.data() + index + 2, guid.data[i], 16).ec != std::errc())
96struct std::formatter<
SqlGuid>: std::formatter<std::string>
98 LIGHTWEIGHT_FORCE_INLINE
auto format(
SqlGuid const& guid, format_context& ctx)
const -> format_context::iterator
101 return formatter<std::string>::format(std::format(
102 "{:08X}-{:04X}-{:04X}-{:04X}-{:012X}",
103 (uint32_t) guid.data[3] | (uint32_t) guid.data[2] << 8 |
104 (uint32_t) guid.data[1] << 16 | (uint32_t) guid.data[0] << 24,
105 (uint16_t) guid.data[5] | (uint16_t) guid.data[4] << 8,
106 (uint16_t) guid.data[7] | (uint16_t) guid.data[6] << 8,
107 (uint16_t) guid.data[8] | (uint16_t) guid.data[9] << 8,
108 (uint64_t) guid.data[15] | (uint64_t) guid.data[14] << 8 |
109 (uint64_t) guid.data[13] << 16 | (uint64_t) guid.data[12] << 24 |
110 (uint64_t) guid.data[11] << 32 | (uint64_t) guid.data[10] << 40
118inline LIGHTWEIGHT_FORCE_INLINE std::string to_string(
SqlGuid const& guid)
120 return std::format(
"{}", guid);
124struct LIGHTWEIGHT_API SqlDataBinder<
SqlGuid>
126 static constexpr auto ColumnType = SqlColumnTypeDefinitions::Guid {};
128 static SQLRETURN InputParameter(SQLHSTMT stmt,
133 static SQLRETURN OutputColumn(
136 static SQLRETURN GetColumn(SQLHSTMT stmt,
142 static LIGHTWEIGHT_FORCE_INLINE std::string Inspect(
SqlGuid const& value)
noexcept
144 return std::format(
"{}", value);
static SqlGuid constexpr UnsafeParse(std::string_view const &text) noexcept
Parses a GUID from a string. Use with caution and always prefer TryParse at all cost.
static SqlGuid Create() noexcept
Creates a new non-empty GUID.