5#include "../SqlColumnTypeDefinitions.hpp"
6#include "../SqlError.hpp"
7#include "../SqlLogger.hpp"
8#include "Primitives.hpp"
15#include <source_location>
21#if defined(__SIZEOF_INT128__) && !defined(_MSC_VER)
22 #define LIGHTWEIGHT_INT128_T __int128_t
23 static_assert(
sizeof(__int128_t) ==
sizeof(SQL_NUMERIC_STRUCT::val));
35template <std::
size_t ThePrecision, std::
size_t TheScale>
38 static constexpr auto ColumnType = SqlColumnTypeDefinitions::Decimal { .precision = ThePrecision, .scale = TheScale };
44 static constexpr auto Scale = TheScale;
46 static_assert(TheScale < SQL_MAX_NUMERIC_LEN);
60 constexpr
SqlNumeric(std::floating_point auto value) noexcept
66 constexpr explicit SqlNumeric(SQL_NUMERIC_STRUCT
const& value)
noexcept:
72 static_assert(std::endian::native == std::endian::little);
75 LIGHTWEIGHT_FORCE_INLINE
constexpr void assign(std::floating_point
auto value)
noexcept
77#if defined(LIGHTWEIGHT_INT128_T)
78 auto const num =
static_cast<LIGHTWEIGHT_INT128_T
>(value * std::pow(10,
Scale));
79 *((LIGHTWEIGHT_INT128_T*)
sqlValue.val) = num;
81 auto const num =
static_cast<int64_t
>(value * std::pow(10,
Scale));
99 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE
auto ToUnscaledValue() const noexcept
101 auto const sign =
sqlValue.sign ? 1 : -1;
102#if defined(LIGHTWEIGHT_INT128_T)
103 return sign * *
reinterpret_cast<LIGHTWEIGHT_INT128_T const*
>(
sqlValue.val);
105 return sign * *
reinterpret_cast<int64_t const*
>(
sqlValue.val);
110 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE
float ToFloat() const noexcept
116 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE
double ToDouble() const noexcept
122 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE
long double ToLongDouble() const noexcept
128 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE
explicit operator float() const noexcept
134 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE
explicit operator double() const noexcept
140 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE
explicit operator long double() const noexcept
146 [[nodiscard]] LIGHTWEIGHT_FORCE_INLINE std::string
ToString()
const
151 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE std::weak_ordering operator<=>(
154 return ToDouble() <=> other.ToDouble();
157 template <std::
size_t OtherPrecision, std::
size_t OtherScale>
158 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE
bool operator==(
161 return ToFloat() == other.ToFloat();
166template <std::
size_t Precision, std::
size_t Scale>
167struct SqlDataBinder<
SqlNumeric<Precision, Scale>>
171 static constexpr auto ColumnType = SqlColumnTypeDefinitions::Decimal { .precision = Precision, .scale = Scale };
173 static void RequireSuccess(SQLHSTMT stmt, SQLRETURN error, std::source_location sourceLocation = std::source_location::current())
175 if (SQL_SUCCEEDED(error))
181 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN InputParameter(SQLHSTMT stmt, SQLUSMALLINT column, ValueType
const& value,
SqlDataBinderCallback& )
noexcept
183 auto* mut =
const_cast<ValueType*
>(&value);
184 mut->sqlValue.precision = Precision;
185 mut->sqlValue.scale = Scale;
186 RequireSuccess(stmt, SQLBindParameter(stmt, column, SQL_PARAM_INPUT, SQL_C_NUMERIC, SQL_NUMERIC, Precision, Scale, (SQLPOINTER) &value.sqlValue, 0,
nullptr));
190 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN OutputColumn(SQLHSTMT stmt, SQLUSMALLINT column, ValueType* result, SQLLEN* indicator,
SqlDataBinderCallback& )
noexcept
193 RequireSuccess(stmt, SQLGetStmtAttr(stmt, SQL_ATTR_APP_ROW_DESC, (SQLPOINTER) &hDesc, 0,
nullptr));
194 RequireSuccess(stmt, SQLSetDescField(hDesc, (SQLSMALLINT) column, SQL_DESC_PRECISION, (SQLPOINTER) Precision, 0));
195 RequireSuccess(stmt, SQLSetDescField(hDesc, (SQLSMALLINT) column, SQL_DESC_SCALE, (SQLPOINTER) Scale, 0));
197 return SQLBindCol(stmt, column, SQL_C_NUMERIC, &result->sqlValue,
sizeof(ValueType), indicator);
200 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN GetColumn(SQLHSTMT stmt, SQLUSMALLINT column, ValueType* result, SQLLEN* indicator,
SqlDataBinderCallback const& )
noexcept
203 RequireSuccess(stmt, SQLGetStmtAttr(stmt, SQL_ATTR_APP_ROW_DESC, (SQLPOINTER) &hDesc, 0,
nullptr));
204 RequireSuccess(stmt, SQLSetDescField(hDesc, (SQLSMALLINT) column, SQL_DESC_PRECISION, (SQLPOINTER) Precision, 0));
205 RequireSuccess(stmt, SQLSetDescField(hDesc, (SQLSMALLINT) column, SQL_DESC_SCALE, (SQLPOINTER) Scale, 0));
207 return SQLGetData(stmt, column, SQL_C_NUMERIC, &result->sqlValue,
sizeof(ValueType), indicator);
210 static LIGHTWEIGHT_FORCE_INLINE std::string Inspect(ValueType
const& value)
noexcept
212 return value.ToString();
218template <std::
size_t Precision, std::
size_t Scale>
219struct std::formatter<
SqlNumeric<Precision, Scale>>: std::formatter<double>
221 template <
typename FormatContext>
224 return formatter<double>::format(value.
ToDouble(), ctx);
static SqlErrorInfo fromStatementHandle(SQLHSTMT hStmt)
Constructs an ODBC error info object from the given ODBC statement handle.
constexpr LIGHTWEIGHT_FORCE_INLINE auto ToUnscaledValue() const noexcept
Converts the numeric to an unscaled integer value.
SQL_NUMERIC_STRUCT sqlValue
The value is stored as a string to avoid floating point precision issues.
constexpr LIGHTWEIGHT_FORCE_INLINE long double ToLongDouble() const noexcept
Converts the numeric to a long double precision floating point value.
static constexpr auto Precision
Number of total digits.
LIGHTWEIGHT_FORCE_INLINE constexpr SqlNumeric & operator=(std::floating_point auto value) noexcept
Assigns a floating point value to the numeric.
static constexpr auto Scale
Number of digits after the decimal point.
constexpr LIGHTWEIGHT_FORCE_INLINE float ToFloat() const noexcept
Converts the numeric to a floating point value.
LIGHTWEIGHT_FORCE_INLINE std::string ToString() const
Converts the numeric to a string.
constexpr SqlNumeric(SQL_NUMERIC_STRUCT const &value) noexcept
Constructs a numeric from a SQL_NUMERIC_STRUCT.
constexpr LIGHTWEIGHT_FORCE_INLINE double ToDouble() const noexcept
Converts the numeric to a double precision floating point value.
LIGHTWEIGHT_FORCE_INLINE constexpr void assign(std::floating_point auto value) noexcept
Assigns a value to the numeric.