/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */
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.
Here are some code samples to get started (assumes a using folly::dynamic;
was used):
= 12; // creates a dynamic that holds an integer
dynamic twelve = "string"; // yep, this one is an fbstring
dynamic str
// A few other types.
= nullptr;
dynamic nul = false;
dynamic boolean
// Arrays can be initialized with dynamic::array.
= dynamic::array("array ", "of ", 4, " elements");
dynamic array assert(array.size() == 4);
= dynamic::array;
dynamic emptyArray assert(emptyArray.empty());
// Maps from dynamics to dynamics are called objects. The
// dynamic::object constant is how you make an empty map from dynamics
// to dynamics.
= dynamic::object;
dynamic map ["something"] = 12;
map["another_something"] = map["something"] * 2;
map
// Dynamic objects may be initialized this way
= dynamic::object("something", 12)("another_something", 24); dynamic map2
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:
= 42;
dynamic dint
= "foo";
dynamic str = str + "something"; // fine
dynamic anotherStr = str + dint; // TypeError is raised dynamic thisThrows
Explicit type conversions can be requested for some of the basic types:
= 12345678;
dynamic dint = dint.asDouble(); // doub will hold 12345678.0
dynamic doub = dint.asString(); // str == "12345678"
dynamic str
= std::numeric_limits<int64_t>::max();
dynamic hugeInt = hugeInt.asDouble(); // throws a folly/Conv.h error,
dynamic hugeDoub // since it can't fit in a double
For more complicated conversions, see DynamicConverter.
Equality operators (==
, !=
) are supported for all types.
For dynamics of the same type, the underlying equality operator shall apply.
For comparisons between different numeric types (double and int64), numeric equality will apply - thus 2.0 == 2
.
Values of any other different types will be deemed to not be equal.
Ordering operators (<
, <=
, >
, >=
) are supported for all types, except dynamic::object
which will throw if it is involved in an ordering operator.
For dynamics of the same type, the underlying ordering operator shall apply.
For comparisons between different numeric types (double and int64), numeric ordering will apply - thus 1.5 < 2
.
Ordering of values between other different types will maintain total ordering properties and be consistent within a given binary run, and thus safe for use in e.g. std::set
. The actual ordering is undefined and could change across versions, thus a dependency should not be taken outside of the total ordering property within a given binary.
Hashing is supported by all types, and the hashes of two values will match if they are equal per dynamic::operator==
.
As a result, numerical types have the same numerical hashing regardless of int64 vs double - so e.g. std::hash<dynamic>()(2)
will give the same value as std::hash<dynamic>()(2.0)
.
You can iterate over dynamic arrays as you would over any C++ sequence container.
= dynamic::array(2, 3, "foo");
dynamic array
for (auto& val : array) {
(val);
doSomethingWith}
You can iterate over dynamic maps by calling items()
, keys()
, values()
, which behave similarly to the homonymous methods of Python dictionaries.
= dynamic::object(2, 3)("hello", "world")("x", 4);
dynamic obj
for (auto& pair : obj.items()) {
// Key is pair.first, value is pair.second
(pair.first);
processKey(pair.second);
processValue}
for (auto& key : obj.keys()) {
(key);
processKey}
for (auto& value : obj.values()) {
(value);
processValue}
You can find an element by key in a dynamic map using the find()
method, which returns an iterator compatible with items()
:
= dynamic::object(2, 3)("hello", "world")("x", 4);
dynamic obj
auto pos = obj.find("hello");
// pos->first is "hello"
// pos->second is "world"
auto pos = obj.find("no_such_key");
// pos == obj.items().end()
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:
// Parsing JSON strings and using them.
std::string jsonDocument = R"({"key":12,"key2":[false, null, true, "yay"]})";
= folly::parseJson(jsonDocument);
dynamic parsed assert(parsed["key"] == 12);
assert(parsed["key2"][0] == false);
assert(parsed["key2"][1] == nullptr);
// Building the same document programmatically.
= dynamic::object
dynamic sonOfAJ ("key", 12)
("key2", dynamic::array(false, nullptr, true, "yay"));
// Printing. (See also folly::toPrettyJson)
auto str = folly::toJson(sonOfAJ);
assert(jsonDocument.compare(str) == 0);
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).
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.