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