c@5: /* Copyright (c) 2013 Dropbox, Inc. c@5: * c@5: * Permission is hereby granted, free of charge, to any person obtaining a copy c@5: * of this software and associated documentation files (the "Software"), to deal c@5: * in the Software without restriction, including without limitation the rights c@5: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell c@5: * copies of the Software, and to permit persons to whom the Software is c@5: * furnished to do so, subject to the following conditions: c@5: * c@5: * The above copyright notice and this permission notice shall be included in c@5: * all copies or substantial portions of the Software. c@5: * c@5: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR c@5: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, c@5: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE c@5: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER c@5: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, c@5: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN c@5: * THE SOFTWARE. c@5: */ c@5: c@5: #include "json11.hpp" c@5: #include c@5: #include c@5: #include c@5: #include c@5: #include c@5: c@5: namespace json11 { c@5: c@5: static const int max_depth = 200; c@5: c@5: using std::string; c@5: using std::vector; c@5: using std::map; c@5: using std::make_shared; c@5: using std::initializer_list; c@5: using std::move; c@5: c@5: /* * * * * * * * * * * * * * * * * * * * c@5: * Serialization c@5: */ c@5: c@5: static void dump(std::nullptr_t, string &out) { c@5: out += "null"; c@5: } c@5: c@5: static void dump(double value, string &out) { c@5: if (std::isfinite(value)) { c@5: char buf[32]; c@5: snprintf(buf, sizeof buf, "%.17g", value); c@5: out += buf; c@5: } else { c@5: out += "null"; c@5: } c@5: } c@5: c@5: static void dump(int value, string &out) { c@5: char buf[32]; c@5: snprintf(buf, sizeof buf, "%d", value); c@5: out += buf; c@5: } c@5: c@5: static void dump(bool value, string &out) { c@5: out += value ? "true" : "false"; c@5: } c@5: c@5: static void dump(const string &value, string &out) { c@5: out += '"'; c@5: for (size_t i = 0; i < value.length(); i++) { c@5: const char ch = value[i]; c@5: if (ch == '\\') { c@5: out += "\\\\"; c@5: } else if (ch == '"') { c@5: out += "\\\""; c@5: } else if (ch == '\b') { c@5: out += "\\b"; c@5: } else if (ch == '\f') { c@5: out += "\\f"; c@5: } else if (ch == '\n') { c@5: out += "\\n"; c@5: } else if (ch == '\r') { c@5: out += "\\r"; c@5: } else if (ch == '\t') { c@5: out += "\\t"; c@5: } else if (static_cast(ch) <= 0x1f) { c@5: char buf[8]; c@5: snprintf(buf, sizeof buf, "\\u%04x", ch); c@5: out += buf; c@5: } else if (static_cast(ch) == 0xe2 && static_cast(value[i+1]) == 0x80 c@5: && static_cast(value[i+2]) == 0xa8) { c@5: out += "\\u2028"; c@5: i += 2; c@5: } else if (static_cast(ch) == 0xe2 && static_cast(value[i+1]) == 0x80 c@5: && static_cast(value[i+2]) == 0xa9) { c@5: out += "\\u2029"; c@5: i += 2; c@5: } else { c@5: out += ch; c@5: } c@5: } c@5: out += '"'; c@5: } c@5: c@5: static void dump(const Json::array &values, string &out) { c@5: bool first = true; c@5: out += "["; c@5: for (const auto &value : values) { c@5: if (!first) c@5: out += ", "; c@5: value.dump(out); c@5: first = false; c@5: } c@5: out += "]"; c@5: } c@5: c@5: static void dump(const Json::object &values, string &out) { c@5: bool first = true; c@5: out += "{"; c@5: for (const auto &kv : values) { c@5: if (!first) c@5: out += ", "; c@5: dump(kv.first, out); c@5: out += ": "; c@5: kv.second.dump(out); c@5: first = false; c@5: } c@5: out += "}"; c@5: } c@5: c@5: void Json::dump(string &out) const { c@5: m_ptr->dump(out); c@5: } c@5: c@5: /* * * * * * * * * * * * * * * * * * * * c@5: * Value wrappers c@5: */ c@5: c@5: template c@5: class Value : public JsonValue { c@5: protected: c@5: c@5: // Constructors c@5: explicit Value(const T &value) : m_value(value) {} c@5: explicit Value(T &&value) : m_value(move(value)) {} c@5: c@5: // Get type tag c@5: Json::Type type() const override { c@5: return tag; c@5: } c@5: c@5: // Comparisons c@5: bool equals(const JsonValue * other) const override { c@5: return m_value == static_cast *>(other)->m_value; c@5: } c@5: bool less(const JsonValue * other) const override { c@5: return m_value < static_cast *>(other)->m_value; c@5: } c@5: c@5: const T m_value; c@5: void dump(string &out) const override { json11::dump(m_value, out); } c@5: }; c@5: c@5: class JsonDouble final : public Value { c@5: double number_value() const override { return m_value; } c@5: int int_value() const override { return static_cast(m_value); } c@5: bool equals(const JsonValue * other) const override { return m_value == other->number_value(); } c@5: bool less(const JsonValue * other) const override { return m_value < other->number_value(); } c@5: public: c@5: explicit JsonDouble(double value) : Value(value) {} c@5: }; c@5: c@5: class JsonInt final : public Value { c@5: double number_value() const override { return m_value; } c@5: int int_value() const override { return m_value; } c@5: bool equals(const JsonValue * other) const override { return m_value == other->number_value(); } c@5: bool less(const JsonValue * other) const override { return m_value < other->number_value(); } c@5: public: c@5: explicit JsonInt(int value) : Value(value) {} c@5: }; c@5: c@5: class JsonBoolean final : public Value { c@5: bool bool_value() const override { return m_value; } c@5: public: c@5: explicit JsonBoolean(bool value) : Value(value) {} c@5: }; c@5: c@5: class JsonString final : public Value { c@5: const string &string_value() const override { return m_value; } c@5: public: c@5: explicit JsonString(const string &value) : Value(value) {} c@5: explicit JsonString(string &&value) : Value(move(value)) {} c@5: }; c@5: c@5: class JsonArray final : public Value { c@5: const Json::array &array_items() const override { return m_value; } c@5: const Json & operator[](size_t i) const override; c@5: public: c@5: explicit JsonArray(const Json::array &value) : Value(value) {} c@5: explicit JsonArray(Json::array &&value) : Value(move(value)) {} c@5: }; c@5: c@5: class JsonObject final : public Value { c@5: const Json::object &object_items() const override { return m_value; } c@5: const Json & operator[](const string &key) const override; c@5: public: c@5: explicit JsonObject(const Json::object &value) : Value(value) {} c@5: explicit JsonObject(Json::object &&value) : Value(move(value)) {} c@5: }; c@5: c@5: class JsonNull final : public Value { c@5: public: c@5: JsonNull() : Value(nullptr) {} c@5: }; c@5: c@5: /* * * * * * * * * * * * * * * * * * * * c@5: * Static globals - static-init-safe c@5: */ c@5: struct Statics { c@5: const std::shared_ptr null = make_shared(); c@5: const std::shared_ptr t = make_shared(true); c@5: const std::shared_ptr f = make_shared(false); c@5: const string empty_string; c@5: const vector empty_vector; c@5: const map empty_map; c@5: Statics() {} c@5: }; c@5: c@5: static const Statics & statics() { c@5: static const Statics s {}; c@5: return s; c@5: } c@5: c@5: static const Json & static_null() { c@5: // This has to be separate, not in Statics, because Json() accesses statics().null. c@5: static const Json json_null; c@5: return json_null; c@5: } c@5: c@5: /* * * * * * * * * * * * * * * * * * * * c@5: * Constructors c@5: */ c@5: c@5: Json::Json() noexcept : m_ptr(statics().null) {} c@5: Json::Json(std::nullptr_t) noexcept : m_ptr(statics().null) {} c@5: Json::Json(double value) : m_ptr(make_shared(value)) {} c@5: Json::Json(int value) : m_ptr(make_shared(value)) {} c@5: Json::Json(bool value) : m_ptr(value ? statics().t : statics().f) {} c@5: Json::Json(const string &value) : m_ptr(make_shared(value)) {} c@5: Json::Json(string &&value) : m_ptr(make_shared(move(value))) {} c@5: Json::Json(const char * value) : m_ptr(make_shared(value)) {} c@5: Json::Json(const Json::array &values) : m_ptr(make_shared(values)) {} c@5: Json::Json(Json::array &&values) : m_ptr(make_shared(move(values))) {} c@5: Json::Json(const Json::object &values) : m_ptr(make_shared(values)) {} c@5: Json::Json(Json::object &&values) : m_ptr(make_shared(move(values))) {} c@5: c@5: /* * * * * * * * * * * * * * * * * * * * c@5: * Accessors c@5: */ c@5: c@5: Json::Type Json::type() const { return m_ptr->type(); } c@5: double Json::number_value() const { return m_ptr->number_value(); } c@5: int Json::int_value() const { return m_ptr->int_value(); } c@5: bool Json::bool_value() const { return m_ptr->bool_value(); } c@5: const string & Json::string_value() const { return m_ptr->string_value(); } c@5: const vector & Json::array_items() const { return m_ptr->array_items(); } c@5: const map & Json::object_items() const { return m_ptr->object_items(); } c@5: const Json & Json::operator[] (size_t i) const { return (*m_ptr)[i]; } c@5: const Json & Json::operator[] (const string &key) const { return (*m_ptr)[key]; } c@5: c@5: double JsonValue::number_value() const { return 0; } c@5: int JsonValue::int_value() const { return 0; } c@5: bool JsonValue::bool_value() const { return false; } c@5: const string & JsonValue::string_value() const { return statics().empty_string; } c@5: const vector & JsonValue::array_items() const { return statics().empty_vector; } c@5: const map & JsonValue::object_items() const { return statics().empty_map; } c@5: const Json & JsonValue::operator[] (size_t) const { return static_null(); } c@5: const Json & JsonValue::operator[] (const string &) const { return static_null(); } c@5: c@5: const Json & JsonObject::operator[] (const string &key) const { c@5: auto iter = m_value.find(key); c@5: return (iter == m_value.end()) ? static_null() : iter->second; c@5: } c@5: const Json & JsonArray::operator[] (size_t i) const { c@5: if (i >= m_value.size()) return static_null(); c@5: else return m_value[i]; c@5: } c@5: c@5: /* * * * * * * * * * * * * * * * * * * * c@5: * Comparison c@5: */ c@5: c@5: bool Json::operator== (const Json &other) const { c@5: if (m_ptr->type() != other.m_ptr->type()) c@5: return false; c@5: c@5: return m_ptr->equals(other.m_ptr.get()); c@5: } c@5: c@5: bool Json::operator< (const Json &other) const { c@5: if (m_ptr->type() != other.m_ptr->type()) c@5: return m_ptr->type() < other.m_ptr->type(); c@5: c@5: return m_ptr->less(other.m_ptr.get()); c@5: } c@5: c@5: /* * * * * * * * * * * * * * * * * * * * c@5: * Parsing c@5: */ c@5: c@5: /* esc(c) c@5: * c@5: * Format char c suitable for printing in an error message. c@5: */ c@5: static inline string esc(char c) { c@5: char buf[12]; c@5: if (static_cast(c) >= 0x20 && static_cast(c) <= 0x7f) { c@5: snprintf(buf, sizeof buf, "'%c' (%d)", c, c); c@5: } else { c@5: snprintf(buf, sizeof buf, "(%d)", c); c@5: } c@5: return string(buf); c@5: } c@5: c@5: static inline bool in_range(long x, long lower, long upper) { c@5: return (x >= lower && x <= upper); c@5: } c@5: c@5: /* JsonParser c@5: * c@5: * Object that tracks all state of an in-progress parse. c@5: */ c@5: struct JsonParser { c@5: c@5: /* State c@5: */ c@5: const string &str; c@5: size_t i; c@5: string &err; c@5: bool failed; c@5: const JsonParse strategy; c@5: c@5: /* fail(msg, err_ret = Json()) c@5: * c@5: * Mark this parse as failed. c@5: */ c@5: Json fail(string &&msg) { c@5: return fail(move(msg), Json()); c@5: } c@5: c@5: template c@5: T fail(string &&msg, const T err_ret) { c@5: if (!failed) c@5: err = std::move(msg); c@5: failed = true; c@5: return err_ret; c@5: } c@5: c@5: /* consume_whitespace() c@5: * c@5: * Advance until the current character is non-whitespace. c@5: */ c@5: void consume_whitespace() { c@5: while (str[i] == ' ' || str[i] == '\r' || str[i] == '\n' || str[i] == '\t') c@5: i++; c@5: } c@5: c@5: /* consume_comment() c@5: * c@5: * Advance comments (c-style inline and multiline). c@5: */ c@5: bool consume_comment() { c@5: bool comment_found = false; c@5: if (str[i] == '/') { c@5: i++; c@5: if (i == str.size()) c@5: return fail("unexpected end of input inside comment", 0); c@5: if (str[i] == '/') { // inline comment c@5: i++; c@5: if (i == str.size()) c@5: return fail("unexpected end of input inside inline comment", 0); c@5: // advance until next line c@5: while (str[i] != '\n') { c@5: i++; c@5: if (i == str.size()) c@5: return fail("unexpected end of input inside inline comment", 0); c@5: } c@5: comment_found = true; c@5: } c@5: else if (str[i] == '*') { // multiline comment c@5: i++; c@5: if (i > str.size()-2) c@5: return fail("unexpected end of input inside multi-line comment", 0); c@5: // advance until closing tokens c@5: while (!(str[i] == '*' && str[i+1] == '/')) { c@5: i++; c@5: if (i > str.size()-2) c@5: return fail( c@5: "unexpected end of input inside multi-line comment", 0); c@5: } c@5: i += 2; c@5: if (i == str.size()) c@5: return fail( c@5: "unexpected end of input inside multi-line comment", 0); c@5: comment_found = true; c@5: } c@5: else c@5: return fail("malformed comment", 0); c@5: } c@5: return comment_found; c@5: } c@5: c@5: /* consume_garbage() c@5: * c@5: * Advance until the current character is non-whitespace and non-comment. c@5: */ c@5: void consume_garbage() { c@5: consume_whitespace(); c@5: if(strategy == JsonParse::COMMENTS) { c@5: bool comment_found = false; c@5: do { c@5: comment_found = consume_comment(); c@5: consume_whitespace(); c@5: } c@5: while(comment_found); c@5: } c@5: } c@5: c@5: /* get_next_token() c@5: * c@5: * Return the next non-whitespace character. If the end of the input is reached, c@5: * flag an error and return 0. c@5: */ c@5: char get_next_token() { c@5: consume_garbage(); c@5: if (i == str.size()) c@5: return fail("unexpected end of input", 0); c@5: c@5: return str[i++]; c@5: } c@5: c@5: /* encode_utf8(pt, out) c@5: * c@5: * Encode pt as UTF-8 and add it to out. c@5: */ c@5: void encode_utf8(long pt, string & out) { c@5: if (pt < 0) c@5: return; c@5: c@5: if (pt < 0x80) { c@5: out += static_cast(pt); c@5: } else if (pt < 0x800) { c@5: out += static_cast((pt >> 6) | 0xC0); c@5: out += static_cast((pt & 0x3F) | 0x80); c@5: } else if (pt < 0x10000) { c@5: out += static_cast((pt >> 12) | 0xE0); c@5: out += static_cast(((pt >> 6) & 0x3F) | 0x80); c@5: out += static_cast((pt & 0x3F) | 0x80); c@5: } else { c@5: out += static_cast((pt >> 18) | 0xF0); c@5: out += static_cast(((pt >> 12) & 0x3F) | 0x80); c@5: out += static_cast(((pt >> 6) & 0x3F) | 0x80); c@5: out += static_cast((pt & 0x3F) | 0x80); c@5: } c@5: } c@5: c@5: /* parse_string() c@5: * c@5: * Parse a string, starting at the current position. c@5: */ c@5: string parse_string() { c@5: string out; c@5: long last_escaped_codepoint = -1; c@5: while (true) { c@5: if (i == str.size()) c@5: return fail("unexpected end of input in string", ""); c@5: c@5: char ch = str[i++]; c@5: c@5: if (ch == '"') { c@5: encode_utf8(last_escaped_codepoint, out); c@5: return out; c@5: } c@5: c@5: if (in_range(ch, 0, 0x1f)) c@5: return fail("unescaped " + esc(ch) + " in string", ""); c@5: c@5: // The usual case: non-escaped characters c@5: if (ch != '\\') { c@5: encode_utf8(last_escaped_codepoint, out); c@5: last_escaped_codepoint = -1; c@5: out += ch; c@5: continue; c@5: } c@5: c@5: // Handle escapes c@5: if (i == str.size()) c@5: return fail("unexpected end of input in string", ""); c@5: c@5: ch = str[i++]; c@5: c@5: if (ch == 'u') { c@5: // Extract 4-byte escape sequence c@5: string esc = str.substr(i, 4); c@5: // Explicitly check length of the substring. The following loop c@5: // relies on std::string returning the terminating NUL when c@5: // accessing str[length]. Checking here reduces brittleness. c@5: if (esc.length() < 4) { c@5: return fail("bad \\u escape: " + esc, ""); c@5: } c@5: for (int j = 0; j < 4; j++) { c@5: if (!in_range(esc[j], 'a', 'f') && !in_range(esc[j], 'A', 'F') c@5: && !in_range(esc[j], '0', '9')) c@5: return fail("bad \\u escape: " + esc, ""); c@5: } c@5: c@5: long codepoint = strtol(esc.data(), nullptr, 16); c@5: c@5: // JSON specifies that characters outside the BMP shall be encoded as a pair c@5: // of 4-hex-digit \u escapes encoding their surrogate pair components. Check c@5: // whether we're in the middle of such a beast: the previous codepoint was an c@5: // escaped lead (high) surrogate, and this is a trail (low) surrogate. c@5: if (in_range(last_escaped_codepoint, 0xD800, 0xDBFF) c@5: && in_range(codepoint, 0xDC00, 0xDFFF)) { c@5: // Reassemble the two surrogate pairs into one astral-plane character, per c@5: // the UTF-16 algorithm. c@5: encode_utf8((((last_escaped_codepoint - 0xD800) << 10) c@5: | (codepoint - 0xDC00)) + 0x10000, out); c@5: last_escaped_codepoint = -1; c@5: } else { c@5: encode_utf8(last_escaped_codepoint, out); c@5: last_escaped_codepoint = codepoint; c@5: } c@5: c@5: i += 4; c@5: continue; c@5: } c@5: c@5: encode_utf8(last_escaped_codepoint, out); c@5: last_escaped_codepoint = -1; c@5: c@5: if (ch == 'b') { c@5: out += '\b'; c@5: } else if (ch == 'f') { c@5: out += '\f'; c@5: } else if (ch == 'n') { c@5: out += '\n'; c@5: } else if (ch == 'r') { c@5: out += '\r'; c@5: } else if (ch == 't') { c@5: out += '\t'; c@5: } else if (ch == '"' || ch == '\\' || ch == '/') { c@5: out += ch; c@5: } else { c@5: return fail("invalid escape character " + esc(ch), ""); c@5: } c@5: } c@5: } c@5: c@5: /* parse_number() c@5: * c@5: * Parse a double. c@5: */ c@5: Json parse_number() { c@5: size_t start_pos = i; c@5: c@5: if (str[i] == '-') c@5: i++; c@5: c@5: // Integer part c@5: if (str[i] == '0') { c@5: i++; c@5: if (in_range(str[i], '0', '9')) c@5: return fail("leading 0s not permitted in numbers"); c@5: } else if (in_range(str[i], '1', '9')) { c@5: i++; c@5: while (in_range(str[i], '0', '9')) c@5: i++; c@5: } else { c@5: return fail("invalid " + esc(str[i]) + " in number"); c@5: } c@5: c@5: if (str[i] != '.' && str[i] != 'e' && str[i] != 'E' c@5: && (i - start_pos) <= static_cast(std::numeric_limits::digits10)) { c@5: return std::atoi(str.c_str() + start_pos); c@5: } c@5: c@5: // Decimal part c@5: if (str[i] == '.') { c@5: i++; c@5: if (!in_range(str[i], '0', '9')) c@5: return fail("at least one digit required in fractional part"); c@5: c@5: while (in_range(str[i], '0', '9')) c@5: i++; c@5: } c@5: c@5: // Exponent part c@5: if (str[i] == 'e' || str[i] == 'E') { c@5: i++; c@5: c@5: if (str[i] == '+' || str[i] == '-') c@5: i++; c@5: c@5: if (!in_range(str[i], '0', '9')) c@5: return fail("at least one digit required in exponent"); c@5: c@5: while (in_range(str[i], '0', '9')) c@5: i++; c@5: } c@5: c@5: return std::strtod(str.c_str() + start_pos, nullptr); c@5: } c@5: c@5: /* expect(str, res) c@5: * c@5: * Expect that 'str' starts at the character that was just read. If it does, advance c@5: * the input and return res. If not, flag an error. c@5: */ c@5: Json expect(const string &expected, Json res) { c@5: assert(i != 0); c@5: i--; c@5: if (str.compare(i, expected.length(), expected) == 0) { c@5: i += expected.length(); c@5: return res; c@5: } else { c@5: return fail("parse error: expected " + expected + ", got " + str.substr(i, expected.length())); c@5: } c@5: } c@5: c@5: /* parse_json() c@5: * c@5: * Parse a JSON object. c@5: */ c@5: Json parse_json(int depth) { c@5: if (depth > max_depth) { c@5: return fail("exceeded maximum nesting depth"); c@5: } c@5: c@5: char ch = get_next_token(); c@5: if (failed) c@5: return Json(); c@5: c@5: if (ch == '-' || (ch >= '0' && ch <= '9')) { c@5: i--; c@5: return parse_number(); c@5: } c@5: c@5: if (ch == 't') c@5: return expect("true", true); c@5: c@5: if (ch == 'f') c@5: return expect("false", false); c@5: c@5: if (ch == 'n') c@5: return expect("null", Json()); c@5: c@5: if (ch == '"') c@5: return parse_string(); c@5: c@5: if (ch == '{') { c@5: map data; c@5: ch = get_next_token(); c@5: if (ch == '}') c@5: return data; c@5: c@5: while (1) { c@5: if (ch != '"') c@5: return fail("expected '\"' in object, got " + esc(ch)); c@5: c@5: string key = parse_string(); c@5: if (failed) c@5: return Json(); c@5: c@5: ch = get_next_token(); c@5: if (ch != ':') c@5: return fail("expected ':' in object, got " + esc(ch)); c@5: c@5: data[std::move(key)] = parse_json(depth + 1); c@5: if (failed) c@5: return Json(); c@5: c@5: ch = get_next_token(); c@5: if (ch == '}') c@5: break; c@5: if (ch != ',') c@5: return fail("expected ',' in object, got " + esc(ch)); c@5: c@5: ch = get_next_token(); c@5: } c@5: return data; c@5: } c@5: c@5: if (ch == '[') { c@5: vector data; c@5: ch = get_next_token(); c@5: if (ch == ']') c@5: return data; c@5: c@5: while (1) { c@5: i--; c@5: data.push_back(parse_json(depth + 1)); c@5: if (failed) c@5: return Json(); c@5: c@5: ch = get_next_token(); c@5: if (ch == ']') c@5: break; c@5: if (ch != ',') c@5: return fail("expected ',' in list, got " + esc(ch)); c@5: c@5: ch = get_next_token(); c@5: (void)ch; c@5: } c@5: return data; c@5: } c@5: c@5: return fail("expected value, got " + esc(ch)); c@5: } c@5: }; c@5: c@5: Json Json::parse(const string &in, string &err, JsonParse strategy) { c@5: JsonParser parser { in, 0, err, false, strategy }; c@5: Json result = parser.parse_json(0); c@5: c@5: // Check for any trailing garbage c@5: parser.consume_garbage(); c@5: if (parser.i != in.size()) c@5: return parser.fail("unexpected trailing " + esc(in[parser.i])); c@5: c@5: return result; c@5: } c@5: c@5: // Documented in json11.hpp c@5: vector Json::parse_multi(const string &in, c@5: string &err, c@5: JsonParse strategy) { c@5: JsonParser parser { in, 0, err, false, strategy }; c@5: c@5: vector json_vec; c@5: while (parser.i != in.size() && !parser.failed) { c@5: json_vec.push_back(parser.parse_json(0)); c@5: // Check for another object c@5: parser.consume_garbage(); c@5: } c@5: return json_vec; c@5: } c@5: c@5: /* * * * * * * * * * * * * * * * * * * * c@5: * Shape-checking c@5: */ c@5: c@5: bool Json::has_shape(const shape & types, string & err) const { c@5: if (!is_object()) { c@5: err = "expected JSON object, got " + dump(); c@5: return false; c@5: } c@5: c@5: for (auto & item : types) { c@5: if ((*this)[item.first].type() != item.second) { c@5: err = "bad type for " + item.first + " in " + dump(); c@5: return false; c@5: } c@5: } c@5: c@5: return true; c@5: } c@5: c@5: } // namespace json11