annotate json11/json11.hpp @ 75:81e1c48e97f9

Rearrange and rename to Piper C++ structure
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 10 Oct 2016 16:31:09 +0100
parents
children
rev   line source
c@75 1 /* json11
c@75 2 *
c@75 3 * json11 is a tiny JSON library for C++11, providing JSON parsing and serialization.
c@75 4 *
c@75 5 * The core object provided by the library is json11::Json. A Json object represents any JSON
c@75 6 * value: null, bool, number (int or double), string (std::string), array (std::vector), or
c@75 7 * object (std::map).
c@75 8 *
c@75 9 * Json objects act like values: they can be assigned, copied, moved, compared for equality or
c@75 10 * order, etc. There are also helper methods Json::dump, to serialize a Json to a string, and
c@75 11 * Json::parse (static) to parse a std::string as a Json object.
c@75 12 *
c@75 13 * Internally, the various types of Json object are represented by the JsonValue class
c@75 14 * hierarchy.
c@75 15 *
c@75 16 * A note on numbers - JSON specifies the syntax of number formatting but not its semantics,
c@75 17 * so some JSON implementations distinguish between integers and floating-point numbers, while
c@75 18 * some don't. In json11, we choose the latter. Because some JSON implementations (namely
c@75 19 * Javascript itself) treat all numbers as the same type, distinguishing the two leads
c@75 20 * to JSON that will be *silently* changed by a round-trip through those implementations.
c@75 21 * Dangerous! To avoid that risk, json11 stores all numbers as double internally, but also
c@75 22 * provides integer helpers.
c@75 23 *
c@75 24 * Fortunately, double-precision IEEE754 ('double') can precisely store any integer in the
c@75 25 * range +/-2^53, which includes every 'int' on most systems. (Timestamps often use int64
c@75 26 * or long long to avoid the Y2038K problem; a double storing microseconds since some epoch
c@75 27 * will be exact for +/- 275 years.)
c@75 28 */
c@75 29
c@75 30 /* Copyright (c) 2013 Dropbox, Inc.
c@75 31 *
c@75 32 * Permission is hereby granted, free of charge, to any person obtaining a copy
c@75 33 * of this software and associated documentation files (the "Software"), to deal
c@75 34 * in the Software without restriction, including without limitation the rights
c@75 35 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
c@75 36 * copies of the Software, and to permit persons to whom the Software is
c@75 37 * furnished to do so, subject to the following conditions:
c@75 38 *
c@75 39 * The above copyright notice and this permission notice shall be included in
c@75 40 * all copies or substantial portions of the Software.
c@75 41 *
c@75 42 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
c@75 43 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
c@75 44 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
c@75 45 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
c@75 46 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
c@75 47 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
c@75 48 * THE SOFTWARE.
c@75 49 */
c@75 50
c@75 51 #pragma once
c@75 52
c@75 53 #include <string>
c@75 54 #include <vector>
c@75 55 #include <map>
c@75 56 #include <memory>
c@75 57 #include <initializer_list>
c@75 58
c@75 59 namespace json11 {
c@75 60
c@75 61 enum JsonParse {
c@75 62 STANDARD, COMMENTS
c@75 63 };
c@75 64
c@75 65 class JsonValue;
c@75 66
c@75 67 class Json final {
c@75 68 public:
c@75 69 // Types
c@75 70 enum Type {
c@75 71 NUL, NUMBER, BOOL, STRING, ARRAY, OBJECT
c@75 72 };
c@75 73
c@75 74 // Array and object typedefs
c@75 75 typedef std::vector<Json> array;
c@75 76 typedef std::map<std::string, Json> object;
c@75 77
c@75 78 // Constructors for the various types of JSON value.
c@75 79 Json() noexcept; // NUL
c@75 80 Json(std::nullptr_t) noexcept; // NUL
c@75 81 Json(double value); // NUMBER
c@75 82 Json(int value); // NUMBER
c@75 83 Json(bool value); // BOOL
c@75 84 Json(const std::string &value); // STRING
c@75 85 Json(std::string &&value); // STRING
c@75 86 Json(const char * value); // STRING
c@75 87 Json(const array &values); // ARRAY
c@75 88 Json(array &&values); // ARRAY
c@75 89 Json(const object &values); // OBJECT
c@75 90 Json(object &&values); // OBJECT
c@75 91
c@75 92 // Implicit constructor: anything with a to_json() function.
c@75 93 template <class T, class = decltype(&T::to_json)>
c@75 94 Json(const T & t) : Json(t.to_json()) {}
c@75 95
c@75 96 // Implicit constructor: map-like objects (std::map, std::unordered_map, etc)
c@75 97 template <class M, typename std::enable_if<
c@75 98 std::is_constructible<std::string, typename M::key_type>::value
c@75 99 && std::is_constructible<Json, typename M::mapped_type>::value,
c@75 100 int>::type = 0>
c@75 101 Json(const M & m) : Json(object(m.begin(), m.end())) {}
c@75 102
c@75 103 // Implicit constructor: vector-like objects (std::list, std::vector, std::set, etc)
c@75 104 template <class V, typename std::enable_if<
c@75 105 std::is_constructible<Json, typename V::value_type>::value,
c@75 106 int>::type = 0>
c@75 107 Json(const V & v) : Json(array(v.begin(), v.end())) {}
c@75 108
c@75 109 // This prevents Json(some_pointer) from accidentally producing a bool. Use
c@75 110 // Json(bool(some_pointer)) if that behavior is desired.
c@75 111 Json(void *) = delete;
c@75 112
c@75 113 // Accessors
c@75 114 Type type() const;
c@75 115
c@75 116 bool is_null() const { return type() == NUL; }
c@75 117 bool is_number() const { return type() == NUMBER; }
c@75 118 bool is_bool() const { return type() == BOOL; }
c@75 119 bool is_string() const { return type() == STRING; }
c@75 120 bool is_array() const { return type() == ARRAY; }
c@75 121 bool is_object() const { return type() == OBJECT; }
c@75 122
c@75 123 // Return the enclosed value if this is a number, 0 otherwise. Note that json11 does not
c@75 124 // distinguish between integer and non-integer numbers - number_value() and int_value()
c@75 125 // can both be applied to a NUMBER-typed object.
c@75 126 double number_value() const;
c@75 127 int int_value() const;
c@75 128
c@75 129 // Return the enclosed value if this is a boolean, false otherwise.
c@75 130 bool bool_value() const;
c@75 131 // Return the enclosed string if this is a string, "" otherwise.
c@75 132 const std::string &string_value() const;
c@75 133 // Return the enclosed std::vector if this is an array, or an empty vector otherwise.
c@75 134 const array &array_items() const;
c@75 135 // Return the enclosed std::map if this is an object, or an empty map otherwise.
c@75 136 const object &object_items() const;
c@75 137
c@75 138 // Return a reference to arr[i] if this is an array, Json() otherwise.
c@75 139 const Json & operator[](size_t i) const;
c@75 140 // Return a reference to obj[key] if this is an object, Json() otherwise.
c@75 141 const Json & operator[](const std::string &key) const;
c@75 142
c@75 143 // Serialize.
c@75 144 void dump(std::string &out) const;
c@75 145 std::string dump() const {
c@75 146 std::string out;
c@75 147 dump(out);
c@75 148 return out;
c@75 149 }
c@75 150
c@75 151 // Parse. If parse fails, return Json() and assign an error message to err.
c@75 152 static Json parse(const std::string & in,
c@75 153 std::string & err,
c@75 154 JsonParse strategy = JsonParse::STANDARD);
c@75 155 static Json parse(const char * in,
c@75 156 std::string & err,
c@75 157 JsonParse strategy = JsonParse::STANDARD) {
c@75 158 if (in) {
c@75 159 return parse(std::string(in), err, strategy);
c@75 160 } else {
c@75 161 err = "null input";
c@75 162 return nullptr;
c@75 163 }
c@75 164 }
c@75 165 // Parse multiple objects, concatenated or separated by whitespace
c@75 166 static std::vector<Json> parse_multi(
c@75 167 const std::string & in,
c@75 168 std::string & err,
c@75 169 JsonParse strategy = JsonParse::STANDARD);
c@75 170
c@75 171 bool operator== (const Json &rhs) const;
c@75 172 bool operator< (const Json &rhs) const;
c@75 173 bool operator!= (const Json &rhs) const { return !(*this == rhs); }
c@75 174 bool operator<= (const Json &rhs) const { return !(rhs < *this); }
c@75 175 bool operator> (const Json &rhs) const { return (rhs < *this); }
c@75 176 bool operator>= (const Json &rhs) const { return !(*this < rhs); }
c@75 177
c@75 178 /* has_shape(types, err)
c@75 179 *
c@75 180 * Return true if this is a JSON object and, for each item in types, has a field of
c@75 181 * the given type. If not, return false and set err to a descriptive message.
c@75 182 */
c@75 183 typedef std::initializer_list<std::pair<std::string, Type>> shape;
c@75 184 bool has_shape(const shape & types, std::string & err) const;
c@75 185
c@75 186 private:
c@75 187 std::shared_ptr<JsonValue> m_ptr;
c@75 188 };
c@75 189
c@75 190 // Internal class hierarchy - JsonValue objects are not exposed to users of this API.
c@75 191 class JsonValue {
c@75 192 protected:
c@75 193 friend class Json;
c@75 194 friend class JsonInt;
c@75 195 friend class JsonDouble;
c@75 196 virtual Json::Type type() const = 0;
c@75 197 virtual bool equals(const JsonValue * other) const = 0;
c@75 198 virtual bool less(const JsonValue * other) const = 0;
c@75 199 virtual void dump(std::string &out) const = 0;
c@75 200 virtual double number_value() const;
c@75 201 virtual int int_value() const;
c@75 202 virtual bool bool_value() const;
c@75 203 virtual const std::string &string_value() const;
c@75 204 virtual const Json::array &array_items() const;
c@75 205 virtual const Json &operator[](size_t i) const;
c@75 206 virtual const Json::object &object_items() const;
c@75 207 virtual const Json &operator[](const std::string &key) const;
c@75 208 virtual ~JsonValue() {}
c@75 209 };
c@75 210
c@75 211 } // namespace json11