proxygen
`folly/dynamic.h`

folly/dynamic.h provides a runtime dynamically typed value for C++, similar to the way languages with runtime type systems work (e.g. Python). It can hold types from a predetermined set of types (ints, bools, arrays of other dynamics, etc), similar to something like boost::variant, but the syntax is intended to be a little more like using the native type directly.

To use dynamic, you need to be using gcc 4.6 or later. You'll want to include folly/dynamic.h (or perhaps also folly/json.h).

Overview


Here are some code samples to get started (assumes a using folly::dynamic; was used):

1 dynamic twelve = 12; // creates a dynamic that holds an integer
2 dynamic str = "string"; // yep, this one is an fbstring
3 
4 // A few other types.
5 dynamic nul = nullptr;
6 dynamic boolean = false;
7 
8 // Arrays can be initialized with dynamic::array.
9 dynamic array = dynamic::array("array ", "of ", 4, " elements");
10 assert(array.size() == 4);
11 dynamic emptyArray = dynamic::array;
12 assert(emptyArray.empty());
13 
14 // Maps from dynamics to dynamics are called objects. The
15 // dynamic::object constant is how you make an empty map from dynamics
16 // to dynamics.
17 dynamic map = dynamic::object;
18 map["something"] = 12;
19 map["another_something"] = map["something"] * 2;
20 
21 // Dynamic objects may be intialized this way
22 dynamic map2 = dynamic::object("something", 12)("another_something", 24);

Runtime Type Checking and Conversions


Any operation on a dynamic requires checking at runtime that the type is compatible with the operation. If it isn't, you'll get a folly::TypeError. Other exceptions can also be thrown if you try to do something impossible (e.g. if you put a very large 64-bit integer in and try to read it out as a double).

More examples should hopefully clarify this:

1 dynamic dint = 42;
2 
3 dynamic str = "foo";
4 dynamic anotherStr = str + "something"; // fine
5 dynamic thisThrows = str + dint; // TypeError is raised

Explicit type conversions can be requested for some of the basic types:

1 dynamic dint = 12345678;
2 dynamic doub = dint.asDouble(); // doub will hold 12345678.0
3 dynamic str = dint.asString(); // str == "12345678"
4 
5 dynamic hugeInt = std::numeric_limits<int64_t>::max();
6 dynamic hugeDoub = hugeInt.asDouble(); // throws a folly/Conv.h error,
7  // since it can't fit in a double

For more complicated conversions, see DynamicConverter.

Iteration and Lookup


You can iterate over dynamic arrays as you would over any C++ sequence container.

1 dynamic array = dynamic::array(2, 3, "foo");
2 
3 for (auto& val : array) {
4  doSomethingWith(val);
5 }

You can iterate over dynamic maps by calling items(), keys(), values(), which behave similarly to the homonymous methods of Python dictionaries.

1 dynamic obj = dynamic::object(2, 3)("hello", "world")("x", 4);
2 
3 for (auto& pair : obj.items()) {
4  // Key is pair.first, value is pair.second
5  processKey(pair.first);
6  processValue(pair.second);
7 }
8 
9 for (auto& key : obj.keys()) {
10  processKey(key);
11 }
12 
13 for (auto& value : obj.values()) {
14  processValue(value);
15 }

You can find an element by key in a dynamic map using the find() method, which returns an iterator compatible with items():

1 dynamic obj = dynamic::object(2, 3)("hello", "world")("x", 4);
2 
3 auto pos = obj.find("hello");
4 // pos->first is "hello"
5 // pos->second is "world"
6 
7 auto pos = obj.find("no_such_key");
8 // pos == obj.items().end()

Use for JSON


The original motivation for implementing this type was to try to make dealing with json documents in C++ almost as easy as it is in languages with dynamic type systems (php or javascript, etc). The reader can judge whether we're anywhere near that goal, but here's what it looks like:

1 // Parsing JSON strings and using them.
2 std::string jsonDocument = R"({"key":12,"key2":[false, null, true, "yay"]})";
3 dynamic parsed = folly::parseJson(jsonDocument);
4 assert(parsed["key"] == 12);
5 assert(parsed["key2"][0] == false);
6 assert(parsed["key2"][1] == nullptr);
7 
8 // Building the same document programatically.
9 dynamic sonOfAJ = dynamic::object
10  ("key", 12)
11  ("key2", dynamic::array(false, nullptr, true, "yay"));
12 
13 // Printing. (See also folly::toPrettyJson)
14 auto str = folly::toJson(sonOfAJ);
15 assert(jsonDocument.compare(str) == 0);

Performance


Dynamic typing is more expensive than static typing, even when you do it in C++. ;)

However, some effort has been made to keep folly::dynamic and the json (de)serialization at least reasonably performant for common cases. The heap is only used for arrays and objects, and move construction is fully supported. String formatting internally also uses the highly performant folly::to<> (see folly/Conv.h).

A trade off to keep in mind though, is that sizeof(folly::dynamic) is 64 bytes. You probably don't want to use it if you need to allocate large numbers of them (prefer static types, etc).

Some Design Rationale


Q. Why doesn't a dynamic string support begin(), end(), and operator[]?

The value_type of a dynamic iterator is dynamic, and operator[] (or the at() function) has to return a reference to a dynamic. If we wanted this to work for strings, this would mean we'd have to support dynamics with a character type, and moreover that the internal representation of strings would be such that we can hand out references to dynamic as accessors on individual characters. There are a lot of potential efficiency drawbacks with this, and it seems like a feature that is not needed too often in practice.

Q. Isn't this just a poor imitation of the C# language feature?

Pretty much.