5#include "../SqlColumnTypeDefinitions.hpp"
17 using native_type = std::chrono::system_clock::time_point;
18 using duration_type = std::chrono::system_clock::duration;
23 return SqlDateTime { std::chrono::system_clock::now() };
33 constexpr
bool operator==(
SqlDateTime const& other) const noexcept
38 constexpr bool operator!=(
SqlDateTime const& other)
const noexcept
40 return !(*
this == other);
44 LIGHTWEIGHT_FORCE_INLINE
constexpr SqlDateTime(std::chrono::year_month_day ymd,
45 std::chrono::hh_mm_ss<duration_type> time)
noexcept:
47 .year = (SQLSMALLINT) (
int) ymd.year(),
48 .month = (SQLUSMALLINT) (
unsigned) ymd.month(),
49 .day = (SQLUSMALLINT) (
unsigned) ymd.day(),
50 .hour = (SQLUSMALLINT) time.hours().count(),
51 .minute = (SQLUSMALLINT) time.minutes().count(),
52 .second = (SQLUSMALLINT) time.seconds().count(),
54 (SQLUINTEGER) (std::chrono::duration_cast<std::chrono::nanoseconds>(time.to_duration()).count() / 100)
62 std::chrono::year year,
63 std::chrono::month month,
65 std::chrono::hours hour,
66 std::chrono::minutes minute,
67 std::chrono::seconds second,
68 std::chrono::nanoseconds nanosecond = std::chrono::nanoseconds(0)) noexcept:
70 .year = (SQLSMALLINT) (
int) year,
71 .month = (SQLUSMALLINT) (
unsigned) month,
72 .day = (SQLUSMALLINT) (
unsigned) day,
73 .hour = (SQLUSMALLINT) hour.count(),
74 .minute = (SQLUSMALLINT) minute.count(),
75 .second = (SQLUSMALLINT) second.count(),
76 .fraction = (SQLUINTEGER) (nanosecond.count() / 100) * 100,
82 LIGHTWEIGHT_FORCE_INLINE
constexpr SqlDateTime(std::chrono::system_clock::time_point
value)
noexcept:
83 sqlValue { ConvertToSqlValue(
value) }
87 LIGHTWEIGHT_FORCE_INLINE
constexpr operator native_type() const noexcept
92 static LIGHTWEIGHT_FORCE_INLINE SQL_TIMESTAMP_STRUCT
constexpr ConvertToSqlValue(native_type
value)
noexcept
94 using namespace std::chrono;
95 auto const totalDays = floor<days>(
value);
96 auto const ymd = year_month_day { totalDays };
97 auto const hms = hh_mm_ss<duration_type> { std::chrono::duration_cast<duration_type>(
98 floor<nanoseconds>(
value - totalDays)) };
99 return ConvertToSqlValue(ymd, hms);
102 static LIGHTWEIGHT_FORCE_INLINE SQL_TIMESTAMP_STRUCT
constexpr ConvertToSqlValue(
103 std::chrono::year_month_day ymd, std::chrono::hh_mm_ss<duration_type> hms)
noexcept
107 return SQL_TIMESTAMP_STRUCT {
108 .year = (SQLSMALLINT) (
int) ymd.year(),
109 .month = (SQLUSMALLINT) (
unsigned) ymd.month(),
110 .day = (SQLUSMALLINT) (
unsigned) ymd.day(),
111 .hour = (SQLUSMALLINT) hms.hours().count(),
112 .minute = (SQLUSMALLINT) hms.minutes().count(),
113 .second = (SQLUSMALLINT) hms.seconds().count(),
114 .fraction = (SQLUINTEGER) (((std::chrono::duration_cast<std::chrono::nanoseconds>(hms.to_duration()).count() % 1'000'000'000llu) / 100) * 100)
119 static LIGHTWEIGHT_FORCE_INLINE native_type
constexpr ConvertToNative(SQL_TIMESTAMP_STRUCT
const& time)
noexcept
122 using namespace std::chrono;
123 auto const ymd = year_month_day { year { time.year } / month { time.month } / day { time.day } };
124 auto const hms = hh_mm_ss<duration_type> {
125 duration_cast<duration_type>(
127 + minutes { time.minute }
128 + seconds { time.second }
129 + nanoseconds { time.fraction }
132 return sys_days { ymd } + hms.to_duration();
137 [[nodiscard]]
constexpr LIGHTWEIGHT_FORCE_INLINE native_type
value() const noexcept
139 return ConvertToNative(sqlValue);
142 LIGHTWEIGHT_FORCE_INLINE
SqlDateTime& operator+=(duration_type duration)
noexcept
148 LIGHTWEIGHT_FORCE_INLINE
SqlDateTime& operator-=(duration_type duration)
noexcept
154 friend LIGHTWEIGHT_FORCE_INLINE
SqlDateTime operator+(
SqlDateTime dateTime, duration_type duration)
noexcept
156 auto tmp = dateTime.
value() + duration;
161 friend LIGHTWEIGHT_FORCE_INLINE
SqlDateTime operator-(
SqlDateTime dateTime, duration_type duration)
noexcept
166 SQL_TIMESTAMP_STRUCT sqlValue {};
170struct std::formatter<
SqlDateTime>: std::formatter<std::string>
172 LIGHTWEIGHT_FORCE_INLINE
auto format(
SqlDateTime const& value, std::format_context& ctx)
const
173 -> std::format_context::iterator
175 return std::formatter<std::string>::format(std::format(
"{:04}-{:02}-{:02} {:02}:{:02}:{:02}.{:09}",
177 value.sqlValue.month,
180 value.sqlValue.minute,
181 value.sqlValue.second,
182 value.sqlValue.fraction),
190 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN GetColumn(SQLHSTMT stmt,
192 SqlDateTime::native_type* result,
196 SQL_TIMESTAMP_STRUCT sqlValue {};
197 auto const rc = SQLGetData(stmt, column, SQL_C_TYPE_TIMESTAMP, &sqlValue,
sizeof(sqlValue), indicator);
198 if (SQL_SUCCEEDED(rc))
199 *result = SqlDateTime::ConvertToNative(sqlValue);
207 static constexpr auto ColumnType = SqlColumnTypeDefinitions::DateTime {};
209 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN InputParameter(SQLHSTMT stmt,
214 return SQLBindParameter(stmt,
221 (SQLPOINTER) &value.sqlValue,
226 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN OutputColumn(SQLHSTMT stmt,
233 *indicator =
sizeof(result->sqlValue);
234 return SQLBindCol(stmt, column, SQL_C_TYPE_TIMESTAMP, &result->sqlValue, 0, indicator);
237 static LIGHTWEIGHT_FORCE_INLINE SQLRETURN GetColumn(SQLHSTMT stmt,
243 return SQLGetData(stmt, column, SQL_C_TYPE_TIMESTAMP, &result->sqlValue,
sizeof(result->sqlValue), indicator);
246 static LIGHTWEIGHT_FORCE_INLINE std::string Inspect(
SqlDateTime const& value)
noexcept
248 return std::format(
"{}", value);
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDateTime(std::chrono::system_clock::time_point value) noexcept
Constructs a date and time from a time point.
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDateTime(std::chrono::year year, std::chrono::month month, std::chrono::day day, std::chrono::hours hour, std::chrono::minutes minute, std::chrono::seconds second, std::chrono::nanoseconds nanosecond=std::chrono::nanoseconds(0)) noexcept
Constructs a date and time from individual components.
constexpr LIGHTWEIGHT_FORCE_INLINE native_type value() const noexcept
Returns the current date and time.
LIGHTWEIGHT_FORCE_INLINE constexpr SqlDateTime(std::chrono::year_month_day ymd, std::chrono::hh_mm_ss< duration_type > time) noexcept
Constructs a date and time from individual components.
static LIGHTWEIGHT_FORCE_INLINE SqlDateTime Now() noexcept
Returns the current date and time.