-
Notifications
You must be signed in to change notification settings - Fork 44
/
PropertiesHelper.sol
524 lines (483 loc) · 17.7 KB
/
PropertiesHelper.sol
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
pragma solidity ^0.8.0;
abstract contract PropertiesAsserts {
event LogUint256(string, uint256);
event LogAddress(string, address);
event LogString(string);
event AssertFail(string);
event AssertEqFail(string);
event AssertNeqFail(string);
event AssertGteFail(string);
event AssertGtFail(string);
event AssertLteFail(string);
event AssertLtFail(string);
function assertWithMsg(bool b, string memory reason) internal {
if (!b) {
emit AssertFail(reason);
assert(false);
}
}
/// @notice asserts that a is equal to b. Violations are logged using reason.
function assertEq(uint256 a, uint256 b, string memory reason) internal {
if (a != b) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
"!=",
bStr,
", reason: ",
reason
);
emit AssertEqFail(string(assertMsg));
assert(false);
}
}
/// @notice int256 version of assertEq
function assertEq(int256 a, int256 b, string memory reason) internal {
if (a != b) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
"!=",
bStr,
", reason: ",
reason
);
emit AssertEqFail(string(assertMsg));
assert(false);
}
}
/// @notice asserts that a is not equal to b. Violations are logged using reason.
function assertNeq(uint256 a, uint256 b, string memory reason) internal {
if (a == b) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
"==",
bStr,
", reason: ",
reason
);
emit AssertNeqFail(string(assertMsg));
assert(false);
}
}
/// @notice int256 version of assertNeq
function assertNeq(int256 a, int256 b, string memory reason) internal {
if (a == b) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
"==",
bStr,
", reason: ",
reason
);
emit AssertNeqFail(string(assertMsg));
assert(false);
}
}
/// @notice asserts that a is greater than or equal to b. Violations are logged using reason.
function assertGte(uint256 a, uint256 b, string memory reason) internal {
if (!(a >= b)) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
"<",
bStr,
" failed, reason: ",
reason
);
emit AssertGteFail(string(assertMsg));
assert(false);
}
}
/// @notice int256 version of assertGte
function assertGte(int256 a, int256 b, string memory reason) internal {
if (!(a >= b)) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
"<",
bStr,
" failed, reason: ",
reason
);
emit AssertGteFail(string(assertMsg));
assert(false);
}
}
/// @notice asserts that a is greater than b. Violations are logged using reason.
function assertGt(uint256 a, uint256 b, string memory reason) internal {
if (!(a > b)) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
"<=",
bStr,
" failed, reason: ",
reason
);
emit AssertGtFail(string(assertMsg));
assert(false);
}
}
/// @notice int256 version of assertGt
function assertGt(int256 a, int256 b, string memory reason) internal {
if (!(a > b)) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
"<=",
bStr,
" failed, reason: ",
reason
);
emit AssertGtFail(string(assertMsg));
assert(false);
}
}
/// @notice asserts that a is less than or equal to b. Violations are logged using reason.
function assertLte(uint256 a, uint256 b, string memory reason) internal {
if (!(a <= b)) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
">",
bStr,
" failed, reason: ",
reason
);
emit AssertLteFail(string(assertMsg));
assert(false);
}
}
/// @notice int256 version of assertLte
function assertLte(int256 a, int256 b, string memory reason) internal {
if (!(a <= b)) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
">",
bStr,
" failed, reason: ",
reason
);
emit AssertLteFail(string(assertMsg));
assert(false);
}
}
/// @notice asserts that a is less than b. Violations are logged using reason.
function assertLt(uint256 a, uint256 b, string memory reason) internal {
if (!(a < b)) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
">=",
bStr,
" failed, reason: ",
reason
);
emit AssertLtFail(string(assertMsg));
assert(false);
}
}
/// @notice int256 version of assertLt
function assertLt(int256 a, int256 b, string memory reason) internal {
if (!(a < b)) {
string memory aStr = PropertiesLibString.toString(a);
string memory bStr = PropertiesLibString.toString(b);
bytes memory assertMsg = abi.encodePacked(
"Invalid: ",
aStr,
">=",
bStr,
" failed, reason: ",
reason
);
emit AssertLtFail(string(assertMsg));
assert(false);
}
}
/// @notice Clamps value to be between low and high, both inclusive
function clampBetween(
uint256 value,
uint256 low,
uint256 high
) internal returns (uint256) {
if (value < low || value > high) {
uint ans = low + (value % (high - low + 1));
string memory valueStr = PropertiesLibString.toString(value);
string memory ansStr = PropertiesLibString.toString(ans);
bytes memory message = abi.encodePacked(
"Clamping value ",
valueStr,
" to ",
ansStr
);
emit LogString(string(message));
return ans;
}
return value;
}
/// @notice int256 version of clampBetween
function clampBetween(
int256 value,
int256 low,
int256 high
) internal returns (int256) {
if (value < low || value > high) {
int range = high - low + 1;
int clamped = (value - low) % (range);
if (clamped < 0) clamped += range;
int ans = low + clamped;
string memory valueStr = PropertiesLibString.toString(value);
string memory ansStr = PropertiesLibString.toString(ans);
bytes memory message = abi.encodePacked(
"Clamping value ",
valueStr,
" to ",
ansStr
);
emit LogString(string(message));
return ans;
}
return value;
}
/// @notice clamps a to be less than b
function clampLt(uint256 a, uint256 b) internal returns (uint256) {
if (!(a < b)) {
assertNeq(
b,
0,
"clampLt cannot clamp value a to be less than zero. Check your inputs/assumptions."
);
uint256 value = a % b;
string memory aStr = PropertiesLibString.toString(a);
string memory valueStr = PropertiesLibString.toString(value);
bytes memory message = abi.encodePacked(
"Clamping value ",
aStr,
" to ",
valueStr
);
emit LogString(string(message));
return value;
}
return a;
}
/// @notice int256 version of clampLt
function clampLt(int256 a, int256 b) internal returns (int256) {
if (!(a < b)) {
int256 value = b - 1;
string memory aStr = PropertiesLibString.toString(a);
string memory valueStr = PropertiesLibString.toString(value);
bytes memory message = abi.encodePacked(
"Clamping value ",
aStr,
" to ",
valueStr
);
emit LogString(string(message));
return value;
}
return a;
}
/// @notice clamps a to be less than or equal to b
function clampLte(uint256 a, uint256 b) internal returns (uint256) {
if (!(a <= b)) {
uint256 value = a % (b + 1);
string memory aStr = PropertiesLibString.toString(a);
string memory valueStr = PropertiesLibString.toString(value);
bytes memory message = abi.encodePacked(
"Clamping value ",
aStr,
" to ",
valueStr
);
emit LogString(string(message));
return value;
}
return a;
}
/// @notice int256 version of clampLte
function clampLte(int256 a, int256 b) internal returns (int256) {
if (!(a <= b)) {
int256 value = b;
string memory aStr = PropertiesLibString.toString(a);
string memory valueStr = PropertiesLibString.toString(value);
bytes memory message = abi.encodePacked(
"Clamping value ",
aStr,
" to ",
valueStr
);
emit LogString(string(message));
return value;
}
return a;
}
/// @notice clamps a to be greater than b
function clampGt(uint256 a, uint256 b) internal returns (uint256) {
if (!(a > b)) {
assertNeq(
b,
type(uint256).max,
"clampGt cannot clamp value a to be larger than uint256.max. Check your inputs/assumptions."
);
uint256 value = b + 1;
string memory aStr = PropertiesLibString.toString(a);
string memory valueStr = PropertiesLibString.toString(value);
bytes memory message = abi.encodePacked(
"Clamping value ",
aStr,
" to ",
valueStr
);
emit LogString(string(message));
return value;
} else {
return a;
}
}
/// @notice int256 version of clampGt
function clampGt(int256 a, int256 b) internal returns (int256) {
if (!(a > b)) {
int256 value = b + 1;
string memory aStr = PropertiesLibString.toString(a);
string memory valueStr = PropertiesLibString.toString(value);
bytes memory message = abi.encodePacked(
"Clamping value ",
aStr,
" to ",
valueStr
);
emit LogString(string(message));
return value;
} else {
return a;
}
}
/// @notice clamps a to be greater than or equal to b
function clampGte(uint256 a, uint256 b) internal returns (uint256) {
if (!(a > b)) {
uint256 value = b;
string memory aStr = PropertiesLibString.toString(a);
string memory valueStr = PropertiesLibString.toString(value);
bytes memory message = abi.encodePacked(
"Clamping value ",
aStr,
" to ",
valueStr
);
emit LogString(string(message));
return value;
}
return a;
}
/// @notice int256 version of clampGte
function clampGte(int256 a, int256 b) internal returns (int256) {
if (!(a > b)) {
int256 value = b;
string memory aStr = PropertiesLibString.toString(a);
string memory valueStr = PropertiesLibString.toString(value);
bytes memory message = abi.encodePacked(
"Clamping value ",
aStr,
" to ",
valueStr
);
emit LogString(string(message));
return value;
}
return a;
}
}
/// @notice Efficient library for creating string representations of integers.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/LibString.sol)
/// @author Modified from Solady (https://github.com/Vectorized/solady/blob/main/src/utils/LibString.sol)
/// @dev Name of the library is modified to prevent collisions with contract-under-test uses of LibString
library PropertiesLibString {
function toString(int256 value) internal pure returns (string memory str) {
uint256 absValue = value >= 0 ? uint256(value) : uint256(-value);
str = toString(absValue);
if (value < 0) {
str = string(abi.encodePacked("-", str));
}
}
function toString(uint256 value) internal pure returns (string memory str) {
/// @solidity memory-safe-assembly
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but we allocate 160 bytes
// to keep the free memory pointer word aligned. We'll need 1 word for the length, 1 word for the
// trailing zeros padding, and 3 other words for a max of 78 digits. In total: 5 * 32 = 160 bytes.
let newFreeMemoryPointer := add(mload(0x40), 160)
// Update the free memory pointer to avoid overriding our string.
mstore(0x40, newFreeMemoryPointer)
// Assign str to the end of the zone of newly allocated memory.
str := sub(newFreeMemoryPointer, 32)
// Clean the last word of memory it may not be overwritten.
mstore(str, 0)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
// Move the pointer 1 byte to the left.
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing temp until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
// Compute and cache the final total length of the string.
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 32)
// Store the string's length at the start of memory allocated for our string.
mstore(str, length)
}
}
function toString(address value) internal pure returns (string memory str) {
bytes memory s = new bytes(40);
for (uint i = 0; i < 20; i++) {
bytes1 b = bytes1(
uint8(uint(uint160(value)) / (2 ** (8 * (19 - i))))
);
bytes1 hi = bytes1(uint8(b) / 16);
bytes1 lo = bytes1(uint8(b) - 16 * uint8(hi));
s[2 * i] = char(hi);
s[2 * i + 1] = char(lo);
}
return string(s);
}
function char(bytes1 b) internal pure returns (bytes1 c) {
if (uint8(b) < 10) return bytes1(uint8(b) + 0x30);
else return bytes1(uint8(b) + 0x57);
}
}