2017-08-23 23:01:58 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Charybdis Development Team
|
|
|
|
* Copyright (C) 2017 Jason Volk <jason@zemos.net>
|
|
|
|
*
|
|
|
|
* 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
|
2017-08-23 23:32:28 +02:00
|
|
|
#define HAVE_IRCD_JSON_OBJECT_H
|
2017-08-23 23:01:58 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::json
|
|
|
|
{
|
|
|
|
struct object;
|
2017-10-12 03:13:30 +02:00
|
|
|
|
|
|
|
template<name_hash_t key, class T = string_view> T at(const object &);
|
|
|
|
template<name_hash_t key, class T = string_view> T get(const object &, const T &def = {});
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2017-08-23 23:01:58 +02:00
|
|
|
|
2017-09-12 18:37:44 +02:00
|
|
|
/// 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
|
2017-09-14 20:30:06 +02:00
|
|
|
/// 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.
|
2017-09-12 18:37:44 +02:00
|
|
|
///
|
|
|
|
/// 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
|
2017-09-23 01:53:46 +02:00
|
|
|
/// type if they want a truly pure value string_view. Note the contrast with
|
|
|
|
/// with json::value which hides '"' around keys and string values: this object
|
|
|
|
/// preserves all characters of the value for view because it carries no other
|
|
|
|
/// type information. see: ircd::unquote().
|
2017-09-12 18:37:44 +02:00
|
|
|
///
|
|
|
|
/// 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.
|
|
|
|
///
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::json::object
|
2017-08-23 23:32:28 +02:00
|
|
|
:string_view
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
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<member>;
|
|
|
|
|
2018-01-18 12:39:19 +01:00
|
|
|
static const uint max_recursion_depth;
|
|
|
|
|
2017-08-23 10:36:54 +02:00
|
|
|
// fundamental
|
2017-08-23 23:32:28 +02:00
|
|
|
const_iterator end() const;
|
|
|
|
const_iterator begin() const;
|
2017-08-23 10:36:54 +02:00
|
|
|
const_iterator find(const string_view &key) const;
|
2017-10-12 03:13:30 +02:00
|
|
|
const_iterator find(const name_hash_t &key) const;
|
2017-08-23 23:32:28 +02:00
|
|
|
|
2017-08-23 10:36:54 +02:00
|
|
|
// util
|
2017-08-23 23:32:28 +02:00
|
|
|
size_t count() const;
|
2017-10-12 03:11:55 +02:00
|
|
|
size_t size() const; // warns if used; use count()
|
2017-08-23 10:36:54 +02:00
|
|
|
bool has(const string_view &key) const;
|
2017-08-23 22:30:53 +02:00
|
|
|
bool has(const path &) const;
|
2017-08-23 23:32:28 +02:00
|
|
|
|
2017-08-23 10:36:54 +02:00
|
|
|
// returns value or default
|
|
|
|
template<class T> T get(const string_view &key, const T &def = T{}) const;
|
2017-08-23 22:30:53 +02:00
|
|
|
template<class T> T get(const path &, const T &def = T{}) const;
|
2017-08-23 10:36:54 +02:00
|
|
|
string_view get(const string_view &key, const string_view &def = {}) const;
|
2017-08-23 22:30:53 +02:00
|
|
|
string_view get(const path &, const string_view &def = {}) const;
|
2017-08-23 23:32:28 +02:00
|
|
|
|
2017-08-23 10:36:54 +02:00
|
|
|
// returns value or throws not_found
|
2017-08-23 22:30:53 +02:00
|
|
|
template<class T = string_view> T at(const string_view &key) const;
|
|
|
|
template<class T = string_view> T at(const path &) const;
|
2017-08-23 10:36:54 +02:00
|
|
|
|
|
|
|
// returns value or empty
|
|
|
|
string_view operator[](const string_view &key) const;
|
2017-08-23 22:30:53 +02:00
|
|
|
string_view operator[](const path &) const;
|
2017-08-23 10:36:54 +02:00
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
// 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
|
2017-08-23 23:32:28 +02:00
|
|
|
explicit operator std::string() const;
|
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
// rewrite onto streams or buffers etc
|
2017-09-19 11:06:52 +02:00
|
|
|
friend size_t serialized(const object &);
|
2017-09-08 16:47:07 +02:00
|
|
|
friend string_view stringify(mutable_buffer &, const object &);
|
2017-08-23 22:30:53 +02:00
|
|
|
friend std::ostream &operator<<(std::ostream &, const object &);
|
2017-08-23 23:01:58 +02:00
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::json::object::member
|
2017-08-23 23:32:28 +02:00
|
|
|
:std::pair<string_view, string_view>
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
member(const string_view &first = {}, const string_view &second = {})
|
|
|
|
:std::pair<string_view, string_view>{first, second}
|
|
|
|
{}
|
|
|
|
|
2017-09-14 20:30:06 +02:00
|
|
|
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 &);
|
2017-08-23 23:32:28 +02:00
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
// writes a single member onto stream
|
2017-09-19 11:06:52 +02:00
|
|
|
friend size_t serialized(const object::member &);
|
2017-09-08 16:47:07 +02:00
|
|
|
friend string_view stringify(mutable_buffer &, const object::member &);
|
2017-08-23 23:32:28 +02:00
|
|
|
friend std::ostream &operator<<(std::ostream &, const object::member &);
|
2017-08-23 23:01:58 +02:00
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::json::object::const_iterator
|
2017-08-23 23:32:28 +02:00
|
|
|
{
|
2017-09-14 20:30:06 +02:00
|
|
|
using key_type = string_view;
|
|
|
|
using mapped_type = string_view;
|
2017-08-23 23:32:28 +02:00
|
|
|
using value_type = const member;
|
|
|
|
using pointer = value_type *;
|
|
|
|
using reference = value_type &;
|
2017-09-14 20:30:06 +02:00
|
|
|
using size_type = size_t;
|
2017-08-23 23:32:28 +02:00
|
|
|
using difference_type = size_t;
|
2017-09-14 20:30:06 +02:00
|
|
|
using key_compare = std::less<value_type>;
|
2017-08-23 23:32:28 +02:00
|
|
|
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 &);
|
|
|
|
};
|
2017-08-23 23:01:58 +02:00
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
inline ircd::string_view
|
|
|
|
ircd::json::object::operator[](const path &path)
|
|
|
|
const
|
2017-08-23 10:36:54 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
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{};
|
2017-08-23 10:36:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
T
|
2017-08-23 22:30:53 +02:00
|
|
|
ircd::json::object::at(const path &path)
|
|
|
|
const try
|
2017-08-23 10:36:54 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
object object(*this);
|
2017-08-23 10:36:54 +02:00
|
|
|
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<T>(object);
|
|
|
|
}
|
2017-08-23 22:30:53 +02:00
|
|
|
catch(const bad_lex_cast &e)
|
2017-08-23 10:36:54 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
throw type_error("'%s' must cast to type %s",
|
2017-10-16 06:18:42 +02:00
|
|
|
ircd::string(path),
|
2017-08-23 22:30:53 +02:00
|
|
|
typeid(T).name());
|
2017-08-23 10:36:54 +02:00
|
|
|
}
|
|
|
|
|
2017-10-12 03:13:30 +02:00
|
|
|
template<ircd::json::name_hash_t key,
|
|
|
|
class T>
|
|
|
|
T
|
|
|
|
ircd::json::at(const object &object)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto it(object.find(key));
|
|
|
|
if(it == end(object))
|
|
|
|
throw not_found("[key hash] '%zu'", key);
|
|
|
|
|
|
|
|
return lex_cast<T>(it->second);
|
|
|
|
}
|
|
|
|
catch(const bad_lex_cast &e)
|
|
|
|
{
|
|
|
|
throw type_error("[key hash] '%zu' must cast to type %s",
|
|
|
|
key,
|
|
|
|
typeid(T).name());
|
|
|
|
}
|
|
|
|
|
2017-08-23 10:36:54 +02:00
|
|
|
template<class T>
|
|
|
|
T
|
2017-08-23 22:30:53 +02:00
|
|
|
ircd::json::object::at(const string_view &key)
|
|
|
|
const try
|
2017-08-23 10:36:54 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
const auto it(find(key));
|
|
|
|
if(it == end())
|
|
|
|
throw not_found("'%s'", key);
|
2017-08-23 10:36:54 +02:00
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
return lex_cast<T>(it->second);
|
2017-08-23 10:36:54 +02:00
|
|
|
}
|
2017-08-23 22:30:53 +02:00
|
|
|
catch(const bad_lex_cast &e)
|
2017-08-23 10:36:54 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
throw type_error("'%s' must cast to type %s",
|
|
|
|
key,
|
|
|
|
typeid(T).name());
|
2017-08-23 10:36:54 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
inline ircd::string_view
|
|
|
|
ircd::json::object::get(const path &path,
|
|
|
|
const string_view &def)
|
|
|
|
const
|
2017-08-23 10:36:54 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
return get<string_view>(path, def);
|
2017-08-23 10:36:54 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline ircd::string_view
|
2017-08-23 22:30:53 +02:00
|
|
|
ircd::json::object::get(const string_view &key,
|
|
|
|
const string_view &def)
|
2017-08-23 23:32:28 +02:00
|
|
|
const
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
return get<string_view>(key, def);
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
template<class T>
|
|
|
|
T
|
2017-08-23 22:30:53 +02:00
|
|
|
ircd::json::object::get(const path &path,
|
|
|
|
const T &def)
|
2017-08-23 23:32:28 +02:00
|
|
|
const try
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
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<T>(object) : def;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
2017-08-23 23:32:28 +02:00
|
|
|
catch(const bad_lex_cast &e)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
return def;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-10-12 03:13:30 +02:00
|
|
|
template<ircd::json::name_hash_t key,
|
|
|
|
class T>
|
|
|
|
ircd::string_view
|
|
|
|
ircd::json::get(const object &object,
|
|
|
|
const T &def)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const auto it{object.find(key)};
|
|
|
|
if(it == end(object))
|
|
|
|
return def;
|
|
|
|
|
|
|
|
const string_view sv{it->second};
|
|
|
|
return !sv.empty()? lex_cast<T>(sv) : def;
|
|
|
|
}
|
|
|
|
catch(const bad_lex_cast &e)
|
|
|
|
{
|
|
|
|
return def;
|
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
template<class T>
|
|
|
|
T
|
2017-08-23 10:36:54 +02:00
|
|
|
ircd::json::object::get(const string_view &key,
|
|
|
|
const T &def)
|
2017-08-23 23:32:28 +02:00
|
|
|
const try
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 10:36:54 +02:00
|
|
|
const string_view sv(operator[](key));
|
|
|
|
return !sv.empty()? lex_cast<T>(sv) : def;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
2017-08-23 23:32:28 +02:00
|
|
|
catch(const bad_lex_cast &e)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
return def;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-10-12 03:11:55 +02:00
|
|
|
__attribute__((warning("Taking string_view::size() not the count() of members in the object")))
|
|
|
|
inline size_t
|
|
|
|
ircd::json::object::size()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return string_view::size();
|
|
|
|
}
|
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
inline size_t
|
|
|
|
ircd::json::object::count()
|
2017-08-23 23:32:28 +02:00
|
|
|
const
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
return std::distance(begin(), end());
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::object::has(const path &path)
|
2017-08-23 23:32:28 +02:00
|
|
|
const
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
object object(*this);
|
|
|
|
const auto it(std::find_if(std::begin(path), std::end(path), [&object]
|
|
|
|
(const string_view &key)
|
2017-08-23 23:32:28 +02:00
|
|
|
{
|
2017-08-23 22:30:53 +02:00
|
|
|
const auto val(object[key]);
|
|
|
|
if(val.empty())
|
|
|
|
return true;
|
2017-08-23 23:01:58 +02:00
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
object = val;
|
|
|
|
return false;
|
|
|
|
}));
|
|
|
|
|
|
|
|
// && path.size() ensures false for empty path.
|
|
|
|
return it == std::end(path) && path.size();
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
2017-08-23 10:36:54 +02:00
|
|
|
ircd::json::object::has(const string_view &key)
|
2017-08-23 23:32:28 +02:00
|
|
|
const
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 10:36:54 +02:00
|
|
|
return find(key) != end();
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-10-12 03:13:30 +02:00
|
|
|
inline ircd::json::object::const_iterator
|
|
|
|
ircd::json::object::find(const name_hash_t &key)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return std::find_if(begin(), end(), [&key]
|
|
|
|
(const auto &member)
|
|
|
|
{
|
|
|
|
return name_hash(member.first) == key;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-23 22:30:53 +02:00
|
|
|
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;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator==(const object::const_iterator &a, const object::const_iterator &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.start == b.start;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator!=(const object::const_iterator &a, const object::const_iterator &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.start != b.start;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator<=(const object::const_iterator &a, const object::const_iterator &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.start <= b.start;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator>=(const object::const_iterator &a, const object::const_iterator &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.start >= b.start;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator<(const object::const_iterator &a, const object::const_iterator &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.start < b.start;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator>(const object::const_iterator &a, const object::const_iterator &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.start > b.start;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator==(const object::member &a, const object::member &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.first == b.first;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator!=(const object::member &a, const object::member &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.first != b.first;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator<=(const object::member &a, const object::member &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.first <= b.first;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator>=(const object::member &a, const object::member &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.first >= b.first;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator<(const object::member &a, const object::member &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.first < b.first;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 23:32:28 +02:00
|
|
|
inline bool
|
|
|
|
ircd::json::operator>(const object::member &a, const object::member &b)
|
2017-08-23 23:01:58 +02:00
|
|
|
{
|
2017-08-23 23:32:28 +02:00
|
|
|
return a.first > b.first;
|
2017-08-23 23:01:58 +02:00
|
|
|
}
|