-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtables.h
196 lines (147 loc) · 4.96 KB
/
tables.h
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#pragma once
#include <string_view>
#include <tuple>
#include <pqxx/pqxx>
#include "pqxx_extensions.h"
// The code assumes int64_t can represent any key column
template<typename Column, bool Unique> requires std::is_integral_v<typename Column::type>
struct Incremental {
using column = Column; // Column the table is sorted by and will be used in query
static constexpr bool is_unique = Unique;
};
struct Rewrite {};
template<typename T>
concept RewriteTable = std::is_same_v<typename T::table_type, Rewrite>;
template<typename>
constexpr bool is_incremental = false;
template<typename T, bool unique>
constexpr bool is_incremental<Incremental<T, unique>> = true;
template<typename T>
concept IncrementalTable = is_incremental<typename T::table_type>;
template<typename... Columns> // TODO: make sure there are no duplicate types
struct Table {
using tuple = std::tuple<typename Columns::type...>;
using base_type = Table<Columns...>; // Inheritance breaks specialization so we use this
std::string name;
};
// this might be useless
template<typename T>
struct Column {
using type = T;
};
template<typename T> requires std::is_integral_v<T>
struct Id : Column<T> {
static constexpr std::string_view name = "id";
};
using Id16 = Id<int16_t>;
using Id32 = Id<int32_t>;
using Id64 = Id<int64_t>;
struct X : Column<int32_t> {
static constexpr std::string_view name = "x";
};
struct Y : Column<int16_t> {
static constexpr std::string_view name = "y";
};
struct Z : Column<int32_t> {
static constexpr std::string_view name = "z";
};
struct CreatedAt : Column<int64_t> {
static constexpr std::string_view name = "created_at";
};
struct Dimension : Column<int16_t> {
static constexpr std::string_view name = "dimension";
};
struct ServerId : Column<int16_t> {
static constexpr std::string_view name = "server_id";
};
struct Legacy : Column<bool> {
static constexpr std::string_view name = "legacy";
};
struct TrackId : Column<std::optional<int32_t>> {
static constexpr std::string_view name = "track_id";
};
struct BlockState : Column<int32_t> {
static constexpr std::string_view name = "block_state";
};
struct FirstHitID : Column<int64_t> {
static constexpr std::string_view name = "first_hit_id";
};
struct LastHitId : Column<int64_t> {
static constexpr std::string_view name = "last_hit_id";
};
struct UpdatedAt : Column<int64_t> {
static constexpr std::string_view name = "updated_at";
};
struct PrevTrackId : Column<std::optional<int32_t>> {
static constexpr std::string_view name = "prev_track_id";
};
struct Nbt : Column<binary> {
static constexpr std::string_view name = "nbt";
};
struct Hostname : Column<std::string> {
static constexpr std::string_view name = "hostname";
};
struct Uuid : Column<UUID> {
static constexpr std::string_view name = "uuid";
};
struct Username : Column<std::optional<std::string>> {
static constexpr std::string_view name = "username";
};
struct PlayerId : Column<int32_t> {
static constexpr std::string_view name = "player_id";
};
struct Join : Column<int64_t> {
static constexpr std::string_view name = "\"join\"";
};
struct Leave : Column<std::optional<int64_t>> {
static constexpr std::string_view name = "leave";
};
struct Range : Column<placeholder> {
static constexpr std::string_view name = "range";
};
struct Ordinal : Column<int16_t> {
static constexpr std::string_view name = "ordinal";
};
struct Name : Column<std::string> {
static constexpr std::string_view name = "name";
};
struct Data : Column<std::string> { // json
static constexpr std::string_view name = "data";
};
struct ChatType : Column<int16_t> {
static constexpr std::string_view name = "chat_type";
};
struct ReportedBy : Column<int32_t> {
static constexpr std::string_view name = "reported_by";
};
struct Hits : Table<Id64, CreatedAt, X, Z, Dimension, ServerId, Legacy, TrackId> {
//static constexpr std::string_view name = "hits";
using table_type = Incremental<Id64, true>;
};
struct Blocks : Table<X, Y, Z, BlockState, CreatedAt, Dimension, ServerId> {
using table_type = Incremental<CreatedAt, false>;
};
struct Tracks : Table<Id32, FirstHitID, LastHitId, UpdatedAt, PrevTrackId, Dimension, ServerId, Legacy> {
using table_type = Rewrite;
};
struct Signs : Table<X, Y, Z, Nbt, CreatedAt, Dimension, ServerId> {
using table_type = Incremental<CreatedAt, false>;
};
struct Servers : Table<Id16, Hostname> {
using table_type = Incremental<Id16, true>;
};
struct Players : Table<Id32, Uuid, Username> {
using table_type = Rewrite;
};
struct PlayerSessions : Table<PlayerId, ServerId, Join, Leave, Range, Legacy> {
using table_type = Rewrite;
};
struct LastByServer : Table<ServerId, CreatedAt> {
using table_type = Rewrite;
};
struct Dimensions : Table<Ordinal, Name> {
using table_type = Incremental<Ordinal, true>;
};
struct Chat : Table<Data, ChatType, ReportedBy, CreatedAt, ServerId> {
using table_type = Incremental<CreatedAt, false>;
};