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 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* A JSON pretty-printer class. */
// A typical JSON-writing library requires you to first build up a data
// structure that represents a JSON object and then serialize it (to file, or
// somewhere else). This approach makes for a clean API, but building the data
// structure takes up memory. Sometimes that isn't desirable, such as when the
// JSON data is produced for memory reporting.
//
// The JSONWriter class instead allows JSON data to be written out
// incrementally without building up large data structures.
//
// The API is slightly uglier than you would see in a typical JSON-writing
// library, but still fairly easy to use. It's possible to generate invalid
// JSON with JSONWriter, but typically the most basic testing will identify any
// such problems.
//
// Similarly, there are no RAII facilities for automatically closing objects
// and arrays. These would be nice if you are generating all your code within
// nested functions, but in other cases you'd have to maintain an explicit
// stack of RAII objects and manually unwind it, which is no better than just
// calling "end" functions. Furthermore, the consequences of forgetting to
// close an object or array are obvious and, again, will be identified via
// basic testing, unlike other cases where RAII is typically used (e.g. smart
// pointers) and the consequences of defects are more subtle.
//
// Importantly, the class does solve the two hard problems of JSON
// pretty-printing, which are (a) correctly escaping strings, and (b) adding
// appropriate indentation and commas between items.
//
// By default, every property is placed on its own line. However, it is
// possible to request that objects and arrays be placed entirely on a single
// line, which can reduce output size significantly in some cases.
//
// Strings used (for property names and string property values) are |const
// char*| throughout, and can be ASCII or UTF-8.
//
// EXAMPLE
// -------
// Assume that |MyWriteFunc| is a class that implements |JSONWriteFunc|. The
// following code:
//
// JSONWriter w(MakeUnique<MyWriteFunc>());
// w.Start();
// {
// w.NullProperty("null");
// w.BoolProperty("bool", true);
// w.IntProperty("int", 1);
// w.StartArrayProperty("array");
// {
// w.StringElement("string");
// w.StartObjectElement();
// {
// w.DoubleProperty("double", 3.4);
// w.StartArrayProperty("single-line array", w.SingleLineStyle);
// {
// w.IntElement(1);
// w.StartObjectElement(); // SingleLineStyle is inherited from
// w.EndObjectElement(); // above for this collection
// }
// w.EndArray();
// }
// w.EndObjectElement();
// }
// w.EndArrayProperty();
// }
// w.End();
//
// will produce pretty-printed output for the following JSON object:
//
// {
// "null": null,
// "bool": true,
// "int": 1,
// "array": [
// "string",
// {
// "double": 3.4,
// "single-line array": [1, {}]
// }
// ]
// }
//
// The nesting in the example code is obviously optional, but can aid
// readability.
#ifndef mozilla_JSONWriter_h
#define mozilla_JSONWriter_h
#include "double-conversion/double-conversion.h"
#include "mozilla/Assertions.h"
#include "mozilla/IntegerPrintfMacros.h"
#include "mozilla/Span.h"
#include "mozilla/Sprintf.h"
#include "mozilla/UniquePtr.h"
#include "mozilla/Vector.h"
#include <utility>
namespace mozilla {
// A quasi-functor for JSONWriter. We don't use a true functor because that
// requires templatizing JSONWriter, and the templatization seeps to lots of
// places we don't want it to.
class JSONWriteFunc {
public:
virtual void Write(const Span<const char>& aStr) = 0;
virtual ~JSONWriteFunc() = default;
};
class JSONWriter {
// From http://www.ietf.org/rfc/rfc4627.txt:
//
// "All Unicode characters may be placed within the quotation marks except
// for the characters that must be escaped: quotation mark, reverse
// solidus, and the control characters (U+0000 through U+001F)."
//
// This implementation uses two-char escape sequences where possible, namely:
//
// \", \\, \b, \f, \n, \r, \t
//
// All control characters not in the above list are represented with a
// six-char escape sequence, e.g. '\u000b' (a.k.a. '\v').
//
class EscapedString {
// `mStringSpan` initially points at the user-provided string. If that
// string needs escaping, `mStringSpan` will point at `mOwnedStr` below.
Span<const char> mStringSpan;
// String storage in case escaping is actually needed, null otherwise.
UniquePtr<char[]> mOwnedStr;
void CheckInvariants() const {
// Either there was no escaping so `mOwnedStr` is null, or escaping was
// needed, in which case `mStringSpan` should point at `mOwnedStr`.
MOZ_ASSERT(!mOwnedStr || mStringSpan.data() == mOwnedStr.get());
}
static char hexDigitToAsciiChar(uint8_t u) {
u = u & 0xf;
return u < 10 ? '0' + u : 'a' + (u - 10);
}
public:
explicit EscapedString(const Span<const char>& aStr) : mStringSpan(aStr) {
// clang-format off
// The chars with non-'___' entries in this table are those that can be
// represented with a two-char escape sequence. The value is the second char in
// the sequence, that which follows the initial backslash.
#define ___ 0
static constexpr char TwoCharEscapes[256] = {
/* 0 1 2 3 4 5 6 7 8 9 */
/* 0+ */ ___, ___, ___, ___, ___, ___, ___, ___, 'b', 't',
/* 10+ */ 'n', ___, 'f', 'r', ___, ___, ___, ___, ___, ___,
/* 20+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 30+ */ ___, ___, ___, ___, '"', ___, ___, ___, ___, ___,
/* 40+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 50+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 60+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 70+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 80+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 90+ */ ___, ___, '\\', ___, ___, ___, ___, ___, ___, ___,
/* 100+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 110+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 120+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 130+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 140+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 150+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 160+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 170+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 180+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 190+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 200+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 210+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 220+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 230+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 240+ */ ___, ___, ___, ___, ___, ___, ___, ___, ___, ___,
/* 250+ */ ___, ___, ___, ___, ___, ___};
#undef ___
// clang-format on
// First, see if we need to modify the string.
size_t nExtra = 0;
for (const char& c : aStr) {
// ensure it can't be interpreted as negative
uint8_t u = static_cast<uint8_t>(c);
if (u == 0) {
// Null terminator within the span, assume we may have been given a
// span to a buffer that contains a null-terminated string in it.
// We need to truncate the Span so that it doesn't include this null
// terminator and anything past it; Either we will return it as-is, or
// processing should stop there.
mStringSpan = mStringSpan.First(&c - mStringSpan.data());
break;
}
if (TwoCharEscapes[u]) {
nExtra += 1;
} else if (u <= 0x1f) {
nExtra += 5;
}
}
// Note: Don't use `aStr` anymore, as it could contain a null terminator;
// use the correctly-sized `mStringSpan` instead.
if (nExtra == 0) {
// No escapes needed. mStringSpan already points at the original string.
CheckInvariants();
return;
}
// Escapes are needed. We'll create a new string.
mOwnedStr = MakeUnique<char[]>(mStringSpan.Length() + nExtra);
size_t i = 0;
for (const char c : mStringSpan) {
// ensure it can't be interpreted as negative
uint8_t u = static_cast<uint8_t>(c);
MOZ_ASSERT(u != 0, "Null terminator should have been handled above");
if (TwoCharEscapes[u]) {
mOwnedStr[i++] = '\\';
mOwnedStr[i++] = TwoCharEscapes[u];
} else if (u <= 0x1f) {
mOwnedStr[i++] = '\\';
mOwnedStr[i++] = 'u';
mOwnedStr[i++] = '0';
mOwnedStr[i++] = '0';
mOwnedStr[i++] = hexDigitToAsciiChar((u & 0x00f0) >> 4);
mOwnedStr[i++] = hexDigitToAsciiChar(u & 0x000f);
} else {
mOwnedStr[i++] = u;
}
}
MOZ_ASSERT(i == mStringSpan.Length() + nExtra);
mStringSpan = Span<const char>(mOwnedStr.get(), i);
CheckInvariants();
}
explicit EscapedString(const char* aStr) = delete;
const Span<const char>& SpanRef() const { return mStringSpan; }
};
public:
// Collections (objects and arrays) are printed in a multi-line style by
// default. This can be changed to a single-line style if SingleLineStyle is
// specified. If a collection is printed in single-line style, every nested
// collection within it is also printed in single-line style, even if
// multi-line style is requested.
// If SingleLineStyle is set in the constructer, all JSON whitespace is
// eliminated, including spaces after colons and commas, for the most compact
// encoding possible.
enum CollectionStyle {
MultiLineStyle, // the default
SingleLineStyle
};
protected:
static constexpr Span<const char> scArrayBeginString = MakeStringSpan("[");
static constexpr Span<const char> scArrayEndString = MakeStringSpan("]");
static constexpr Span<const char> scCommaString = MakeStringSpan(",");
static constexpr Span<const char> scEmptyString = MakeStringSpan("");
static constexpr Span<const char> scFalseString = MakeStringSpan("false");
static constexpr Span<const char> scNewLineString = MakeStringSpan("\n");
static constexpr Span<const char> scNullString = MakeStringSpan("null");
static constexpr Span<const char> scObjectBeginString = MakeStringSpan("{");
static constexpr Span<const char> scObjectEndString = MakeStringSpan("}");
static constexpr Span<const char> scPropertyBeginString =
MakeStringSpan("\"");
static constexpr Span<const char> scPropertyEndString = MakeStringSpan("\":");
static constexpr Span<const char> scQuoteString = MakeStringSpan("\"");
static constexpr Span<const char> scSpaceString = MakeStringSpan(" ");
static constexpr Span<const char> scTopObjectBeginString =
MakeStringSpan("{");
static constexpr Span<const char> scTopObjectEndString = MakeStringSpan("}");
static constexpr Span<const char> scTrueString = MakeStringSpan("true");
const UniquePtr<JSONWriteFunc> mMaybeOwnedWriter;
JSONWriteFunc& mWriter;
Vector<bool, 8> mNeedComma; // do we need a comma at depth N?
Vector<bool, 8> mNeedNewlines; // do we need newlines at depth N?
size_t mDepth; // the current nesting depth
void Indent() {
for (size_t i = 0; i < mDepth; i++) {
mWriter.Write(scSpaceString);
}
}
// Adds whatever is necessary (maybe a comma, and then a newline and
// whitespace) to separate an item (property or element) from what's come
// before.
void Separator() {
if (mNeedComma[mDepth]) {
mWriter.Write(scCommaString);
}
if (mDepth > 0 && mNeedNewlines[mDepth]) {
mWriter.Write(scNewLineString);
Indent();
} else if (mNeedComma[mDepth] && mNeedNewlines[0]) {
mWriter.Write(scSpaceString);
}
}
void PropertyNameAndColon(const Span<const char>& aName) {
mWriter.Write(scPropertyBeginString);
mWriter.Write(EscapedString(aName).SpanRef());
mWriter.Write(scPropertyEndString);
if (mNeedNewlines[0]) {
mWriter.Write(scSpaceString);
}
}
void Scalar(const Span<const char>& aMaybePropertyName,
const Span<const char>& aStringValue) {
Separator();
if (!aMaybePropertyName.empty()) {
PropertyNameAndColon(aMaybePropertyName);
}
mWriter.Write(aStringValue);
mNeedComma[mDepth] = true;
}
void QuotedScalar(const Span<const char>& aMaybePropertyName,
const Span<const char>& aStringValue) {
Separator();
if (!aMaybePropertyName.empty()) {
PropertyNameAndColon(aMaybePropertyName);
}
mWriter.Write(scQuoteString);
mWriter.Write(aStringValue);
mWriter.Write(scQuoteString);
mNeedComma[mDepth] = true;
}
void NewVectorEntries(bool aNeedNewLines) {
// If these tiny allocations OOM we might as well just crash because we
// must be in serious memory trouble.
MOZ_RELEASE_ASSERT(mNeedComma.resizeUninitialized(mDepth + 1));
MOZ_RELEASE_ASSERT(mNeedNewlines.resizeUninitialized(mDepth + 1));
mNeedComma[mDepth] = false;
mNeedNewlines[mDepth] = aNeedNewLines;
}
void StartCollection(const Span<const char>& aMaybePropertyName,
const Span<const char>& aStartChar,
CollectionStyle aStyle = MultiLineStyle) {
Separator();
if (!aMaybePropertyName.empty()) {
PropertyNameAndColon(aMaybePropertyName);
}
mWriter.Write(aStartChar);
mNeedComma[mDepth] = true;
mDepth++;
NewVectorEntries(mNeedNewlines[mDepth - 1] && aStyle == MultiLineStyle);
}
// Adds the whitespace and closing char necessary to end a collection.
void EndCollection(const Span<const char>& aEndChar) {
MOZ_ASSERT(mDepth > 0);
if (mNeedNewlines[mDepth]) {
mWriter.Write(scNewLineString);
mDepth--;
Indent();
} else {
mDepth--;
}
mWriter.Write(aEndChar);
}
public:
explicit JSONWriter(JSONWriteFunc& aWriter,
CollectionStyle aStyle = MultiLineStyle)
: mWriter(aWriter), mNeedComma(), mNeedNewlines(), mDepth(0) {
NewVectorEntries(aStyle == MultiLineStyle);
}
explicit JSONWriter(UniquePtr<JSONWriteFunc> aWriter,
CollectionStyle aStyle = MultiLineStyle)
: mMaybeOwnedWriter(std::move(aWriter)),
mWriter(*mMaybeOwnedWriter),
mNeedComma(),
mNeedNewlines(),
mDepth(0) {
MOZ_RELEASE_ASSERT(
mMaybeOwnedWriter,
"JSONWriter must be given a non-null UniquePtr<JSONWriteFunc>");
NewVectorEntries(aStyle == MultiLineStyle);
}
// Returns the JSONWriteFunc passed in at creation, for temporary use. The
// JSONWriter object still owns the JSONWriteFunc.
JSONWriteFunc& WriteFunc() const MOZ_LIFETIME_BOUND { return mWriter; }
// For all the following functions, the "Prints:" comment indicates what the
// basic output looks like. However, it doesn't indicate the whitespace and
// trailing commas, which are automatically added as required.
//
// All property names and string properties are escaped as necessary.
// Prints: {
void Start(CollectionStyle aStyle = MultiLineStyle) {
StartCollection(scEmptyString, scTopObjectBeginString, aStyle);
}
// Prints: } and final newline.
void End() {
EndCollection(scTopObjectEndString);
if (mNeedNewlines[mDepth]) {
mWriter.Write(scNewLineString);
}
}
// Prints: "<aName>": null
void NullProperty(const Span<const char>& aName) {
Scalar(aName, scNullString);
}
template <size_t N>
void NullProperty(const char (&aName)[N]) {
// Keep null terminator from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
NullProperty(Span<const char>(aName, N));
}
// Prints: null
void NullElement() { NullProperty(scEmptyString); }
// Prints: "<aName>": <aBool>
void BoolProperty(const Span<const char>& aName, bool aBool) {
Scalar(aName, aBool ? scTrueString : scFalseString);
}
template <size_t N>
void BoolProperty(const char (&aName)[N], bool aBool) {
// Keep null terminator from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
BoolProperty(Span<const char>(aName, N), aBool);
}
// Prints: <aBool>
void BoolElement(bool aBool) { BoolProperty(scEmptyString, aBool); }
// Prints: "<aName>": <aInt>
void IntProperty(const Span<const char>& aName, int64_t aInt) {
char buf[64];
int len = SprintfLiteral(buf, "%" PRId64, aInt);
MOZ_RELEASE_ASSERT(len > 0);
Scalar(aName, Span<const char>(buf, size_t(len)));
}
template <size_t N>
void IntProperty(const char (&aName)[N], int64_t aInt) {
// Keep null terminator from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
IntProperty(Span<const char>(aName, N), aInt);
}
// Prints: <aInt>
void IntElement(int64_t aInt) { IntProperty(scEmptyString, aInt); }
// Prints: "<aName>": <aDouble>
void DoubleProperty(const Span<const char>& aName, double aDouble) {
static const size_t buflen = 64;
char buf[buflen];
const double_conversion::DoubleToStringConverter& converter =
double_conversion::DoubleToStringConverter::EcmaScriptConverter();
double_conversion::StringBuilder builder(buf, buflen);
converter.ToShortest(aDouble, &builder);
// TODO: The builder should know the length?!
Scalar(aName, MakeStringSpan(builder.Finalize()));
}
template <size_t N>
void DoubleProperty(const char (&aName)[N], double aDouble) {
// Keep null terminator from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
DoubleProperty(Span<const char>(aName, N), aDouble);
}
// Prints: <aDouble>
void DoubleElement(double aDouble) { DoubleProperty(scEmptyString, aDouble); }
// Prints: "<aName>": "<aStr>"
void StringProperty(const Span<const char>& aName,
const Span<const char>& aStr) {
QuotedScalar(aName, EscapedString(aStr).SpanRef());
}
template <size_t NN>
void StringProperty(const char (&aName)[NN], const Span<const char>& aStr) {
// Keep null terminator from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
StringProperty(Span<const char>(aName, NN), aStr);
}
template <size_t SN>
void StringProperty(const Span<const char>& aName, const char (&aStr)[SN]) {
// Keep null terminator from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
StringProperty(aName, Span<const char>(aStr, SN));
}
template <size_t NN, size_t SN>
void StringProperty(const char (&aName)[NN], const char (&aStr)[SN]) {
// Keep null terminators from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
StringProperty(Span<const char>(aName, NN), Span<const char>(aStr, SN));
}
// Prints: "<aStr>"
void StringElement(const Span<const char>& aStr) {
StringProperty(scEmptyString, aStr);
}
template <size_t N>
void StringElement(const char (&aName)[N]) {
// Keep null terminator from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
StringElement(Span<const char>(aName, N));
}
// Prints: "<aName>": [
void StartArrayProperty(const Span<const char>& aName,
CollectionStyle aStyle = MultiLineStyle) {
StartCollection(aName, scArrayBeginString, aStyle);
}
template <size_t N>
void StartArrayProperty(const char (&aName)[N],
CollectionStyle aStyle = MultiLineStyle) {
// Keep null terminator from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
StartArrayProperty(Span<const char>(aName, N), aStyle);
}
// Prints: [
void StartArrayElement(CollectionStyle aStyle = MultiLineStyle) {
StartArrayProperty(scEmptyString, aStyle);
}
// Prints: ]
void EndArray() { EndCollection(scArrayEndString); }
// Prints: "<aName>": {
void StartObjectProperty(const Span<const char>& aName,
CollectionStyle aStyle = MultiLineStyle) {
StartCollection(aName, scObjectBeginString, aStyle);
}
template <size_t N>
void StartObjectProperty(const char (&aName)[N],
CollectionStyle aStyle = MultiLineStyle) {
// Keep null terminator from literal strings, will be removed by
// EscapedString. This way C buffer arrays can be used as well.
StartObjectProperty(Span<const char>(aName, N), aStyle);
}
// Prints: {
void StartObjectElement(CollectionStyle aStyle = MultiLineStyle) {
StartObjectProperty(scEmptyString, aStyle);
}
// Prints: }
void EndObject() { EndCollection(scObjectEndString); }
};
} // namespace mozilla
#endif /* mozilla_JSONWriter_h */
|