forked from stephenberry/glaze
-
Notifications
You must be signed in to change notification settings - Fork 0
/
json_roundtrip_floating.cpp
62 lines (55 loc) · 1.24 KB
/
json_roundtrip_floating.cpp
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
#include <cassert>
#include <cmath>
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <glaze/glaze.hpp>
#include <vector>
// must be outside test() to work in gcc<14
template <typename T>
struct Value
{
T value{};
};
template <typename T>
void test(const uint8_t* Data, size_t Size)
{
using S = Value<T>;
S s{};
if (Size >= sizeof(T)) {
std::memcpy(&s.value, Data, sizeof(T));
}
else {
return;
}
if (std::isfinite(s.value)) {
auto str = glz::write_json(s).value_or(std::string{});
auto restored = glz::read_json<S>(str);
assert(restored);
if (std::abs(s.value) < std::numeric_limits<T>::min()) {
// a denormalized value - check that it is close enough to zero.
assert(std::abs(restored.value().value) < std::numeric_limits<T>::min());
}
else {
assert(restored.value().value == s.value);
}
}
}
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size)
{
if (Size < 1 + sizeof(float)) {
return 0;
}
const auto action = Data[0];
++Data;
--Size;
switch (action & 0b1) {
case 0:
test<float>(Data, Size);
break;
case 1:
test<double>(Data, Size);
break;
}
return 0;
}