summaryrefslogtreecommitdiff
path: root/lib/dbTypes.h
blob: f49c929d63e90a606da71d1762f25cadffabc7cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#ifndef MYGRATE_DBTYPES_H
#define MYGRATE_DBTYPES_H

#include "bitset.h"
#include <boost/numeric/conversion/cast.hpp>
#include <cstdint>
#include <span>
#include <string_view>
#include <variant>

struct timespec;

namespace MyGrate {
	template<typename T> struct printer;
	template<> struct printer<double> {
		constexpr static const char * const fmt {"%g"};
	};
	template<> struct printer<float> {
		constexpr static const char * const fmt {"%g"};
	};
	template<> struct printer<int8_t> {
		constexpr static const char * const fmt {"%hhd"};
	};
	template<> struct printer<uint8_t> {
		constexpr static const char * const fmt {"%hhu"};
	};
	template<> struct printer<int16_t> {
		constexpr static const char * const fmt {"%hd"};
	};
	template<> struct printer<uint16_t> {
		constexpr static const char * const fmt {"%hu"};
	};
	template<> struct printer<int32_t> {
		constexpr static const char * const fmt {"%d"};
	};
	template<> struct printer<uint32_t> {
		constexpr static const char * const fmt {"%u"};
	};
	template<> struct printer<int64_t> {
		constexpr static const char * const fmt {"%ld"};
	};
	template<> struct printer<uint64_t> {
		constexpr static const char * const fmt {"%lu"};
	};

	struct Date {
		inline Date() { }
		inline Date(uint16_t y, uint8_t m, uint8_t d) : year {y}, month {m}, day {d} { }
		explicit inline Date(const tm & tm) : Date(tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday) { }
		uint16_t year;
		uint8_t month;
		uint8_t day;
	};
	struct Time {
		inline Time() { }
		inline Time(uint8_t h, uint8_t m, uint8_t s) : hour {h}, minute {m}, second {s} { }
		explicit inline Time(const tm & tm) : Time(tm.tm_hour, tm.tm_min, tm.tm_sec) { }
		uint8_t hour;
		uint8_t minute;
		uint8_t second;
	};
	struct DateTime : public Date, public Time {
		inline DateTime() { }
		inline DateTime(const Date & d, const Time & t) : Date {d}, Time {t} { }
		explicit inline DateTime(const tm & tm) : Date {tm}, Time {tm} { }
	};
	using Blob = std::span<const std::byte>;

	using DbValueV = std::variant<std::nullptr_t, double, float, int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t,
			int64_t, uint64_t, timespec, Date, Time, DateTime, std::string_view, BitSet, Blob>;

	namespace detail {
		template<typename I>
		concept HasToString = requires
		{
			std::to_string(I {});
		};

		template<typename T> struct is_false {
			static constexpr bool value {false};
		};

		template<typename R, template<typename> typename ConceptT> struct SafeExtract {
			R
			operator()(const R & i) const
			{
				return i;
			}

			template<typename I>
			R
			operator()(const I & i) const
			{
				if constexpr (ConceptT<I>::value) {
					return boost::numeric_cast<R>(i);
				}
				else {
					throw std::logic_error("Unreasonable conversion requested");
				}
			}
		};

		struct ToString {
			std::string
			operator()(const std::string_view & i) const
			{
				return std::string {i};
			}

			std::string
			operator()(const HasToString auto & i) const
			{
				return std::to_string(i);
			}

			template<typename I>
			std::string
			operator()(const I &) const
			{
				throw std::logic_error("Unreasonable to_string requested");
			}
		};
	}

	class DbValue : public DbValueV {
	public:
		using DbValueV::DbValueV;
		using DbValueV::operator=;

		template<typename V>
		inline auto
		visit(V && v) const
		{
			return std::visit(std::forward<V>(v), static_cast<const DbValueV &>(*this));
		}

		template<typename T>
		inline const auto &
		get() const
		{
			return std::get<T>(static_cast<const DbValueV &>(*this));
		}

		template<typename R> operator R() const
		{
			if constexpr (std::is_integral_v<R>) {
				return visit(detail::SafeExtract<R, std::is_integral> {});
			}
			else if constexpr (std::is_floating_point_v<R>) {
				return visit(detail::SafeExtract<R, std::is_floating_point> {});
			}
			else if constexpr (std::is_same_v<std::string_view, R>) {
				return get<std::string_view>();
			}
			else if constexpr (std::is_same_v<std::string, R>) {
				return visit(detail::ToString {});
			}
			else {
				static_assert(detail::is_false<R>::value, "Cannot extract one of these");
			}
		}
	};
}

namespace std {
	std::ostream & operator<<(std::ostream & strm, const MyGrate::DbValueV & v);
}

#endif