2016-09-09 20:07:17 +02:00
|
|
|
/*
|
2016-11-29 16:23:38 +01:00
|
|
|
* Copyright (C) 2017 Charybdis Development Team
|
|
|
|
* Copyright (C) 2017 Jason Volk <jason@zemos.net>
|
2016-09-09 20:07:17 +02:00
|
|
|
*
|
|
|
|
* 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
|
2016-11-29 16:23:38 +01:00
|
|
|
#define HAVE_IRCD_JSON_H
|
2016-09-09 20:07:17 +02:00
|
|
|
|
2017-09-12 18:37:44 +02:00
|
|
|
/// JavaScript Object Notation: formal grammars & tools
|
2017-09-09 16:30:45 +02:00
|
|
|
///
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::json
|
2017-03-16 21:32:42 +01:00
|
|
|
{
|
2017-08-28 23:51:22 +02:00
|
|
|
IRCD_EXCEPTION(ircd::error, error);
|
|
|
|
IRCD_EXCEPTION(error, parse_error);
|
|
|
|
IRCD_EXCEPTION(error, print_error);
|
|
|
|
IRCD_EXCEPTION(error, type_error);
|
|
|
|
IRCD_EXCEPTION(error, not_found);
|
2018-01-18 12:39:19 +01:00
|
|
|
IRCD_EXCEPTION(parse_error, recursion_limit);
|
2016-09-13 00:07:35 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct value;
|
2017-09-14 20:30:06 +02:00
|
|
|
struct member;
|
2017-10-12 03:15:09 +02:00
|
|
|
struct array;
|
2017-11-06 21:08:32 +01:00
|
|
|
struct object;
|
|
|
|
struct vector;
|
2017-09-09 21:20:00 +02:00
|
|
|
struct iov;
|
2017-08-28 23:51:22 +02:00
|
|
|
|
|
|
|
enum type
|
|
|
|
{
|
|
|
|
STRING = 0,
|
|
|
|
OBJECT = 1,
|
|
|
|
ARRAY = 2,
|
|
|
|
NUMBER = 3,
|
|
|
|
LITERAL = 4,
|
|
|
|
};
|
|
|
|
enum type type(const string_view &);
|
|
|
|
enum type type(const string_view &, std::nothrow_t);
|
2017-09-14 20:30:06 +02:00
|
|
|
string_view reflect(const enum type &);
|
2017-08-23 22:42:58 +02:00
|
|
|
|
2017-10-12 03:13:30 +02:00
|
|
|
using name_hash_t = size_t;
|
|
|
|
constexpr name_hash_t name_hash(const char *const name, const size_t len = 0);
|
|
|
|
constexpr name_hash_t name_hash(const string_view &name);
|
|
|
|
constexpr name_hash_t operator ""_(const char *const name, const size_t len);
|
|
|
|
|
2017-09-09 16:30:45 +02:00
|
|
|
/// Higher order type beyond a string to cleanly delimit multiple keys.
|
2017-08-28 23:51:22 +02:00
|
|
|
using path = std::initializer_list<string_view>;
|
|
|
|
std::ostream &operator<<(std::ostream &, const path &);
|
2017-09-08 16:47:07 +02:00
|
|
|
|
2017-09-09 16:30:45 +02:00
|
|
|
/// These templates are generic frontends for building a JSON string. They
|
|
|
|
/// eventually all lead to the stringify() friend function of the argument
|
|
|
|
/// you pass to the template.
|
2017-09-08 16:47:07 +02:00
|
|
|
template<class... T> string_view stringify(const mutable_buffer &&mb, T&&... t);
|
|
|
|
template<class... T> size_t print(char *const &buf, const size_t &max, T&&... t);
|
2017-10-03 22:21:19 +02:00
|
|
|
template<class... T> size_t print(const mutable_buffer &buf, T&&... t);
|
2017-10-06 04:46:20 +02:00
|
|
|
template<size_t SIZE> struct buffer;
|
2017-10-16 06:18:42 +02:00
|
|
|
struct strung;
|
2017-09-09 16:30:45 +02:00
|
|
|
|
|
|
|
size_t serialized(const string_view &);
|
2017-11-16 02:25:15 +01:00
|
|
|
string_view stringify(mutable_buffer &, const string_view &);
|
2017-09-14 20:30:06 +02:00
|
|
|
|
2017-10-16 06:18:42 +02:00
|
|
|
struct string;
|
2017-09-14 20:30:06 +02:00
|
|
|
using members = std::initializer_list<member>;
|
2017-11-26 20:57:46 +01:00
|
|
|
|
|
|
|
// Validate JSON - checks if canonical value.
|
|
|
|
bool valid(const string_view &, std::nothrow_t) noexcept;
|
|
|
|
void valid(const string_view &);
|
2017-11-30 19:48:30 +01:00
|
|
|
|
|
|
|
// Convert to canonical JSON
|
|
|
|
string_view canonize(const mutable_buffer &out, const string_view &in);
|
|
|
|
std::string canonize(const string_view &in);
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-10-16 06:18:42 +02:00
|
|
|
/// Strong type representing quoted strings in JSON (which may be unquoted
|
|
|
|
/// automatically when this type is encountered in a tuple etc)
|
|
|
|
struct ircd::json::string
|
|
|
|
:string_view
|
|
|
|
{
|
|
|
|
using string_view::string_view;
|
|
|
|
};
|
|
|
|
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "array.h"
|
|
|
|
#include "object.h"
|
2017-11-06 21:08:32 +01:00
|
|
|
#include "vector.h"
|
2017-10-16 06:18:42 +02:00
|
|
|
|
|
|
|
/// Convenience template to allocate std::string and print() arguments to it.
|
|
|
|
///
|
|
|
|
struct ircd::json::strung
|
|
|
|
:std::string
|
|
|
|
{
|
|
|
|
template<class... T> strung(T&&... t);
|
|
|
|
};
|
|
|
|
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "value.h"
|
|
|
|
#include "member.h"
|
|
|
|
#include "property.h"
|
|
|
|
#include "iov.h"
|
|
|
|
#include "tuple.h"
|
2017-09-08 11:45:05 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd
|
|
|
|
{
|
2017-10-12 03:13:30 +02:00
|
|
|
using json::operator ""_;
|
2017-08-28 23:51:22 +02:00
|
|
|
using json::operator<<;
|
2017-10-16 06:23:22 +02:00
|
|
|
using json::defined;
|
|
|
|
using json::for_each;
|
|
|
|
using json::until;
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2017-08-23 22:42:58 +02:00
|
|
|
|
2017-10-06 04:46:20 +02:00
|
|
|
template<size_t SIZE>
|
|
|
|
struct ircd::json::buffer
|
|
|
|
:string_view
|
|
|
|
{
|
|
|
|
std::array<char, SIZE> b;
|
|
|
|
|
|
|
|
template<class... T>
|
|
|
|
buffer(T&&... t)
|
|
|
|
:string_view{stringify(b, std::forward<T>(t)...)}
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2017-09-09 16:30:45 +02:00
|
|
|
///
|
|
|
|
/// Convenience template for const rvalue mutable_buffers or basically
|
|
|
|
/// allowing a bracket initialization of a mutable_buffer in the argument
|
2017-10-25 18:30:04 +02:00
|
|
|
/// to stringify(). The const rvalue reference is on purpose. The stringify()
|
|
|
|
/// family of friends all use a non-const lvalue mutable_buffer as an append
|
|
|
|
/// only "stream" buffer. We don't want to modify any non-const instances of
|
|
|
|
/// the mutable_buffer you pass here by offering a `mutable_buffer &` overload
|
2017-09-09 16:30:45 +02:00
|
|
|
///
|
2017-09-08 16:47:07 +02:00
|
|
|
template<class... T>
|
|
|
|
ircd::string_view
|
|
|
|
ircd::json::stringify(const mutable_buffer &&mb,
|
|
|
|
T&&... t)
|
|
|
|
{
|
2017-09-09 16:30:45 +02:00
|
|
|
mutable_buffer mbc{mb};
|
2017-09-08 16:47:07 +02:00
|
|
|
return stringify(mbc, std::forward<T>(t)...);
|
|
|
|
}
|
|
|
|
|
2017-10-03 22:21:19 +02:00
|
|
|
///
|
|
|
|
/// Convenience template using the syntax print(mutable_buffer, ...)
|
|
|
|
/// which stringifies with null termination into buffer.
|
|
|
|
///
|
|
|
|
template<class... T>
|
|
|
|
size_t
|
|
|
|
ircd::json::print(const mutable_buffer &buf,
|
|
|
|
T&&... t)
|
|
|
|
{
|
|
|
|
return print(data(buf), size(buf), std::forward<T>(t)...);
|
|
|
|
}
|
|
|
|
|
2017-09-09 16:30:45 +02:00
|
|
|
///
|
|
|
|
/// Convenience template using the syntax print(buf, sizeof(buf), ...)
|
|
|
|
/// which stringifies with null termination into buffer.
|
|
|
|
///
|
2017-09-08 16:47:07 +02:00
|
|
|
template<class... T>
|
|
|
|
size_t
|
|
|
|
ircd::json::print(char *const &buf,
|
|
|
|
const size_t &max,
|
|
|
|
T&&... t)
|
|
|
|
{
|
2017-09-19 11:06:52 +02:00
|
|
|
if(unlikely(!max))
|
2017-09-08 16:47:07 +02:00
|
|
|
return 0;
|
|
|
|
|
2017-09-09 16:30:45 +02:00
|
|
|
mutable_buffer mb
|
|
|
|
{
|
|
|
|
buf, max - 1
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto sv
|
|
|
|
{
|
|
|
|
stringify(mb, std::forward<T>(t)...)
|
|
|
|
};
|
|
|
|
|
2017-09-08 16:47:07 +02:00
|
|
|
assert(sv.size() < max);
|
2017-11-30 19:31:13 +01:00
|
|
|
assert(valid(sv, std::nothrow));
|
2017-09-08 16:47:07 +02:00
|
|
|
buf[sv.size()] = '\0';
|
|
|
|
return sv.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class... T>
|
2017-10-16 06:18:42 +02:00
|
|
|
ircd::json::strung::strung(T&&... t)
|
|
|
|
:std::string{[&]() -> std::string
|
2017-09-08 16:47:07 +02:00
|
|
|
{
|
2017-09-09 16:30:45 +02:00
|
|
|
const auto size
|
|
|
|
{
|
|
|
|
serialized(std::forward<T>(t)...)
|
|
|
|
};
|
|
|
|
|
2017-10-12 02:54:08 +02:00
|
|
|
std::string ret(size, char{});
|
2017-09-08 16:47:07 +02:00
|
|
|
const auto buf{const_cast<char *>(ret.data())};
|
2017-09-09 16:30:45 +02:00
|
|
|
const auto max{ret.size() + 1};
|
2017-09-14 20:30:06 +02:00
|
|
|
const auto printed
|
|
|
|
{
|
|
|
|
print(buf, max, std::forward<T>(t)...)
|
|
|
|
};
|
|
|
|
|
2017-10-12 03:15:09 +02:00
|
|
|
#ifdef RB_DEBUG
|
|
|
|
if(unlikely(printed != ret.size()))
|
|
|
|
std::cerr << printed << " != " << ret.size() << std::endl << ret << std::endl;
|
|
|
|
#endif
|
|
|
|
|
2017-09-14 20:30:06 +02:00
|
|
|
assert(printed == ret.size());
|
2017-09-08 16:47:07 +02:00
|
|
|
return ret;
|
2017-10-16 06:18:42 +02:00
|
|
|
}()}
|
|
|
|
{
|
2017-09-08 16:47:07 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 22:42:58 +02:00
|
|
|
inline std::ostream &
|
|
|
|
ircd::json::operator<<(std::ostream &s, const path &p)
|
|
|
|
{
|
|
|
|
auto it(std::begin(p));
|
|
|
|
if(it != std::end(p))
|
|
|
|
{
|
|
|
|
s << *it;
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(; it != std::end(p); ++it)
|
|
|
|
s << '.' << *it;
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
2017-10-12 03:13:30 +02:00
|
|
|
|
|
|
|
constexpr ircd::json::name_hash_t
|
|
|
|
ircd::json::operator ""_(const char *const text, const size_t len)
|
|
|
|
{
|
|
|
|
return name_hash(text, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr ircd::json::name_hash_t
|
|
|
|
ircd::json::name_hash(const string_view &name)
|
|
|
|
{
|
|
|
|
return ircd::hash(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr ircd::json::name_hash_t
|
|
|
|
ircd::json::name_hash(const char *const name, const size_t len)
|
|
|
|
{
|
|
|
|
return ircd::hash(name);
|
|
|
|
}
|