mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 03:18:54 +01:00
ffa62d0f4c
ircd:Ⓜ️ Fix ambiguous (C++20).
88 lines
2.4 KiB
C++
88 lines
2.4 KiB
C++
// Matrix Construct
|
|
//
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
// Copyright (C) 2016-2018 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. The
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
#pragma once
|
|
#define HAVE_IRCD_JSON_MEMBER_H
|
|
|
|
namespace ircd::json
|
|
{
|
|
struct member;
|
|
|
|
bool operator==(const member &a, const member &b);
|
|
bool operator==(const member &a, const string_view &b);
|
|
bool operator!=(const member &a, const member &b);
|
|
bool operator!=(const member &a, const string_view &b);
|
|
bool operator<(const member &a, const member &b);
|
|
bool operator<(const member &a, const string_view &b);
|
|
|
|
bool sorted(const member *const &begin, const member *const &end);
|
|
|
|
size_t serialized(const member *const &begin, const member *const &end);
|
|
size_t serialized(const members &);
|
|
size_t serialized(const member &);
|
|
|
|
string_view stringify(mutable_buffer &, const member *const &begin, const member *const &end);
|
|
string_view stringify(mutable_buffer &, const members &);
|
|
string_view stringify(mutable_buffer &, const member &);
|
|
|
|
std::ostream &operator<<(std::ostream &, const member &);
|
|
}
|
|
|
|
/// A pair of json::value representing state for a member of an object.
|
|
///
|
|
/// This is slightly heavier than object::member as that only deals with
|
|
/// a pair of strings while the value here holds more diverse native state.
|
|
///
|
|
struct ircd::json::member
|
|
:std::pair<value, value>
|
|
{
|
|
explicit member(const string_view &k);
|
|
explicit member(const object::member &m);
|
|
template<class K, class V> member(K&&, V&&);
|
|
template<class K> member(K&&, value);
|
|
member() = default;
|
|
};
|
|
|
|
template<class K,
|
|
class V>
|
|
inline __attribute__((always_inline))
|
|
ircd::json::member::member(K&& k,
|
|
V&& v)
|
|
:std::pair<value, value>
|
|
{
|
|
value { std::forward<K>(k), json::STRING }, value { std::forward<V>(v) }
|
|
}
|
|
{}
|
|
|
|
template<class K>
|
|
inline __attribute__((always_inline))
|
|
ircd::json::member::member(K&& k,
|
|
value v)
|
|
:std::pair<value, value>
|
|
{
|
|
value { std::forward<K>(k), json::STRING }, std::move(v)
|
|
}
|
|
{}
|
|
|
|
inline
|
|
ircd::json::member::member(const object::member &m)
|
|
:member
|
|
{
|
|
m.first, value { m.second }
|
|
}
|
|
{}
|
|
|
|
inline
|
|
ircd::json::member::member(const string_view &k)
|
|
:member
|
|
{
|
|
k, value{}
|
|
}
|
|
{}
|