-
Notifications
You must be signed in to change notification settings - Fork 16
/
UAmount.h
executable file
·423 lines (337 loc) · 12.2 KB
/
UAmount.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
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
#ifndef TX_UAMOUNT_H
#define TX_UAMOUNT_H
#include "Serialization/serialize.h"
#include "ChainParams.h"
#include <stdlib.h>
#include <iostream>
typedef uint64_t CAmount;
typedef uint32_t CAmount32;
struct UAmount {
std::map<uint8_t, CAmount> map;
uint64_t safeSub(uint64_t n1, uint64_t n2) {
if(n1 > n2) {
return n1 - n2;
}
if(n1 == n2) {
return 0;
}
std::cout << "CRITICAL: safeSub incorrect substraction";
throw "safeSub incorrect substraction";
return 0;
}
inline UAmount& operator=(UAmount other){
map = other.map;
return *this;
}
inline UAmount& operator=(const std::map<uint8_t, CAmount>& other){
map = other;
return *this;
}
inline void operator+=(const UAmount& other) {
for (std::map<uint8_t, CAmount>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
map[it->first] += it->second;
}
}
inline void operator-=(const UAmount& other) {
for (std::map<uint8_t, CAmount>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
map[it->first] = safeSub(map[it->first],it->second);
}
}
inline void operator=(const CAmount other) {
if(other == 0) {
for (std::map<uint8_t, CAmount>::const_iterator it(map.begin()); it != map.end(); ++it) {
map[it->first] = 0;
}
}
}
inline UAmount operator+(const UAmount& other) {
UAmount res;
for (std::map<uint8_t, CAmount>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
res.map[it->first] += it->second;
}
for (std::map<uint8_t, CAmount>::const_iterator it(map.begin()); it != map.end(); ++it) {
res.map[it->first] += it->second;
}
return res;
}
inline UAmount operator-(const UAmount& other) {
UAmount res;
for (std::map<uint8_t, CAmount>::const_iterator it(map.begin()); it != map.end(); ++it) {
res.map[it->first] = it->second;
}
for (std::map<uint8_t, CAmount>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
res.map[it->first] = safeSub(res.map[it->first], it->second);
}
return res;
}
inline bool operator==(const UAmount& other) {
std::map<uint8_t, CAmount> otherMap = other.map;
if(map.size() != otherMap.size()) {
return false;
}
for (std::map<uint8_t, CAmount>::const_iterator it(map.begin()); it != map.end(); ++it) {
if(it->second != otherMap[it->first]) {
return false;
}
}
return true;
}
inline bool operator!=(const UAmount& other) {
std::map<uint8_t, CAmount> otherMap = other.map;
if(map.size() != otherMap.size()) {
return true;
}
for (std::map<uint8_t, CAmount>::const_iterator it(map.begin()); it != map.end(); ++it) {
if(it->second != otherMap[it->first]) {
return true;
}
}
return false;
}
inline bool operator==(CAmount other) const {
return (total() == other);
}
inline bool operator!=(CAmount other) const {
return (total() != other);
}
inline bool operator<=(const UAmount& other) {
for (std::map<uint8_t, CAmount>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
if(map.find(it->first) == map.end() || map[it->first] > it->second) {
return false;
}
}
return true;
}
inline bool operator>=(const UAmount& other) {
for (std::map<uint8_t, CAmount>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
if(map.find(it->first) == map.end() || map[it->first] < it->second) {
return false;
}
}
return true;
}
inline bool operator<(CAmount other) const {
return (total() < other);
}
inline bool operator>(CAmount other) const {
return (total() > other);
}
inline bool operator<=(CAmount other) const {
return (total() <= other);
}
inline bool operator>=(CAmount other) const {
return (total() >= other);
}
CAmount total() const
{
CAmount total = 0;
for (std::map<uint8_t, CAmount>::const_iterator it(map.begin()); it != map.end(); ++it) {
total += it->second;
}
return total;
}
~UAmount() {
map.clear();
}
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action) {
READWRITE(map);
}
};
struct UAmount32 {
std::map<uint8_t, CAmount32> map;
uint32_t safeSub(uint32_t n1, uint32_t n2) {
if(n1 > n2) {
return n1 - n2;
}
return 0;
}
inline UAmount32& operator=(UAmount32 other){
map.swap(other.map);
return *this;
}
inline UAmount32& operator=(const std::map<uint8_t, CAmount32>& other){
map = other;
return *this;
}
inline void operator+=(const UAmount32& other) {
for (std::map<uint8_t, CAmount32>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
map[it->first] += it->second;
}
}
inline void operator-=(const UAmount32& other) {
for (std::map<uint8_t, CAmount32>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
map[it->first] = safeSub(map[it->first],it->second);
}
}
inline void operator=(const CAmount32 other) {
if(other == 0) {
for (std::map<uint8_t, CAmount32>::const_iterator it(map.begin()); it != map.end(); ++it) {
map[it->first] = 0;
}
}
}
inline UAmount32 operator+(const UAmount32& other) {
UAmount32 res;
for (std::map<uint8_t, CAmount32>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
res.map[it->first] += it->second;
}
for (std::map<uint8_t, CAmount32>::const_iterator it(map.begin()); it != map.end(); ++it) {
res.map[it->first] += it->second;
}
return res;
}
inline UAmount32 operator-(const UAmount32& other) {
UAmount32 res;
for (std::map<uint8_t, CAmount32>::const_iterator it(map.begin()); it != map.end(); ++it) {
res.map[it->first] = it->second;
}
for (std::map<uint8_t, CAmount32>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
res.map[it->first] = safeSub(res.map[it->first],it->second);
}
return res;
}
inline bool operator==(const UAmount32& other) {
std::map<uint8_t, CAmount32> otherMap = other.map;
if(map.size() != otherMap.size()) {
return false;
}
for (std::map<uint8_t, CAmount32>::const_iterator it(map.begin()); it != map.end(); ++it) {
if(it->second != otherMap[it->first]) {
return false;
}
}
return true;
}
inline bool operator!=(const UAmount32& other) {
std::map<uint8_t, CAmount32> otherMap = other.map;
if(map.size() != otherMap.size()) {
return true;
}
for (std::map<uint8_t, CAmount32>::const_iterator it(map.begin()); it != map.end(); ++it) {
if(it->second != otherMap[it->first]) {
return true;
}
}
return false;
}
inline bool operator==(CAmount32 other) const {
return (total() == other);
}
inline bool operator!=(CAmount32 other) const {
return (total() != other);
}
inline bool operator<=(const UAmount32& other) {
for (std::map<uint8_t, CAmount32>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
if(map.find(it->first) == map.end() || map[it->first] > it->second) {
return false;
}
}
return true;
}
inline bool operator>=(const UAmount32& other) {
for (std::map<uint8_t, CAmount32>::const_iterator it(other.map.begin()); it != other.map.end(); ++it) {
if(map.find(it->first) == map.end() || map[it->first] < it->second) {
return false;
}
}
return true;
}
inline bool operator<(CAmount32 other) const {
return (total() < other);
}
inline bool operator>(CAmount32 other) const {
return (total() > other);
}
inline bool operator<=(CAmount32 other) const {
return (total() <= other);
}
inline bool operator>=(CAmount32 other) const {
return (total() >= other);
}
CAmount32 total() const
{
CAmount32 total = 0;
for (std::map<uint8_t, CAmount32>::const_iterator it(map.begin()); it != map.end(); ++it) {
total += it->second;
}
return total;
}
~UAmount32() {
map.clear();
}
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action) {
READWRITE(map);
}
};
class UAmountHelper {
public:
static bool isValidAmount(UAmount amount) {
if(amount.map.empty()) {
return true;
}
for (std::map<uint8_t, CAmount>::const_iterator it(amount.map.begin()); it != amount.map.end(); ++it) {
if(!(it->first == CURRENCY_SWITZERLAND ||
it->first == CURRENCY_GERMANY ||
it->first == CURRENCY_AUSTRIA ||
it->first == CURRENCY_UNITED_KINGDOM ||
it->first == CURRENCY_IRELAND ||
it->first == CURRENCY_USA ||
it->first == CURRENCY_AUSTRALIA ||
it->first == CURRENCY_CHINA ||
it->first == CURRENCY_SWEDEN ||
it->first == CURRENCY_FRANCE ||
it->first == CURRENCY_CANADA ||
it->first == CURRENCY_JAPAN ||
it->first == CURRENCY_THAILAND ||
it->first == CURRENCY_NEW_ZEALAND ||
it->first == CURRENCY_UNITED_ARAB_EMIRATES ||
it->first == CURRENCY_FINLAND ||
it->first == CURRENCY_LUXEMBOURG ||
it->first == CURRENCY_SINGAPORE ||
it->first == CURRENCY_HUNGARY ||
it->first == CURRENCY_CZECH_REPUBLIC ||
it->first == CURRENCY_MALAYSIA ||
it->first == CURRENCY_UKRAINE ||
it->first == CURRENCY_ESTONIA ||
it->first == CURRENCY_MONACO ||
it->first == CURRENCY_LIECHTENSTEIN ||
it->first == CURRENCY_ICELAND ||
it->first == CURRENCY_HONG_KONG ||
it->first == CURRENCY_SPAIN ||
it->first == CURRENCY_RUSSIA ||
it->first == CURRENCY_ISRAEL ||
it->first == CURRENCY_PORTUGAL ||
it->first == CURRENCY_DENMARK ||
it->first == CURRENCY_TURKEY ||
it->first == CURRENCY_ROMANIA ||
it->first == CURRENCY_POLAND ||
it->first == CURRENCY_NETHERLANDS ||
it->first == CURRENCY_PHILIPPINES ||
it->first == CURRENCY_ITALY ||
it->first == CURRENCY_BRAZIL
)) {
return false;
}
}
return true;
}
static UAmount UAmount32toUAmount64(UAmount32 amount32) {
UAmount amount64;
for (std::map<uint8_t, CAmount32>::const_iterator it(amount32.map.begin()); it != amount32.map.end(); ++it) {
amount64.map.insert(std::make_pair(it->first, (uint64_t)it->second));
}
return amount64;
}
static UAmount32 UAmount64toUAmount32(UAmount amount64) {
UAmount32 amount32;
for (std::map<uint8_t, CAmount>::const_iterator it(amount64.map.begin()); it != amount64.map.end(); ++it) {
amount32.map.insert(std::make_pair(it->first, (uint32_t)it->second));
}
return amount32;
}
};
#endif //TX_UAMOUNT_H