Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix JSON dumping of large numbers #169

Merged
merged 6 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 31 additions & 8 deletions src/Dumper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ void Dumper::dump(Slice slice) {
dumpValue(slice);
}

/*static*/ void Dumper::dump(Slice slice, Sink* sink,
Options const* options) {
/*static*/ void Dumper::dump(Slice slice, Sink* sink, Options const* options) {
Dumper dumper(sink, options);
dumper.dump(slice);
}
Expand All @@ -65,8 +64,7 @@ void Dumper::dump(Slice slice) {
dump(*slice, sink, options);
}

/*static*/ std::string Dumper::toString(Slice slice,
Options const* options) {
/*static*/ std::string Dumper::toString(Slice slice, Options const* options) {
std::string buffer;
StringSink sink(&buffer);
dump(slice, &sink, options);
Expand Down Expand Up @@ -217,6 +215,32 @@ void Dumper::appendUInt(uint64_t v) {

void Dumper::appendDouble(double v) {
char temp[24];
double a = fabs(v);
if (a >= ldexpl(1.0, 53) && a < ldexpl(1.0, 64)) {
// This is a special case which we want to handle separately, because
// of two reasons:
// (1) The function fpconv_dtoa below only guarantees to write a
// decimal representation which gives the same double value when
// parsed back into a double. It can write a wrong integer.
// Therefore we want to use the integer code in this case.
// (2) The function fpconv_dtoa will write a normal integer
// representation in this case without a decimal point. If we
// parse this back to vpack later, we end up in a different
// representation (uint64_t or int64_t), so we want to append
// ".0" to the string in this case.
// Note that this automatically excludes all infinities and NaNs,
// which will be handled in the function fpconv_dtoa below.
uint64_t u;
if (v < 0) {
u = static_cast<uint64_t>(-v);
_sink->append("-", 1);
} else {
u = static_cast<uint64_t>(v);
}
appendUInt(u);
_sink->append(".0", 2);
return;
}
int len = fpconv_dtoa(v, &temp[0]);
_sink->append(&temp[0], static_cast<ValueLength>(len));
}
Expand Down Expand Up @@ -545,8 +569,7 @@ void Dumper::dumpValue(Slice slice, Slice const* base) {
base = &slice;
}

Slice external(
reinterpret_cast<uint8_t const*>(slice.getExternal()));
Slice external(reinterpret_cast<uint8_t const*>(slice.getExternal()));
dumpValue(external, base);
break;
}
Expand Down Expand Up @@ -624,8 +647,8 @@ void Dumper::handleUnsupportedType(Slice slice) {
return;
} else if (options->unsupportedTypeBehavior ==
Options::ConvertUnsupportedType) {
_sink->append(std::string("\"(non-representable type ") +
slice.typeName() + ")\"");
_sink->append(std::string("\"(non-representable type ") + slice.typeName() +
")\"");
return;
}

Expand Down
97 changes: 95 additions & 2 deletions tests/testsDumper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,9 @@ TEST(StringDumperTest, SuppressControlChars) {

TEST(StringDumperTest, EscapeControlChars) {
Builder b;
b.add(Value(
"Before\nAfter\r\t\v\f\b\x01\x02/\u00B0\uf0f9\u9095\uf0f9\u90b6\v\n\\\""));
b.add(
Value("Before\nAfter\r\t\v\f\b\x01\x02/"
"\u00B0\uf0f9\u9095\uf0f9\u90b6\v\n\\\""));
Options options;
options.escapeControl = true;
ASSERT_EQ(std::string("\"Before\\nAfter\\r\\t\\u000B\\f\\b\\u0001\\u0002/"
Expand Down Expand Up @@ -1958,3 +1959,95 @@ int main(int argc, char* argv[]) {

return RUN_ALL_TESTS();
}

TEST(DumperLargeDoubleTest, TwoToThePowerOf60Double) {
Options options;
std::string buffer;
StringSink sink(&buffer);
Dumper dumper(&sink, &options);
Builder builder;
builder.add(Value(ldexp(1.0, 60)));
dumper.dump(builder.slice());
ASSERT_EQ("1152921504606846976.0", buffer);
}

TEST(DumperLargeDoubleTest, TwoToThePowerOf60Plus1Double) {
Options options;
std::string buffer;
StringSink sink(&buffer);
Dumper dumper(&sink, &options);
Builder builder;
builder.add(Value(ldexp(1.0, 60) + 1.0));
dumper.dump(builder.slice());
ASSERT_EQ("1152921504606846976.0", buffer);
}

TEST(DumperLargeDoubleTest, MinusTwoToThePowerOf60Double) {
Options options;
std::string buffer;
StringSink sink(&buffer);
Dumper dumper(&sink, &options);
Builder builder;
builder.add(Value(-ldexp(1.0, 60)));
dumper.dump(builder.slice());
ASSERT_EQ("-1152921504606846976.0", buffer);
}

TEST(DumperLargeDoubleTest, MinusTwoToThePowerOf60Plus1Double) {
Options options;
std::string buffer;
StringSink sink(&buffer);
Dumper dumper(&sink, &options);
Builder builder;
builder.add(Value(-ldexp(1.0, 60) + 1.0));
dumper.dump(builder.slice());
ASSERT_EQ("-1152921504606846976.0", buffer);
}

TEST(DumperLargeDoubleTest, TwoToThePowerOf52Double) {
Options options;
std::string buffer;
StringSink sink(&buffer);
Dumper dumper(&sink, &options);
Builder builder;
builder.add(Value(ldexp(1.0, 52)));
dumper.dump(builder.slice());
ASSERT_EQ("4503599627370496", buffer);
}

TEST(DumperLargeDoubleTest, TwoToThePowerOf53Double) {
Options options;
std::string buffer;
StringSink sink(&buffer);
Dumper dumper(&sink, &options);
Builder builder;
builder.add(Value(ldexp(1.0, 53)));
dumper.dump(builder.slice());
ASSERT_EQ("9007199254740992.0", buffer);
}

TEST(DumperLargeDoubleTest, TwoToThePowerOf63Double) {
Options options;
std::string buffer;
StringSink sink(&buffer);
Dumper dumper(&sink, &options);
Builder builder;
builder.add(Value(ldexp(1.0, 63)));
dumper.dump(builder.slice());
ASSERT_EQ("9223372036854775808.0", buffer);
}

TEST(DumperLargeDoubleTest, TwoToThePowerOf64Double) {
Options options;
std::string buffer;
StringSink sink(&buffer);
Dumper dumper(&sink, &options);
Builder builder;
builder.add(Value(ldexp(1.0, 64)));
dumper.dump(builder.slice());
// Note that this is, strictly speaking, not correct. But since this is
// at least 2^64, it will be parsed back to double anywa and then we
// get back the actual result. This is a sacrifice we make for performance.
ASSERT_EQ("18446744073709552000", buffer);
}

Loading