cannam@150: /* json11 cannam@150: * cannam@150: * json11 is a tiny JSON library for C++11, providing JSON parsing and serialization. cannam@150: * cannam@150: * The core object provided by the library is json11::Json. A Json object represents any JSON cannam@150: * value: null, bool, number (int or double), string (std::string), array (std::vector), or cannam@150: * object (std::map). cannam@150: * cannam@150: * Json objects act like values: they can be assigned, copied, moved, compared for equality or cannam@150: * order, etc. There are also helper methods Json::dump, to serialize a Json to a string, and cannam@150: * Json::parse (static) to parse a std::string as a Json object. cannam@150: * cannam@150: * Internally, the various types of Json object are represented by the JsonValue class cannam@150: * hierarchy. cannam@150: * cannam@150: * A note on numbers - JSON specifies the syntax of number formatting but not its semantics, cannam@150: * so some JSON implementations distinguish between integers and floating-point numbers, while cannam@150: * some don't. In json11, we choose the latter. Because some JSON implementations (namely cannam@150: * Javascript itself) treat all numbers as the same type, distinguishing the two leads cannam@150: * to JSON that will be *silently* changed by a round-trip through those implementations. cannam@150: * Dangerous! To avoid that risk, json11 stores all numbers as double internally, but also cannam@150: * provides integer helpers. cannam@150: * cannam@150: * Fortunately, double-precision IEEE754 ('double') can precisely store any integer in the cannam@150: * range +/-2^53, which includes every 'int' on most systems. (Timestamps often use int64 cannam@150: * or long long to avoid the Y2038K problem; a double storing microseconds since some epoch cannam@150: * will be exact for +/- 275 years.) cannam@150: */ cannam@150: cannam@150: /* Copyright (c) 2013 Dropbox, Inc. cannam@150: * cannam@150: * Permission is hereby granted, free of charge, to any person obtaining a copy cannam@150: * of this software and associated documentation files (the "Software"), to deal cannam@150: * in the Software without restriction, including without limitation the rights cannam@150: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell cannam@150: * copies of the Software, and to permit persons to whom the Software is cannam@150: * furnished to do so, subject to the following conditions: cannam@150: * cannam@150: * The above copyright notice and this permission notice shall be included in cannam@150: * all copies or substantial portions of the Software. cannam@150: * cannam@150: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR cannam@150: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, cannam@150: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE cannam@150: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER cannam@150: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, cannam@150: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN cannam@150: * THE SOFTWARE. cannam@150: */ cannam@150: cannam@150: #pragma once cannam@150: cannam@150: #include cannam@150: #include cannam@150: #include cannam@150: #include cannam@150: #include cannam@150: cannam@150: namespace json11 { cannam@150: cannam@150: enum JsonParse { cannam@150: STANDARD, COMMENTS cannam@150: }; cannam@150: cannam@150: class JsonValue; cannam@150: cannam@150: class Json final { cannam@150: public: cannam@150: // Types cannam@150: enum Type { cannam@150: NUL, NUMBER, BOOL, STRING, ARRAY, OBJECT cannam@150: }; cannam@150: cannam@150: // Array and object typedefs cannam@150: typedef std::vector array; cannam@150: typedef std::map object; cannam@150: cannam@150: // Constructors for the various types of JSON value. cannam@150: Json() noexcept; // NUL cannam@150: Json(std::nullptr_t) noexcept; // NUL cannam@150: Json(double value); // NUMBER cannam@150: Json(int value); // NUMBER cannam@150: Json(bool value); // BOOL cannam@150: Json(const std::string &value); // STRING cannam@150: Json(std::string &&value); // STRING cannam@150: Json(const char * value); // STRING cannam@150: Json(const array &values); // ARRAY cannam@150: Json(array &&values); // ARRAY cannam@150: Json(const object &values); // OBJECT cannam@150: Json(object &&values); // OBJECT cannam@150: cannam@150: // Implicit constructor: anything with a to_json() function. cannam@150: template cannam@150: Json(const T & t) : Json(t.to_json()) {} cannam@150: cannam@150: // Implicit constructor: map-like objects (std::map, std::unordered_map, etc) cannam@150: template ::value cannam@150: && std::is_constructible::value, cannam@150: int>::type = 0> cannam@150: Json(const M & m) : Json(object(m.begin(), m.end())) {} cannam@150: cannam@150: // Implicit constructor: vector-like objects (std::list, std::vector, std::set, etc) cannam@150: template ::value, cannam@150: int>::type = 0> cannam@150: Json(const V & v) : Json(array(v.begin(), v.end())) {} cannam@150: cannam@150: // This prevents Json(some_pointer) from accidentally producing a bool. Use cannam@150: // Json(bool(some_pointer)) if that behavior is desired. cannam@150: Json(void *) = delete; cannam@150: cannam@150: // Accessors cannam@150: Type type() const; cannam@150: cannam@150: bool is_null() const { return type() == NUL; } cannam@150: bool is_number() const { return type() == NUMBER; } cannam@150: bool is_bool() const { return type() == BOOL; } cannam@150: bool is_string() const { return type() == STRING; } cannam@150: bool is_array() const { return type() == ARRAY; } cannam@150: bool is_object() const { return type() == OBJECT; } cannam@150: cannam@150: // Return the enclosed value if this is a number, 0 otherwise. Note that json11 does not cannam@150: // distinguish between integer and non-integer numbers - number_value() and int_value() cannam@150: // can both be applied to a NUMBER-typed object. cannam@150: double number_value() const; cannam@150: int int_value() const; cannam@150: cannam@150: // Return the enclosed value if this is a boolean, false otherwise. cannam@150: bool bool_value() const; cannam@150: // Return the enclosed string if this is a string, "" otherwise. cannam@150: const std::string &string_value() const; cannam@150: // Return the enclosed std::vector if this is an array, or an empty vector otherwise. cannam@150: const array &array_items() const; cannam@150: // Return the enclosed std::map if this is an object, or an empty map otherwise. cannam@150: const object &object_items() const; cannam@150: cannam@150: // Return a reference to arr[i] if this is an array, Json() otherwise. cannam@150: const Json & operator[](size_t i) const; cannam@150: // Return a reference to obj[key] if this is an object, Json() otherwise. cannam@150: const Json & operator[](const std::string &key) const; cannam@150: cannam@150: // Serialize. cannam@150: void dump(std::string &out) const; cannam@150: std::string dump() const { cannam@150: std::string out; cannam@150: dump(out); cannam@150: return out; cannam@150: } cannam@150: cannam@150: // Parse. If parse fails, return Json() and assign an error message to err. cannam@150: static Json parse(const std::string & in, cannam@150: std::string & err, cannam@150: JsonParse strategy = JsonParse::STANDARD); cannam@150: static Json parse(const char * in, cannam@150: std::string & err, cannam@150: JsonParse strategy = JsonParse::STANDARD) { cannam@150: if (in) { cannam@150: return parse(std::string(in), err, strategy); cannam@150: } else { cannam@150: err = "null input"; cannam@150: return nullptr; cannam@150: } cannam@150: } cannam@150: // Parse multiple objects, concatenated or separated by whitespace cannam@150: static std::vector parse_multi( cannam@150: const std::string & in, cannam@150: std::string & err, cannam@150: JsonParse strategy = JsonParse::STANDARD); cannam@150: cannam@150: bool operator== (const Json &rhs) const; cannam@150: bool operator< (const Json &rhs) const; cannam@150: bool operator!= (const Json &rhs) const { return !(*this == rhs); } cannam@150: bool operator<= (const Json &rhs) const { return !(rhs < *this); } cannam@150: bool operator> (const Json &rhs) const { return (rhs < *this); } cannam@150: bool operator>= (const Json &rhs) const { return !(*this < rhs); } cannam@150: cannam@150: /* has_shape(types, err) cannam@150: * cannam@150: * Return true if this is a JSON object and, for each item in types, has a field of cannam@150: * the given type. If not, return false and set err to a descriptive message. cannam@150: */ cannam@150: typedef std::initializer_list> shape; cannam@150: bool has_shape(const shape & types, std::string & err) const; cannam@150: cannam@150: private: cannam@150: std::shared_ptr m_ptr; cannam@150: }; cannam@150: cannam@150: // Internal class hierarchy - JsonValue objects are not exposed to users of this API. cannam@150: class JsonValue { cannam@150: protected: cannam@150: friend class Json; cannam@150: friend class JsonInt; cannam@150: friend class JsonDouble; cannam@150: virtual Json::Type type() const = 0; cannam@150: virtual bool equals(const JsonValue * other) const = 0; cannam@150: virtual bool less(const JsonValue * other) const = 0; cannam@150: virtual void dump(std::string &out) const = 0; cannam@150: virtual double number_value() const; cannam@150: virtual int int_value() const; cannam@150: virtual bool bool_value() const; cannam@150: virtual const std::string &string_value() const; cannam@150: virtual const Json::array &array_items() const; cannam@150: virtual const Json &operator[](size_t i) const; cannam@150: virtual const Json::object &object_items() const; cannam@150: virtual const Json &operator[](const std::string &key) const; cannam@150: virtual ~JsonValue() {} cannam@150: }; cannam@150: cannam@150: } // namespace json11