/* * Copyright (C) 2017 Charybdis Development Team * Copyright (C) 2017 Jason Volk * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #pragma once #define HAVE_IRCD_JSON_OBJECT_H namespace ircd::json { struct object; } /// Lightweight interface to a JSON object string. /// /// This makes queries into a string of JSON. This is a read-only device. /// It is merely functionality built on top of a string_view which is just a /// pair of `const char*` pointers to the borders of the JSON object. The first /// character should be '{' and the last character should be '}' but this is /// not checked on construction. /// /// This class computes over strings of JSON by parsing it on-the-fly /// via forward iteration. The const_iterator is fundamental. All other member /// functions are built from this forward iteration and have worst-case linear /// complexity *every time you invoke them*. This is not necessarily a bad /// thing in the appropriate use case. Our parser is pretty efficient; this /// device conducts zero copies, zero allocations and zero indexing; instead /// the parser provides string_views to members during the iteration. /// /// The returned values are character ranges (string_view's) which themselves /// are type agnostic to their contents. The type of a value is determined at /// the user's discretion by querying the content of the string_view using a /// util function like json::type() etc. In other words, a value carries type /// data from its own original content. This means the user is responsible for /// removing prefix and suffix characters like '{' or '"' after determining the /// type if they want a truly pure value string. Our zero-copy string_view utils /// make this to a simple ballet of pointers. /// /// Some serialization/write functions are actually provided here. They will /// always *rewrite* JSON through our generator correcting any imperfections /// that may have been allowed by the parsing grammar (if such allowances are /// ever made). /// /// Recursive traversal cannot be achieved via a single key string value; so /// any string_view argument for a key will not be recursive. In other words, /// due to the fact that a JS identifier can have almost any character we have /// to use a different *type* like a vector of strings; in our common case we /// use an initializer_list typedef'ed as `path` and those overloads will be /// recursive. /// struct ircd::json::object :string_view { struct member; struct const_iterator; using key_type = string_view; using mapped_type = string_view; using value_type = const member; using pointer = value_type *; using reference = value_type &; using iterator = const_iterator; using size_type = size_t; using difference_type = ptrdiff_t; using key_compare = std::less; // fundamental const_iterator end() const; const_iterator begin() const; const_iterator find(const string_view &key) const; // util size_t count() const; bool has(const string_view &key) const; bool has(const path &) const; // returns value or default template T get(const string_view &key, const T &def = T{}) const; template T get(const path &, const T &def = T{}) const; string_view get(const string_view &key, const string_view &def = {}) const; string_view get(const path &, const string_view &def = {}) const; // returns value or throws not_found template T at(const string_view &key) const; template T at(const path &) const; // returns value or empty string_view operator[](const string_view &key) const; string_view operator[](const path &) const; // constructor. Note that you are able to construct from invalid JSON. The // parser is not invoked until other operations and that's when it errors. using string_view::string_view; // rewrite into allocated string copy explicit operator std::string() const; // rewrite onto streams or buffers etc friend string_view stringify(mutable_buffer &, const object &); friend std::ostream &operator<<(std::ostream &, const object &); }; struct ircd::json::object::member :std::pair { member(const string_view &first = {}, const string_view &second = {}) :std::pair{first, second} {} friend bool operator==(const object::member &, const object::member &); friend bool operator!=(const object::member &, const object::member &); friend bool operator<=(const object::member &, const object::member &); friend bool operator>=(const object::member &, const object::member &); friend bool operator<(const object::member &, const object::member &); friend bool operator>(const object::member &, const object::member &); // writes a single member onto stream friend string_view stringify(mutable_buffer &, const object::member &); friend std::ostream &operator<<(std::ostream &, const object::member &); }; struct ircd::json::object::const_iterator { using key_type = string_view; using mapped_type = string_view; using value_type = const member; using pointer = value_type *; using reference = value_type &; using size_type = size_t; using difference_type = size_t; using key_compare = std::less; using iterator_category = std::forward_iterator_tag; protected: friend class object; const char *start; const char *stop; member state; const_iterator(const char *const &start, const char *const &stop) :start{start} ,stop{stop} {} public: value_type *operator->() const { return &state; } value_type &operator*() const { return *operator->(); } const_iterator &operator++(); friend bool operator==(const const_iterator &, const const_iterator &); friend bool operator!=(const const_iterator &, const const_iterator &); friend bool operator<=(const const_iterator &, const const_iterator &); friend bool operator>=(const const_iterator &, const const_iterator &); friend bool operator<(const const_iterator &, const const_iterator &); friend bool operator>(const const_iterator &, const const_iterator &); }; inline ircd::string_view ircd::json::object::operator[](const path &path) const { return get(path); } inline ircd::string_view ircd::json::object::operator[](const string_view &key) const { const auto it(find(key)); return it != end()? it->second : string_view{}; } template T ircd::json::object::at(const path &path) const try { object object(*this); const auto it(std::find_if(std::begin(path), std::end(path), [&object] (const string_view &key) { const auto it(object.find(key)); if(it == std::end(object)) throw not_found("'%s'", key); object = it->second; return false; })); return lex_cast(object); } catch(const bad_lex_cast &e) { throw type_error("'%s' must cast to type %s", string(path), typeid(T).name()); } template T ircd::json::object::at(const string_view &key) const try { const auto it(find(key)); if(it == end()) throw not_found("'%s'", key); return lex_cast(it->second); } catch(const bad_lex_cast &e) { throw type_error("'%s' must cast to type %s", key, typeid(T).name()); } inline ircd::string_view ircd::json::object::get(const path &path, const string_view &def) const { return get(path, def); } inline ircd::string_view ircd::json::object::get(const string_view &key, const string_view &def) const { return get(key, def); } template T ircd::json::object::get(const path &path, const T &def) const try { object object(*this); const auto it(std::find_if(std::begin(path), std::end(path), [&object] (const string_view &key) { const auto it(object.find(key)); if(it == std::end(object)) return true; object = it->second; return false; })); return it == std::end(path)? lex_cast(object) : def; } catch(const bad_lex_cast &e) { return def; } template T ircd::json::object::get(const string_view &key, const T &def) const try { const string_view sv(operator[](key)); return !sv.empty()? lex_cast(sv) : def; } catch(const bad_lex_cast &e) { return def; } inline size_t ircd::json::object::count() const { return std::distance(begin(), end()); } inline bool ircd::json::object::has(const path &path) const { object object(*this); const auto it(std::find_if(std::begin(path), std::end(path), [&object] (const string_view &key) { const auto val(object[key]); if(val.empty()) return true; object = val; return false; })); // && path.size() ensures false for empty path. return it == std::end(path) && path.size(); } inline bool ircd::json::object::has(const string_view &key) const { return find(key) != end(); } inline ircd::json::object::const_iterator ircd::json::object::find(const string_view &key) const { return std::find_if(begin(), end(), [&key] (const auto &member) { return member.first == key; }); } inline bool ircd::json::operator==(const object::const_iterator &a, const object::const_iterator &b) { return a.start == b.start; } inline bool ircd::json::operator!=(const object::const_iterator &a, const object::const_iterator &b) { return a.start != b.start; } inline bool ircd::json::operator<=(const object::const_iterator &a, const object::const_iterator &b) { return a.start <= b.start; } inline bool ircd::json::operator>=(const object::const_iterator &a, const object::const_iterator &b) { return a.start >= b.start; } inline bool ircd::json::operator<(const object::const_iterator &a, const object::const_iterator &b) { return a.start < b.start; } inline bool ircd::json::operator>(const object::const_iterator &a, const object::const_iterator &b) { return a.start > b.start; } inline bool ircd::json::operator==(const object::member &a, const object::member &b) { return a.first == b.first; } inline bool ircd::json::operator!=(const object::member &a, const object::member &b) { return a.first != b.first; } inline bool ircd::json::operator<=(const object::member &a, const object::member &b) { return a.first <= b.first; } inline bool ircd::json::operator>=(const object::member &a, const object::member &b) { return a.first >= b.first; } inline bool ircd::json::operator<(const object::member &a, const object::member &b) { return a.first < b.first; } inline bool ircd::json::operator>(const object::member &a, const object::member &b) { return a.first > b.first; }