2018-02-04 03:22:01 +01:00
|
|
|
// 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.
|
2016-09-09 20:07:17 +02:00
|
|
|
|
|
|
|
#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);
|
2018-03-20 21:53:29 +01:00
|
|
|
IRCD_ASSERTION(error, print_error);
|
2017-08-28 23:51:22 +02:00
|
|
|
IRCD_EXCEPTION(error, parse_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);
|
2018-03-08 16:40:41 +01:00
|
|
|
struct expectation_failure;
|
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;
|
2018-01-30 19:19:15 +01:00
|
|
|
struct string;
|
2017-11-06 21:08:32 +01:00
|
|
|
struct object;
|
2018-01-30 19:19:15 +01:00
|
|
|
struct array;
|
2017-11-06 21:08:32 +01:00
|
|
|
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
|
|
|
|
2018-01-30 19:19:15 +01:00
|
|
|
struct strung;
|
|
|
|
template<size_t SIZE> struct buffer;
|
2017-09-08 16:47:07 +02:00
|
|
|
template<class... T> string_view stringify(const mutable_buffer &&mb, T&&... t);
|
2017-10-03 22:21:19 +02:00
|
|
|
template<class... T> size_t print(const mutable_buffer &buf, T&&... t);
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2018-01-30 19:19:15 +01:00
|
|
|
#include "util.h"
|
|
|
|
#include "array.h"
|
|
|
|
#include "object.h"
|
|
|
|
#include "vector.h"
|
2017-10-19 10:32:53 +02:00
|
|
|
#include "value.h"
|
|
|
|
#include "member.h"
|
|
|
|
#include "iov.h"
|
2018-09-06 03:33:46 +02:00
|
|
|
#include "strung.h"
|
2018-01-22 10:07:09 +01:00
|
|
|
#include "tuple/tuple.h"
|
2018-03-18 00:55:32 +01:00
|
|
|
#include "stack.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;
|
2018-02-21 23:24:01 +01:00
|
|
|
using json::get;
|
2017-08-28 23:51:22 +02:00
|
|
|
}
|
2017-08-23 22:42:58 +02:00
|
|
|
|
2018-01-30 19:19:15 +01: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
|
|
|
|
{
|
2018-06-12 09:45:18 +02:00
|
|
|
string(const string_view &s)
|
|
|
|
:string_view{unquote(s)}
|
|
|
|
{}
|
|
|
|
|
|
|
|
string() = default;
|
2018-01-30 19:19:15 +01:00
|
|
|
};
|
|
|
|
|
2019-01-02 19:48:30 +01:00
|
|
|
/// Alternative to `json::strung` which uses a fixed array rather than an
|
|
|
|
/// allocated string as the target.
|
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)
|
|
|
|
{
|
2018-01-26 19:27:24 +01:00
|
|
|
if(unlikely(!size(buf)))
|
2017-09-08 16:47:07 +02:00
|
|
|
return 0;
|
|
|
|
|
2018-03-20 21:52:19 +01:00
|
|
|
mutable_buffer out
|
|
|
|
{
|
|
|
|
data(buf), size(buf) - 1
|
|
|
|
};
|
|
|
|
|
2017-09-09 16:30:45 +02:00
|
|
|
const auto sv
|
|
|
|
{
|
2018-03-20 21:52:19 +01:00
|
|
|
stringify(out, std::forward<T>(t)...)
|
2017-09-09 16:30:45 +02:00
|
|
|
};
|
|
|
|
|
2017-09-08 16:47:07 +02:00
|
|
|
buf[sv.size()] = '\0';
|
2018-03-29 06:11:26 +02:00
|
|
|
valid_output(sv, size(sv)); // no size expectation check
|
2017-09-08 16:47:07 +02:00
|
|
|
return sv.size();
|
|
|
|
}
|