Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/target/libdart
A High Performance, Network Optimized, JSON Library
https://github.com/target/libdart
Last synced: 20 days ago
JSON representation
A High Performance, Network Optimized, JSON Library
- Host: GitHub
- URL: https://github.com/target/libdart
- Owner: target
- License: other
- Archived: true
- Created: 2019-05-02T20:05:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-20T00:52:29.000Z (10 months ago)
- Last Synced: 2024-07-31T19:16:24.688Z (4 months ago)
- Language: C++
- Homepage:
- Size: 3.29 MB
- Stars: 81
- Watchers: 8
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![Dart Logo](benchmark/logo.png)
==============
[![Build Status](https://travis-ci.com/target/libdart.svg?branch=master)](https://travis-ci.com/target/libdart)
[![Build status](https://ci.appveyor.com/api/projects/status/fji5sgka5toa7ieq/branch/master?svg=true)](https://ci.appveyor.com/project/Cfretz244/libdart-lud7s/branch/master)
[![Coverage Status](https://coveralls.io/repos/github/target/libdart/badge.svg?branch=master)](https://coveralls.io/github/target/libdart?branch=master)## A High Performance, Easy to Use, Network Optimized, JSON Library
**Dart** is both a wire-level binary **JSON** protocol, along with a high performance,
and surprisingly high level, **C++** API to interact with that **JSON**.
It is primarily optimized for efficiency of receiver interaction and on-the-wire
representation size, however, it also allows for dynamic modification when necessary.**Dart** can be used in any application as a dead-simple, fast, and lightweight
**JSON** parser, but it first and foremost targets real-time stream processing engines
in a schema-less environment.It offers logarithmic complexity of object key-lookup, guarantees stability of object
iteration, scales [extremely well](PERFORMANCE.md#lookup-finalized-random-fields-1)
as packet sizes increase, requires **zero** receiver-side memory allocations/parsing/unpacking
for read-only interactions, and exposes two interfaces, a header-only **C++14** interface for
typical use, and an **ABI** stable **C89** interface for binding against.Although not a **JSON** parser itself, **Dart** leverages the fastest general purpose
**JSON** parsers available ([source](https://github.com/miloyip/nativejson-benchmark)),
[RapidJSON](https://github.com/Tencent/rapidjson)
and [sajson](https://github.com/chadaustin/sajson), for format conversion both into,
and out of, **JSON**.Finally, as **Dart** can also be useful when working with config files, it also
supports parsing **YAML** via [libyaml](https://github.com/yaml/libyaml.git).## Contents
- [Quick Start](#quick-start)
- [Installation](#compilation-and-installation)
- [Performance](#performance)
- [Basic Usage](#basic-usage)
- [Strongly Typed API](#strongly-typed-api)
- [API Lifecycle](#api-lifecycle)
- [Explicit API Lifecycle](#explicit-api-lifecycle)
- [Mutability and Copy-on-Write](#mutability-and-copy-on-write)
- [Disabling Refcounting](#refcounted-by-default-disabled-by-request)
- [Advanced Usage](#customization-points-and-advanced-usage)## Quick Start
This readme covers a wide variety of information for the library, but for the impatient among us,
here are some at-a-glance examples. For examples of how to use the **C** binding layer,
see our [bindings](BINDINGS.md) document.**Dart** makes parsing a **JSON** string dead-simple, and crazy [fast](PARSING.md):
```c++
#include
#includeint main() {
// Fancy string literal is a raw literal.
auto json = dart::parse(R"({"msg":"hello from dart!"})");
std::cout << json["msg"].to_json() << std::endl;
}// => "hello from dart!"
```**Dart** automatically understands most built-in and `std` types
(and can be extended to work with any type), making it extremely
easy and natural to build **JSON**.
```c++
#include
#includeint main() {
// A simple example with some built-in types.
dart::array arr {1, "two", 3.14159, true, nullptr};
std::cout << arr << std::endl;// A more complex example with some complex STL types.
using clock = std::chrono::system_clock;
using value = std::variant;
using sequence = std::vector;
using map = std::map;// Dart recursively decomposes the type and figures it out.
arr.push_back(map {{"args", {3.14159, 2.99792, "top", "secret", clock::now()}}});
std::cout << arr << std::endl;
}// => [1,"two",3.14159,true,null]
// => [1,"two",3.14159,true,null,{"args":[3.14159,2.99792,"top","secret","2020-02-25T10:58:37.000Z"]}]
```The **Dart** container types (`dart::object` and `dart::array`) model the API
of the `std` equivalents (`std::map` and `std::vector` respectively), allowing
for extremely expressive, idiomatic, and type-safe interaction with a dynamically
typed notation language from a statically typed programming language:
```c++
#include
#include
#includeint main() {
// Build the same array as in the last example, but incrementally.
dart::array arr;
arr.push_back("two").push_front(1);
arr.insert(2, 3.14159);
arr.resize(5, true);
arr.set(4, nullptr);
std::cout << arr << std::endl;// Search for a particular element and erase the rest.
auto it = std::find(std::begin(arr), std::end(arr), 3.14159);
while (it != std::end(arr)) {
it = arr.erase(it);
}
std::cout << arr << std::endl;
}// => [1,"two",3.14159,true,null]
// => [1, "two"]
```**Dart** also makes it extremely easy to efficiently share data across machines/processes,
without the receiver needing to reparse the data.
```c++
#include// Function sends data over the network,
// through shared memory,
// into a file,
// wherever.
size_t send_data(void const* bytes, size_t len);int main() {
// Suppose we have some very important data
dart::object data {"albums", dart::array {"dark side", "meddle", "animals"}};// It can be finalized into a contiguous, architecture-independent, representation.
data.finalize();// We can then pass the raw bytes along.
// On the receiver end, a new packet instance can be constructed from this buffer
// without any additional work or parsing.
auto bytes = data.get_bytes();
auto sent = send_data(bytes.data(), bytes.size());
assert(sent == bytes.size());
}
```## Compilation and Installation
**Dart** is implemented using modern **C++**, and requires both Microsoft's Guidelines
Support Library [GSL](https://github.com/Microsoft/GSL), and a **C++14** enabled toolchain
(`clang` >= **3.8**, `gcc` >= **5.0**, apple's `clang` >= **8.3**, `MSVC` ~> **19.22**).
Support for **C++11** may be added in the future, but is not currently being pursued.**Dart** utilizes `cmake` for its build process and currently primarily targets
Linux/macOS, but has experimental (and improving) support for Windows.
On Linux/macOS, it can be built in the following way:
```bash
# Clone it down.
git clone https://github.com/target/libdart.git
cd libdart/# Create the cmake build directory and prepare a build
# with tests enabled.
mkdir build
cd build# Build, test, and install (assuming a 4 core machine).
# Running tests isn't mandatory, but is highly recommended.
# Dart is primarily a header-only library, but also includes
# an ABI-stable pure C binding layer which can be built and
# installed with -Dbuild_abi=ON
cmake .. # -Dbuild_abi=ON
make -j 4
ctest
make install# Generate documentation (if desired).
# Doxygen must have already been installed.
# Generates documentation inside the directory "docs"
cd ..
doxygen
```
For instructions on building for windows, see our [windows](WINDOWS.md) build instructions.**Dart** can optionally leverage [RapidJSON](https://github.com/Tencent/rapidjson),
[sajson](https://github.com/chadaustin/sajson),
and [libyaml](https://github.com/yaml/libyaml.git), and will attempt to detect installations
automatically while building, but can be independently specified with `-DDART_HAS_RAPIDJSON`,
`-DDART_USE_SAJSON`, and `-DDART_HAS_YAML` preprocessor flags.## Performance
**TL;DR**: **Dart**'s performance is excellent, but to see detailed breakdowns for different
workflows, see our [performance](PERFORMANCE.md) document.
For those interested in where this performance comes from, see our
[implementation](IMPLEMENTATION.md) document.**JSON** parsing performance is a big enough topic to be given its own document, which
can be found here: [parsing performance](PARSING.md).## Basic Usage
Overly detailed usage examples can be obtained from the `test/` directory, or by building the
included documentation, but some examples of basic usage are included below. For examples of
how to use the **C** binding layer, see our [bindings](BINDINGS.md) document.`dart::packet` is the primary class of the library, the most generic, and is likely to be the
most commonly interacted with. It's capable of representing any **JSON** type, has a _wide_
variety of conversions defined to make interaction easier, and also contains a large number
of accessors/introspection functions to work with the values it represents.An example of working with an some imaginary **HTTP** response encoded as **JSON**:
```c++
// Get some JSON from somewhere.
std::string json = input.read();// Get a packet.
dart::packet pkt = dart::packet::from_json(json);// operator[] always returns a new dart::packet instance by value
// operator<< stringifies the packet and is defined for all types
dart::packet header = pkt["header"];
std::cout << header["User-Agent"] << std::endl;
std::cout << header["Content-Type"] << std::endl;// Type-specific accessors return machine types and will throw if
// the packet instance is not of the requested type.
auto resp = pkt["response"];
switch (resp["code"].integer()) {
case 200:
{
// Explicit casts will also throw if not of the correct type
std::string_view body {resp["body"]};// Optional accesses will never throw, regardless of runtime type
double elapsed = resp["elapsed_millis"].decimal_or(0.0);
process_success(body, elapsed);
break;
}
case 300:
// Object and array types support C++11 range-for
// If using range-for with an object, will iterate over values
// Will throw if resp["resources"] is not of object or array type
for (auto res : resp["resources"]) {
// Numeric subscript operator will throw if "mods" isn't an array,
// but will return a null packet instance if index is out of bounds.
// "at" member function will always throw if out of bounds
resource_moved(res["name"].strv(), res["mods"][0], res["paths"].at(0));
}
break;
case 400:
{
char const* err = resp["user_error"].str();
std::string_view warn = resp["warning"].strv_or("");
process_failure(err, warn);
break;
}
default:
{
// If wishing to iterate over both the keys and values of an object,
// kvbegin() returns a tuple of iterators, which is convenient with C++17.
// Could also call key_begin() or begin() to get either individually
auto ctxt = resp["context"];
for (auto [k, v] = ctxt.kvbegin(); v != ctxt.end(); ++k, ++v) {
std::string msg = "Encountered internal error with context ";
msg += k->str();
msg += ": ";
msg += v->str();
report_internal_error(std::move(msg));
}
printf("Encountered internal error %s\n", resp["error"].str_or("Unknown error"));
}
}
```Build a **JSON** object from scratch:
```c++
// Create a base object.
// dart::packet::make_object can take arbitrarily many pairs of arguments.
dart::packet obj = dart::packet::make_object("hello", "goodbye", "answer", 42);// Put some more stuff in it.
obj.add_field("c", 2.99792);
obj.add_field("none", nullptr);
obj.add_field("truth", true);
obj.add_field("lies", false);
obj.add_field("fib", dart::packet::make_array(1, 1, 2, 3, 5, 8, 13));// Send it somewhere.
do_something(obj.to_json());
```Preparing a **JSON** object to be sent over the network:
```c++
// Assuming the packet from the previous example:
auto buffer = obj.finalize().get_bytes();// Write the buffer to some output:
socket.write(buffer.data(), buffer.size());
```## Strongly Typed API
**Dart** is first and foremost a dynamically typed library, for interacting with a
dynamically typed notation language, but as **C++** is a statically typed language, it
can be useful to statically know the type of a variable at compile-time.To enable this use-case, **Dart** exposes a secondary interface, fully interoperable
with the first, that enables static type enforcement.
```c++
// dart::object is an alias for dart::packet::object.
// It implements a subset of the dart::packet API that pertains to objects
// (no calls like integer(), push_back(), etc)
dart::object obj {"c", 2.99792};// dart::array is an alias for dart::packet::array.
// It implements a subset of the dart::packet API that pertains to arrays
// (no calls like decimal(), add_field(), etc)
dart::array fib {1, 1, 2, 3, 5, 8};
obj.add_field("data", std::move(fib));// dart::string is an alias for dart::packet::string.
// It implements a subset of the dart::packet API that pertains to strings
// Also implements some type-specific convenience operators that dart::packet doesn't
dart::string base = "hello world";
dart::string msg = base + ", hello life";
msg += "!";
obj.add_field("msg", std::move(msg));// dart::number is an alias for dart::packet::number.
// It implements a subset of the dart::packet API that pertains to numbers.
// Also implements some type-specific convenience operators that dart::packet doesn't
dart::number pi = 3.14159;
dart::number twicepi = pi * 2;
twicepi /= 2;
obj.add_field("pi", std::move(twicepi));// dart::flag is an alias for dart::packet::flag.
// It implements a subset of the dart::packet API that pertains to booleans.
dart::flag truth = true;
obj.add_field("truth", std::move(truth));// dart::null also exists for completeness, but isn't very useful
obj.add_field("none", dart::null {});// {"c":2.99792,"pi":3.14159,"msg":"hello world, hello life!","data":[1,1,2,3,5,8],"none":null,"truth":true}
std::cout << obj << std::endl;
```A variety of conversions between the APIs are defined, allowing types to implicitly
decay into other types which can safely subsume them, and requiring explicit casts
where the conversion might fail.To give a concrete example, `dart::object` can decay into `dart::packet` implicitly,
as `dart::packet` is more general and the operation will always succeed,
but `dart::packet` to `dart::object` requires a cast as it might throw._All_ **Dart** types are inter-comparable.
```c++
// Examples of some implicit/explicit conversions.
dart::object typed_obj {"rick", "sanchez", "morty", "smith"};
dart::packet untyped_obj = typed_obj;
dart::object retyped_obj {untyped_obj};// Since a JSON object can contain any type,
// dart::object can't know what the type of a particular key is,
// and therefore still returns dart::packet from its subscript operator.
dart::packet untyped_name = typed_obj["rick"];
dart::string typed_name {typed_obj["rick"]};// If we know in advance that a key will refer to a particular type,
// we can tell Dart like so
dart::string retyped_name = typed_obj["rick"].as();// We can also cast to non-dart types using this method
std::string name = typed_obj["rick"].as();// Finally, if we're not sure, we can use
std::optional opt_name = typed_obj["rick"].maybe_as();assert(untyped_name == typed_name);
assert(typed_name == retyped_name);
assert(typed_name == name);
assert(name == *opt_name);
assert(typed_obj == untyped_obj);
assert(typed_obj != typed_name);
assert(untyped_obj != untyped_name);
```
It is worth noting that while this API is included as a convenience, to allow **Dart** to
naturally express data across a variety of different domains and development workflows,
it does _not_ come with any performance improvement.## API Lifecycle
In addition to representing any type, `dart::packet` can be in one of two distinct states:
"finalized" and non-"finalized"Finalized packets are represented internally as a contiguous buffer of bytes, are immutable,
and are immediately ready to be sent over a network connection. In exchange for mutability,
finalized packets come with **_significant_** performance improvements, with object key-lookups
in particular seeing a 200%-300% performance increase, and object comparisons speeding up
by about 100x.```c++
// Get an object, starts out mutable.
auto data = dart::packet::make_object("status", 200, "err", nullptr);
assert(!data.is_finalized());
data.add_field("message", "OK");// Transition it into the finalized state.
// Finalizing a packet requires making a single allocation, walking across the object tree,
// and then freeing the original tree.
assert(!data.is_finalized());
data.finalize(); // <-- could also use data.lower();
assert(data.is_finalized());// Key lookups are now much faster, but we can no longer mutate the packet.
// The following line would throw:
data.add_field("can't", "do it"); // <-- BOOM// We can also now get access to a contiguous buffer of bytes representing the packet,
// ready to be written out to a file/over the network/etc.
gsl::span bytes = data.get_bytes();
file.write(bytes.data(), bytes.size());// We can transition back to being a mutable packet, ableit expensively, by calling:
assert(data.is_finalized());
data.definalize(); // <-- could also use data.lift();
assert(!data.is_finalized());data.add_field("can", "do it"); // <-- no explosion
```## Explicit API Lifecycle
The fact that `dart::packet` can interoperably juggle data across two very different
internal representations is convenient for many use-cases, but this necessarily comes
with an inability to reason at compile-time as to whether a particular packet can be
mutated. For this reason, **Dart** exposes two other types that explicitly document
this division at compile-time: `dart::buffer` and `dart::heap`.`dart::packet` is internally implemented in terms of `dart::buffer` and `dart::heap`,
and is implicitly covertible with either, which allows for expressive, safe, and
performant usage across a wide variety of domains.```c++
// Function takes a dart object that is definitely mutable
void a_high_level_function(dart::heap obj);// Function takes a dart object that is definitely immutable and can be
// used as a buffer of bytes.
void a_lower_level_network_function(dart::buffer buf);// Get a packet using the mutable api.
auto pkt = dart::heap::make_object("hello", "world");// Do stuff with it.
pkt.add_field("missing", nullptr);
a_high_level_function(pkt);// Say that we now know that we want an immutable representation,
// we can describe that in code using dart::buffer.
// dart::buffer exposes a smaller subset of the API presented by dart::packet,
// but it still behaves like any other dart object.
dart::buffer finalized = pkt.finalize();
assert(finalized.size() == 1U);
assert(finalized["hello"] == "world");
a_lower_level_network_function(finalized);// We can also convert back and forth as we choose.
// In general:
// * dart::heap|dart::buffer -> dart::packet is essentially free and does not
// require a cast.
// * dart::heap -> dart::buffer requires a single allocation and walking across
// the object tree, and is still relatively cheap, but requires a cast.
// * dart::buffer -> dart::heap requires allocations for as at least as many nodes
// in the tree and is very expensive; it also requires a cast.
dart::packet copy = pkt;
copy = finalized;
dart::heap unfinalized {finalized};
dart::buffer refinalized {unfinalized};
```The explicit API lifecycle also mixes with the strongly typed API, allowing for
code like the following:
```c++
// Definitely an object, might be mutable (starts out mutable).
dart::packet::object dynamic {"pi", 3.14159, "c", 2.99792};// Definitely a mutable object.
dart::heap::object mut {"pi", 3.14159, "c", 2.99792};// Definitely an immutable object.
dart::buffer::object immut {"pi", 3.14159, "c", 2.99792};// Definitely an array, might be mutable (starts out mutable).
dart::packet::array dynarr {1, "fish", 2, "fish"};// You get the point.
dart::heap::array mutarr {"red", "fish", "blue", "fish"};// This also interplays with conversions as expected
dart::buffer buff = immut;
dart::packet::object dynimmut = immut;
dart::packet pkt = dynimmut;assert(dynamic == mut);
assert(mut == immut);
assert(immut == dynamic);
assert(buff == immut);
assert(dynimmut == immut);
assert(pkt == buff);
assert(dynamic != dynarr);
assert(mut != mutarr);
```## Mutability and Copy-on-Write
By default, to keep memory in scope safely, **Dart** uses thread safe reference counting
based on `std::shared_ptr`. This behavior is a configuration point for the library which
will be covered later.To allow easy embedding in threaded applications, **Dart** follows a **copy-on-write**
data model in non-finalized mode, allowing for frictionless mutation of shared data.
This "just works" for the most part without the user being very involved, but it can have
some surprising implications:Example of it "just working":
```c++
// Create a base object.
dart::object orig {"hello", "world"};
assert(orig.refcount() == 1U);// Copy it.
// At this point, copy and orig share the same underlying representation, only an atomic
// increment was performed.
auto copy = orig;
assert(orig.refcount() == 2U);
assert(copy.refcount() == orig.refcount());// Mutate the copy.
// At this point, copy performs a shallow copy-out, copying only the immediate
// level of an arbitrarily deep tree maintained by orig.
copy.add_field("hello", "life");
assert(orig.refcount() == 1U);
assert(copy.refcount() == 1U);
assert(copy != orig);// Will output:
// {"hello":"world"}
// {"hello":"life"}
std::cout << orig << std::endl;
std::cout << copy << std::endl;
```Example of a surprising implication:
```c++
// Get an object with a nested array.
dart::object obj {"nested", dart::array {"surprise"}};// Attempt to remove something from the array.
// Subscript operator returns a temporary packet instance, which is then mutated, copying out
// in the processes, and is then destroyed at the semicolon, taking its modifications with it.
// If you're on a supported compiler, this line will yield a warning about a discarded
// result.
obj["nested"].pop_back();// The original object was not modified, and so the following will abort.
assert(obj["nested"].empty()); // <-- BOOM// What should have been done is the following:
auto nested = obj["nested"].pop_back();
obj.add_field("nested", std::move(nested));// This behavior also means that assigning to the subscript operator will not insert
// as the user might expect, instead assigning to a temporary null value.
// To avoid confusion on this point, the case is explicitly called out by the library.
obj["oops"] = dart::string {"ouch"}; // <-- WILL NOT COMPILE
```## Refcounted by Default, Disabled by Request
Thread-safe reference counting is ideal for many applications. It strikes a nice
balance between performance (predictable memory usage, no GC-pauses, etc) and safety,
while also making it trivially easy to share data across threads. Nothing is for free,
however, and there will always be use-cases that demand every last ounce of available
performance; **C++** has never been a "one size fits all" kind of language.As stated previously, **Dart** has a dedicated reference counter API that allows the
user to generically customize every facet of how **Dart** implements reference counting
(covered in-depth in the [advanced](ADVANCED.md) section), however, sometimes it's even
useful to be able to selectively _disable_ reference counting for just a particular section
of code; the **Dart** `view` API allows for this.All of the types mentioned thus far (`dart::heap`, `dart::buffer`, `dart::packet`,
and their strongly typed counterparts) contain the nested type `view`, which is
respectively interoperable, and exports a read-only subset of the associated API.As a motivating example:
```c++
#include
#include// A short function that samples a couple values
int64_t work_hard(dart::packet points, int samples = 10) {
// Sample some packets "randomly"
int64_t total = 0;
auto len = points.size();
for (int i = 0; i < samples; ++i) {
total += points[rand() % len].numeric();
}
return total;
}// A computationally heavy function that frequently accesses keys
int64_t work_really_hard(dart::packet::view points) {
int64_t total = 0;
auto end = std::end(points);
auto start = std::begin(points);
while (start != end) {
for (auto curr = start; curr != end; ++curr) {
total += curr->numeric_or(0);
}
++start;
}
return total;
}// Decides how important the data is and dispatches accordingly
int64_t process_data(dart::packet data) {
auto points = data["points"];
if (data["really_important"]) {
return work_really_hard(points);
} else {
return work_hard(points);
}
}
```
As you can see, we've added a new type, `dart::packet::view`, which is implicitly
constructible from any instance of `dart::packet`.
On the surface, `view` types appear to behave like any other **Dart** type, however,
internally they do _**not**_ participate in reference counting, instead caching a
pointer to the instance they were constructed from, which, in the right circumstances,
can be a huge performance win.Because we're using a `view` type, `work_really_hard` has become a pure function,
spinning over its input without mutation and accumulating into a local (probably register backed)
before returning; `work_hard`, by contrast, does a lot of unnecessary refcount manipulation
for little clear benefit.Judicious use of `view` types can result in significant performance wins, however, as they
do _**not**_ participate in reference counting, they can also dangle and corrupt memory very
easily if not handled appropriately (`work_really_hard` caching `points` in a static/global
variable would be trouble).
A fairly safe pattern with `view` types is to exclusively pass them down the stack (returning
a `view` requires thought) and think _very_ carefully before putting them in containers.Finally, a `view` type can be transitioned back into its fully-fledge counterpart at any point
in time by calling `dart::packet::as_owner` like so:
```c++
#include
#includestd::unordered_map cache;
dart::packet update_cache(dart::packet::view data) {
bool dummy;
auto found = cache.find(data["name"].str());
if (found == cache.end()) {
std::tie(found, dummy) = cache.emplace(data["name"].str(), data["values"].as_owner());
} else {
found->second = data["values"].as_owner();
}
return found->second;
}
```## Customization Points and Advanced Usage
For a guide on the customization points the library exposes, see our
[Advanced Usage](ADVANCED.md) document.