-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhackyhelpers.hpp
295 lines (265 loc) · 11.2 KB
/
hackyhelpers.hpp
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
// hacky helpers, really generic stuff
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
struct checksum64x4{
uint64_t one;
uint64_t two;
uint64_t three;
uint64_t four;
checksum64x4(){
one = 0;
two = 0;
three = 0;
four = 0;
}
checksum64x4(const checksum256& lesix){
static_assert(sizeof(checksum256) == sizeof(checksum64x4), "wut, sizes are different");
*this = (*(checksum64x4*)&lesix);
}
checksum64x4 operator^(const checksum64x4& rhs){
checksum64x4 ret;
ret.one = one ^ rhs.one;
ret.two = two ^ rhs.two;
ret.three = three ^ rhs.three;
ret.four = four ^ rhs.four;
return ret;
}
};
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
string stringify(account_name lename){
return eosio::name{lename}.to_string();
}
////////////////////////////////////////////////////////////////////////////
char num_to_hex_char(int lenum){
if(lenum >= 0 && lenum < 10)
return '0' + lenum;
return 'a' + (lenum - 10);
}
////////////////////////////////////////////////////////////////////////////
string stringify(checksum256 lesum){
string ret;
int i;
for(i = 0; i < 32; i++){
uint8_t thebyte = lesum.hash[i];
int firstnum = thebyte >> 4;
int secondnum = thebyte & 0xf;
ret.append(1, num_to_hex_char(firstnum));
ret.append(1, num_to_hex_char(secondnum));
}
return ret;
}
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
template <int linenueesm>
void __shingassert(const string& msg, const char* filename, int linenum, const char * expression){
string totalmsg = "shingassert:\n" + msg + "\n@" + string(filename) + ":" + std::to_string(linenum) + "\n[" + string(expression) + "]";
eosio_assert(false, totalmsg.c_str());
}
////////////////////////////////////////////////////////////////////////////
#define x_assert(e, msg) if(!(e)) __shingassert<0>(msg, __FILE__, __LINE__, #e);
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
// hacky singleton class for super convenience
////////////////////////////////////////////////////////////////////////////
template <uint64_t indexname, class Whatever>
class shingletonney{
public:
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Whatever val;
bool ondb;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
multi_index<indexname, Whatever> _t;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
shingletonney(uint64_t code):
_t(code, N(singleton)){
// load straight away
load();
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void load(){
auto it =_t.find(0);
if(it == _t.end()){
// no need to emplace, because it's just an inited thing
val.init();
ondb = false;
} else {
val = *it;
ondb = true;
}
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Whatever * operator->(){
return &val;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void clear(){
val = Whatever();
val.init();
auto it = _t.find(0);
if(it != _t.end())
_t.erase(it);
ondb = false;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void save(account_name payer){
auto it = _t.find(0);
if(it == _t.end()){
_t.emplace(payer, [this](Whatever& w){
w = val;
});
} else {
_t.modify(it, payer, [this](Whatever& w){
w = val;
});
}
ondb = true;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
};
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
// hacky template subclass of multi_index for even more convenience
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
template <uint64_t Tablename, class Whatever, class... Indices>
class shingmapler : public multi_index<Tablename, Whatever, Indices...>{
public:
shingmapler(uint64_t code):
multi_index<Tablename, Whatever, Indices...>(code, code){
// nothing yet
}
shingmapler(uint64_t code, uint64_t lescope):
multi_index<Tablename, Whatever, Indices...>(code, lescope){
// nothing yet
}
// hmm, we should add as we go?
//template <uint64_t theindex>
//auto by(){
//return this->get_index<theindex>();
//}
template <uint64_t theindex>
void filterdo(uint64_t thevalue, std::function<void(const Whatever&)> lefunc){
auto indexer = this->template get_index<theindex> ();
auto it = indexer.lower_bound(thevalue);
auto enda = indexer.upper_bound(thevalue);
while(it != enda){
auto tempit = it;
it++;
// can potentially delete it, so advance it first
lefunc(*tempit);
}
}
void emptify(){
while(true){
auto it = this->begin();
if(it == this->end()){
break;
} else {
this->erase(it);
}
}
}
bool has(uint64_t primkey){
auto it = this->find(primkey);
if(it == this->end())
return false;
return true; // gots it!
}
Whatever mustfetch(uint64_t primkey){
Whatever ret;
bool succ = fetch(primkey, ret);
x_assert(succ, "No such entry");
return ret;
}
bool fetch(uint64_t primkey, Whatever& thewhatever){
auto it = this->find(primkey);
if(it != this->end()){
thewhatever = *it;
return true;
} else {
thewhatever.init(); // init it regardless
return false;
}
}
void remove(uint64_t primkey){
auto it = this->find(primkey);
if(it != this->end())
this->erase(it);
}
void save(account_name payer, const Whatever& thewhatever){
auto it = this->find(thewhatever.primary_key());
if(it == this->end()){
x_assert(payer != 0, "Trying to emplace, but no payer");
this->emplace(payer, [thewhatever](Whatever& w){
w = thewhatever;
});
} else {
this->modify(it, payer, [thewhatever](Whatever& w){
w = thewhatever;
});
}
}
void modemplace(int64_t primkey, account_name payer, std::function<void(Whatever&)> funcer){
auto it = this->find(primkey);
if(it == this->end()){
x_assert(payer != 0, "Trying to emplace, but no payer");
this->emplace(payer, [funcer](Whatever& w){
funcer(w);
});
} else {
this->modify(it, payer, [funcer](Whatever& w){
funcer(w);
});
}
}
};
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
#define tablemapp(tablename, classname) \
typedef shingmapler<N(tablename), classname>
////////////////////////////////////////////////////////////////////////////
#define tablemapp1(tablename, classname, indexname1, funcname1) \
typedef shingmapler<N(tablename), classname \
, indexed_by<N(indexname1), const_mem_fun<classname, uint64_t, &classname::funcname1> > \
>
////////////////////////////////////////////////////////////////////////////
#define tablemapp2(tablename, classname, indexname1, funcname1, indexname2, funcname2) \
typedef shingmapler<N(tablename), classname \
, indexed_by<N(indexname1), const_mem_fun<classname, uint64_t, &classname::funcname1> > \
, indexed_by<N(indexname2), const_mem_fun<classname, uint64_t, &classname::funcname2> > \
>
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
#define shingleton(classname) \
typedef shingletonney<N(classname), classname>
////////////////////////////////////////////////////////////////////////////
#define shingleton_as(classname, used_name) \
typedef shingletonney<N(used_name), classname>
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////