2017-08-28 18:06:01 +02:00
|
|
|
#ifndef LIGHTNING_COMMON_JSON_H
|
|
|
|
#define LIGHTNING_COMMON_JSON_H
|
2016-01-21 21:11:48 +01:00
|
|
|
#include "config.h"
|
2020-05-26 12:24:10 +02:00
|
|
|
#include <ccan/crypto/sha256/sha256.h>
|
2020-01-26 13:52:29 +01:00
|
|
|
#include <ccan/short_types/short_types.h>
|
2016-01-21 21:11:48 +01:00
|
|
|
#include <ccan/tal/tal.h>
|
2020-01-26 13:52:29 +01:00
|
|
|
#include <common/errcode.h>
|
2016-01-21 21:11:48 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2016-01-21 21:11:48 +01:00
|
|
|
|
|
|
|
#define JSMN_STRICT 1
|
2017-08-28 18:11:01 +02:00
|
|
|
# include <external/jsmn/jsmn.h>
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2020-01-26 13:07:50 +01:00
|
|
|
struct json_escape;
|
|
|
|
struct json_stream;
|
|
|
|
struct timeabs;
|
|
|
|
struct timespec;
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
/* Include " if it's a string. */
|
2018-12-16 05:48:06 +01:00
|
|
|
const char *json_tok_full(const char *buffer, const jsmntok_t *t);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
|
|
|
/* Include " if it's a string. */
|
2018-12-16 05:48:06 +01:00
|
|
|
int json_tok_full_len(const jsmntok_t *t);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
|
|
|
/* Is this a string equal to str? */
|
|
|
|
bool json_tok_streq(const char *buffer, const jsmntok_t *tok, const char *str);
|
2018-12-16 05:45:06 +01:00
|
|
|
|
|
|
|
/* Allocate a tal string copy */
|
|
|
|
char *json_strdup(const tal_t *ctx, const char *buffer, const jsmntok_t *tok);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2019-01-09 16:06:34 +01:00
|
|
|
/* Decode a hex-encoded binary */
|
|
|
|
u8 *json_tok_bin_from_hex(const tal_t *ctx, const char *buffer, const jsmntok_t *tok);
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
/* Extract number from this (may be a string, or a number literal) */
|
2018-08-10 22:16:22 +02:00
|
|
|
bool json_to_number(const char *buffer, const jsmntok_t *tok,
|
|
|
|
unsigned int *num);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
/* Extract number from this (may be a string, or a number literal) */
|
2018-08-13 18:16:41 +02:00
|
|
|
bool json_to_u64(const char *buffer, const jsmntok_t *tok,
|
|
|
|
uint64_t *num);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2020-01-26 13:52:29 +01:00
|
|
|
/* Extract signed 64 bit integer from this (may be a string, or a number literal) */
|
|
|
|
bool json_to_s64(const char *buffer, const jsmntok_t *tok, s64 *num);
|
|
|
|
|
2020-01-15 09:04:03 +01:00
|
|
|
/* Extract number from this (may be a string, or a number literal) */
|
|
|
|
bool json_to_u32(const char *buffer, const jsmntok_t *tok,
|
2020-02-04 01:03:22 +01:00
|
|
|
uint32_t *num);
|
2020-01-15 09:04:03 +01:00
|
|
|
|
2019-11-06 14:46:55 +01:00
|
|
|
/* Extract number from this (may be a string, or a number literal) */
|
|
|
|
bool json_to_u16(const char *buffer, const jsmntok_t *tok,
|
|
|
|
uint16_t *num);
|
|
|
|
|
2020-05-26 12:24:10 +02:00
|
|
|
bool json_to_sha256(const char *buffer, const jsmntok_t *tok, struct sha256 *dest);
|
2020-02-19 11:11:36 +01:00
|
|
|
/*
|
|
|
|
* Extract a non-negative (either 0 or positive) floating-point number from this
|
|
|
|
* (must be a number literal), multiply it by 1 million and return it as an
|
|
|
|
* integer. Any fraction smaller than 0.000001 is ignored.
|
|
|
|
*/
|
|
|
|
bool json_to_millionths(const char *buffer, const jsmntok_t *tok,
|
|
|
|
u64 *millionths);
|
2016-09-06 09:17:48 +02:00
|
|
|
|
2018-12-16 05:46:06 +01:00
|
|
|
/* Extract signed integer from this (may be a string, or a number literal) */
|
|
|
|
bool json_to_int(const char *buffer, const jsmntok_t *tok, int *num);
|
|
|
|
|
2020-01-26 13:52:29 +01:00
|
|
|
/* Extract an error code from this (may be a string, or a number literal) */
|
|
|
|
bool json_to_errcode(const char *buffer, const jsmntok_t *tok, errcode_t *errcode);
|
|
|
|
|
2018-12-16 05:47:06 +01:00
|
|
|
/* Extract boolean from this */
|
|
|
|
bool json_to_bool(const char *buffer, const jsmntok_t *tok, bool *b);
|
|
|
|
|
2018-08-23 23:04:38 +02:00
|
|
|
/* Is this a number? [0..9]+ */
|
|
|
|
bool json_tok_is_num(const char *buffer, const jsmntok_t *tok);
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
/* Is this the null primitive? */
|
|
|
|
bool json_tok_is_null(const char *buffer, const jsmntok_t *tok);
|
|
|
|
|
2019-01-17 03:12:13 +01:00
|
|
|
/* Returns next token with same parent (WARNING: slow!). */
|
2016-01-21 21:11:48 +01:00
|
|
|
const jsmntok_t *json_next(const jsmntok_t *tok);
|
|
|
|
|
|
|
|
/* Get top-level member. */
|
|
|
|
const jsmntok_t *json_get_member(const char *buffer, const jsmntok_t tok[],
|
|
|
|
const char *label);
|
|
|
|
|
|
|
|
/* Get index'th array member. */
|
2016-08-31 09:49:40 +02:00
|
|
|
const jsmntok_t *json_get_arr(const jsmntok_t tok[], size_t index);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2020-08-20 15:40:32 +02:00
|
|
|
/* Allocate a starter array of tokens for json_parse_input */
|
|
|
|
jsmntok_t *toks_alloc(const tal_t *ctx);
|
|
|
|
|
|
|
|
/* Reset a token array to reuse it. */
|
|
|
|
void toks_reset(jsmntok_t *toks);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* json_parse_input: parse and validate JSON.
|
|
|
|
* @parser: parser initialized with jsmn_init.
|
|
|
|
* @toks: tallocated array from toks_alloc()
|
|
|
|
* @input, @len: input string.
|
|
|
|
* @complete: set to true if the valid JSON is complete, or NULL if must be.
|
|
|
|
*
|
|
|
|
* This returns false if the JSON is invalid, true otherwise.
|
|
|
|
* If it returns true, *@complete indicates that (*@toks)[0] points to a
|
|
|
|
* valid, complete JSON element. If @complete is NULL, then incomplete
|
|
|
|
* JSON returns false (i.e. is considered invalid).
|
|
|
|
*
|
|
|
|
* *@toks is resized to the complete set of tokens, with a dummy
|
|
|
|
* terminator (type == -1) at the end.
|
|
|
|
*
|
|
|
|
* If it returns true, and *@complete is false, you can append more
|
|
|
|
* data to @input and call it again (with the same perser) and the parser
|
|
|
|
* will continue where it left off.
|
|
|
|
*/
|
|
|
|
bool json_parse_input(jsmn_parser *parser,
|
|
|
|
jsmntok_t **toks,
|
|
|
|
const char *input, int len,
|
|
|
|
bool *complete);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2020-08-20 02:16:55 +02:00
|
|
|
/* Simplified version of above which parses only a complete, valid
|
|
|
|
* JSON string */
|
|
|
|
jsmntok_t *json_parse_simple(const tal_t *ctx, const char *input, int len);
|
|
|
|
|
2018-11-21 18:53:00 +01:00
|
|
|
/* Convert a jsmntype_t enum to a human readable string. */
|
|
|
|
const char *jsmntype_to_string(jsmntype_t t);
|
|
|
|
|
|
|
|
/* Print a json value for debugging purposes. */
|
|
|
|
void json_tok_print(const char *buffer, const jsmntok_t *params);
|
|
|
|
|
|
|
|
/* Return a copy of a json value as an array. */
|
|
|
|
jsmntok_t *json_tok_copy(const tal_t *ctx, const jsmntok_t *tok);
|
|
|
|
|
|
|
|
/*
|
2019-07-26 04:23:47 +02:00
|
|
|
* Remove @num json values from a json array or object @obj. @tok points
|
|
|
|
* to the first value to remove. The array @tokens will be resized.
|
2018-11-21 18:53:00 +01:00
|
|
|
*/
|
2019-07-26 04:23:47 +02:00
|
|
|
void json_tok_remove(jsmntok_t **tokens,
|
|
|
|
jsmntok_t *obj_or_array, const jsmntok_t *tok, size_t num);
|
2018-11-21 18:53:00 +01:00
|
|
|
|
2018-12-16 05:44:06 +01:00
|
|
|
/* Guide is a string with . for members, [] around indexes. */
|
|
|
|
const jsmntok_t *json_delve(const char *buffer,
|
|
|
|
const jsmntok_t *tok,
|
|
|
|
const char *guide);
|
|
|
|
|
2019-01-17 03:12:13 +01:00
|
|
|
/* Iterator macro for array: i is counter, t is token ptr, arr is JSMN_ARRAY */
|
|
|
|
#define json_for_each_arr(i, t, arr) \
|
|
|
|
for (i = 0, t = (arr) + 1; i < (arr)->size; t = json_next(t), i++)
|
|
|
|
|
|
|
|
/* Iterator macro for object: i is counter, t is token ptr (t+1 is
|
|
|
|
* contents of obj member), obj is JSMN_OBJECT */
|
|
|
|
#define json_for_each_obj(i, t, obj) \
|
|
|
|
for (i = 0, t = (obj) + 1; i < (obj)->size; t = json_next(t+1), i++)
|
|
|
|
|
2020-01-26 13:07:50 +01:00
|
|
|
|
|
|
|
/* '"fieldname" : "value"' or '"value"' if fieldname is NULL. Turns
|
|
|
|
* any non-printable chars into JSON escapes, but leaves existing escapes alone.
|
|
|
|
*/
|
|
|
|
void json_add_string(struct json_stream *result, const char *fieldname, const char *value);
|
|
|
|
|
|
|
|
/* '"fieldname" : "value"' or '"value"' if fieldname is NULL. String must
|
|
|
|
* already be JSON escaped as necessary. */
|
|
|
|
void json_add_escaped_string(struct json_stream *result,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct json_escape *esc TAKES);
|
|
|
|
|
|
|
|
/* '"fieldname" : literal' or 'literal' if fieldname is NULL*/
|
|
|
|
void json_add_literal(struct json_stream *result, const char *fieldname,
|
|
|
|
const char *literal, int len);
|
|
|
|
/* '"fieldname" : value' or 'value' if fieldname is NULL */
|
|
|
|
void json_add_num(struct json_stream *result, const char *fieldname,
|
|
|
|
unsigned int value);
|
|
|
|
/* '"fieldname" : value' or 'value' if fieldname is NULL */
|
|
|
|
void json_add_u64(struct json_stream *result, const char *fieldname,
|
|
|
|
uint64_t value);
|
|
|
|
/* '"fieldname" : value' or 'value' if fieldname is NULL */
|
|
|
|
void json_add_s64(struct json_stream *result, const char *fieldname,
|
|
|
|
int64_t value);
|
|
|
|
/* '"fieldname" : value' or 'value' if fieldname is NULL */
|
|
|
|
void json_add_u32(struct json_stream *result, const char *fieldname,
|
|
|
|
uint32_t value);
|
|
|
|
/* '"fieldname" : value' or 'value' if fieldname is NULL */
|
|
|
|
void json_add_s32(struct json_stream *result, const char *fieldname,
|
|
|
|
int32_t value);
|
|
|
|
/* '"fieldname" : true|false' or 'true|false' if fieldname is NULL */
|
|
|
|
void json_add_bool(struct json_stream *result, const char *fieldname,
|
|
|
|
bool value);
|
|
|
|
|
|
|
|
/* '"fieldname" : null' or 'null' if fieldname is NULL */
|
|
|
|
void json_add_null(struct json_stream *stream, const char *fieldname);
|
|
|
|
|
|
|
|
/* '"fieldname" : "0189abcdef..."' or "0189abcdef..." if fieldname is NULL */
|
|
|
|
void json_add_hex(struct json_stream *result, const char *fieldname,
|
|
|
|
const void *data, size_t len);
|
|
|
|
/* '"fieldname" : "0189abcdef..."' or "0189abcdef..." if fieldname is NULL */
|
|
|
|
void json_add_hex_talarr(struct json_stream *result,
|
|
|
|
const char *fieldname,
|
|
|
|
const tal_t *data);
|
|
|
|
|
|
|
|
void json_add_timeabs(struct json_stream *result, const char *fieldname,
|
|
|
|
struct timeabs t);
|
|
|
|
|
|
|
|
/* used in log.c and notification.c*/
|
|
|
|
void json_add_time(struct json_stream *result, const char *fieldname,
|
|
|
|
struct timespec ts);
|
|
|
|
|
|
|
|
/* Add any json token */
|
|
|
|
void json_add_tok(struct json_stream *result, const char *fieldname,
|
|
|
|
const jsmntok_t *tok, const char *buffer);
|
|
|
|
|
2020-02-01 19:34:35 +01:00
|
|
|
/* Add an error code */
|
|
|
|
void json_add_errcode(struct json_stream *result, const char *fieldname,
|
|
|
|
errcode_t code);
|
|
|
|
|
2020-01-26 13:07:50 +01:00
|
|
|
|
2017-08-28 18:06:01 +02:00
|
|
|
#endif /* LIGHTNING_COMMON_JSON_H */
|