2019-01-15 04:54:27 +01:00
|
|
|
/* More specialized (bitcoin, lightning-specific) JSON helpers. */
|
|
|
|
#ifndef LIGHTNING_COMMON_JSON_HELPERS_H
|
|
|
|
#define LIGHTNING_COMMON_JSON_HELPERS_H
|
|
|
|
#include "config.h"
|
2020-05-22 17:39:25 +02:00
|
|
|
#include <bitcoin/short_channel_id.h>
|
2019-06-05 07:28:53 +02:00
|
|
|
#include <bitcoin/tx.h>
|
2019-01-15 04:54:27 +01:00
|
|
|
#include <common/json.h>
|
2019-09-30 18:31:27 +02:00
|
|
|
#include <wire/wire.h>
|
2019-01-15 04:54:27 +01:00
|
|
|
|
2019-02-21 01:46:57 +01:00
|
|
|
struct amount_msat;
|
|
|
|
struct amount_sat;
|
2021-01-07 19:48:47 +01:00
|
|
|
struct bip340sig;
|
2020-05-15 12:30:25 +02:00
|
|
|
struct channel_id;
|
common/node_id: new type.
Node ids are pubkeys, but we only use them as pubkeys for routing and checking
gossip messages. So we're packing and unpacking them constantly, and wasting
some space and time.
This introduces a new type, explicitly the SEC1 compressed encoding
(33 bytes). We ensure its validity when we load from the db, or get it
from JSON. We still use 'struct pubkey' for peer messages, which checks
validity.
Results from 5 runs, min-max(mean +/- stddev):
store_load_msec,vsz_kb,store_rewrite_sec,listnodes_sec,listchannels_sec,routing_sec,peer_write_all_sec
39475-39572(39518+/-36),2880732,41.150000-41.390000(41.298+/-0.085),2.260000-2.550000(2.336+/-0.11),44.390000-65.150000(58.648+/-7.5),32.740000-33.020000(32.89+/-0.093),44.130000-45.090000(44.566+/-0.32)
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2019-04-08 08:34:06 +02:00
|
|
|
struct node_id;
|
2020-05-16 03:29:05 +02:00
|
|
|
struct preimage;
|
|
|
|
struct pubkey;
|
2021-01-07 19:48:47 +01:00
|
|
|
struct pubkey32;
|
2020-05-16 03:29:05 +02:00
|
|
|
struct secret;
|
2019-01-15 04:54:27 +01:00
|
|
|
struct short_channel_id;
|
2020-05-15 12:30:25 +02:00
|
|
|
struct wireaddr;
|
|
|
|
struct wireaddr_internal;
|
2020-08-06 20:18:54 +02:00
|
|
|
struct wally_psbt;
|
2020-05-15 12:30:25 +02:00
|
|
|
|
|
|
|
/* Decode a hex-encoded payment preimage */
|
|
|
|
bool json_to_preimage(const char *buffer, const jsmntok_t *tok, struct preimage *preimage);
|
|
|
|
|
|
|
|
/* Extract a secret from this. */
|
|
|
|
bool json_to_secret(const char *buffer, const jsmntok_t *tok, struct secret *dest);
|
2019-01-15 04:54:27 +01:00
|
|
|
|
2020-08-06 20:18:54 +02:00
|
|
|
/* Extract a psbt from this. */
|
2021-01-06 06:41:19 +01:00
|
|
|
struct wally_psbt *json_to_psbt(const tal_t *ctx, const char *buffer,
|
|
|
|
const jsmntok_t *tok);
|
2020-08-06 20:18:54 +02:00
|
|
|
|
2019-01-15 04:54:27 +01:00
|
|
|
/* Extract a pubkey from this */
|
|
|
|
bool json_to_pubkey(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct pubkey *pubkey);
|
|
|
|
|
common/node_id: new type.
Node ids are pubkeys, but we only use them as pubkeys for routing and checking
gossip messages. So we're packing and unpacking them constantly, and wasting
some space and time.
This introduces a new type, explicitly the SEC1 compressed encoding
(33 bytes). We ensure its validity when we load from the db, or get it
from JSON. We still use 'struct pubkey' for peer messages, which checks
validity.
Results from 5 runs, min-max(mean +/- stddev):
store_load_msec,vsz_kb,store_rewrite_sec,listnodes_sec,listchannels_sec,routing_sec,peer_write_all_sec
39475-39572(39518+/-36),2880732,41.150000-41.390000(41.298+/-0.085),2.260000-2.550000(2.336+/-0.11),44.390000-65.150000(58.648+/-7.5),32.740000-33.020000(32.89+/-0.093),44.130000-45.090000(44.566+/-0.32)
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2019-04-08 08:34:06 +02:00
|
|
|
/* Extract node_id from this: makes sure *id is valid! */
|
|
|
|
bool json_to_node_id(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct node_id *id);
|
|
|
|
|
2019-01-15 04:54:27 +01:00
|
|
|
/* Extract satoshis from this (may be a string, or a decimal number literal) */
|
|
|
|
bool json_to_bitcoin_amount(const char *buffer, const jsmntok_t *tok,
|
|
|
|
uint64_t *satoshi);
|
|
|
|
|
|
|
|
/* Extract a short_channel_id from this */
|
|
|
|
bool json_to_short_channel_id(const char *buffer, const jsmntok_t *tok,
|
2019-09-06 08:41:41 +02:00
|
|
|
struct short_channel_id *scid);
|
2019-01-15 04:54:27 +01:00
|
|
|
|
2019-02-21 01:46:57 +01:00
|
|
|
/* Extract a satoshis amount from this */
|
|
|
|
bool json_to_sat(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct amount_sat *sat);
|
|
|
|
|
2019-08-15 19:41:23 +02:00
|
|
|
/* Extract a satoshis amount from this */
|
|
|
|
/* If the string is "all", set amonut as AMOUNT_SAT(-1ULL). */
|
|
|
|
bool json_to_sat_or_all(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct amount_sat *sat);
|
|
|
|
|
2019-02-21 01:46:57 +01:00
|
|
|
/* Extract a millisatoshis amount from this */
|
|
|
|
bool json_to_msat(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct amount_msat *msat);
|
|
|
|
|
2019-06-05 07:28:53 +02:00
|
|
|
/* Extract a bitcoin txid from this */
|
|
|
|
bool json_to_txid(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct bitcoin_txid *txid);
|
2019-06-11 10:55:45 +02:00
|
|
|
|
2020-12-04 11:24:14 +01:00
|
|
|
/* Extract a bitcoin outpoint from this */
|
|
|
|
bool json_to_outpoint(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct bitcoin_outpoint *op);
|
|
|
|
|
2019-09-30 18:31:27 +02:00
|
|
|
/* Extract a channel id from this */
|
|
|
|
bool json_to_channel_id(const char *buffer, const jsmntok_t *tok,
|
|
|
|
struct channel_id *cid);
|
|
|
|
|
2019-06-11 10:55:45 +02:00
|
|
|
/* Split a json token into 2 tokens given a splitting character */
|
|
|
|
bool split_tok(const char *buffer, const jsmntok_t *tok,
|
|
|
|
char split,
|
|
|
|
jsmntok_t *a,
|
|
|
|
jsmntok_t *b);
|
2020-05-15 12:30:25 +02:00
|
|
|
|
|
|
|
/* Helpers for outputting JSON results */
|
|
|
|
|
|
|
|
/* '"fieldname" : "0289abcdef..."' or "0289abcdef..." if fieldname is NULL */
|
|
|
|
void json_add_pubkey(struct json_stream *response,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct pubkey *key);
|
|
|
|
|
2021-01-07 19:48:47 +01:00
|
|
|
/* '"fieldname" : "89abcdef..."' or "89abcdef..." if fieldname is NULL */
|
|
|
|
void json_add_pubkey32(struct json_stream *response,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct pubkey32 *key);
|
|
|
|
|
|
|
|
/* '"fieldname" : "89abcdef..."' or "89abcdef..." if fieldname is NULL */
|
|
|
|
void json_add_bip340sig(struct json_stream *response,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct bip340sig *sig);
|
|
|
|
|
2020-05-15 12:30:25 +02:00
|
|
|
/* '"fieldname" : "89abcdef..."' or "89abcdef..." if fieldname is NULL */
|
|
|
|
void json_add_secret(struct json_stream *response,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct secret *secret);
|
|
|
|
|
|
|
|
/* '"fieldname" : "0289abcdef..."' or "0289abcdef..." if fieldname is NULL */
|
|
|
|
void json_add_node_id(struct json_stream *response,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct node_id *id);
|
|
|
|
|
2020-10-08 22:41:12 +02:00
|
|
|
/* '"fieldname" : "0289abcdef..."' or "0289abcdef..." if fieldname is NULL */
|
|
|
|
void json_add_channel_id(struct json_stream *response,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct channel_id *cid);
|
|
|
|
|
2020-05-15 12:30:25 +02:00
|
|
|
/* '"fieldname" : <hexrev>' or "<hexrev>" if fieldname is NULL */
|
|
|
|
void json_add_txid(struct json_stream *result, const char *fieldname,
|
|
|
|
const struct bitcoin_txid *txid);
|
|
|
|
|
2020-12-04 11:27:37 +01:00
|
|
|
/* '"fieldname" : "txid:n" */
|
|
|
|
void json_add_outpoint(struct json_stream *result, const char *fieldname,
|
|
|
|
const struct bitcoin_outpoint *out);
|
|
|
|
|
2020-05-15 12:30:25 +02:00
|
|
|
/* '"fieldname" : "1234:5:6"' */
|
|
|
|
void json_add_short_channel_id(struct json_stream *response,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct short_channel_id *id);
|
|
|
|
|
2020-05-22 17:39:25 +02:00
|
|
|
/* '"fieldname" : "1234:5:6/7"' */
|
|
|
|
void json_add_short_channel_id_dir(struct json_stream *response,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct short_channel_id_dir *id);
|
|
|
|
|
2020-05-15 12:30:25 +02:00
|
|
|
/* JSON serialize a network address for a node */
|
|
|
|
void json_add_address(struct json_stream *response, const char *fieldname,
|
|
|
|
const struct wireaddr *addr);
|
|
|
|
|
|
|
|
/* JSON serialize a network address for a node. */
|
|
|
|
void json_add_address_internal(struct json_stream *response,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct wireaddr_internal *addr);
|
|
|
|
|
|
|
|
/* Adds both a 'raw' number field and an 'amount_msat' field */
|
|
|
|
void json_add_amount_msat_compat(struct json_stream *result,
|
|
|
|
struct amount_msat msat,
|
|
|
|
const char *rawfieldname,
|
|
|
|
const char *msatfieldname)
|
|
|
|
NO_NULL_ARGS;
|
|
|
|
|
|
|
|
/* Adds both a 'raw' number field and an 'amount_msat' field */
|
|
|
|
void json_add_amount_sat_compat(struct json_stream *result,
|
|
|
|
struct amount_sat sat,
|
|
|
|
const char *rawfieldname,
|
|
|
|
const char *msatfieldname)
|
|
|
|
NO_NULL_ARGS;
|
|
|
|
|
|
|
|
/* Adds an 'msat' field */
|
|
|
|
void json_add_amount_msat_only(struct json_stream *result,
|
|
|
|
const char *msatfieldname,
|
|
|
|
struct amount_msat msat)
|
|
|
|
NO_NULL_ARGS;
|
|
|
|
|
|
|
|
/* Adds an 'msat' field */
|
|
|
|
void json_add_amount_sat_only(struct json_stream *result,
|
|
|
|
const char *msatfieldname,
|
|
|
|
struct amount_sat sat)
|
|
|
|
NO_NULL_ARGS;
|
|
|
|
|
|
|
|
void json_add_sha256(struct json_stream *result, const char *fieldname,
|
|
|
|
const struct sha256 *hash);
|
|
|
|
|
|
|
|
void json_add_preimage(struct json_stream *result, const char *fieldname,
|
|
|
|
const struct preimage *preimage);
|
|
|
|
|
|
|
|
/* '"fieldname" : "010000000001..."' or "010000000001..." if fieldname is NULL */
|
|
|
|
void json_add_tx(struct json_stream *result,
|
|
|
|
const char *fieldname,
|
|
|
|
const struct bitcoin_tx *tx);
|
2020-05-21 05:57:56 +02:00
|
|
|
|
|
|
|
/* '"fieldname" : "cHNidP8BAJoCAAAAAljo..." or "cHNidP8BAJoCAAAAAljo..." if fieldname is NULL */
|
|
|
|
void json_add_psbt(struct json_stream *stream,
|
|
|
|
const char *fieldname,
|
2020-10-08 22:41:52 +02:00
|
|
|
const struct wally_psbt *psbt);
|
2020-05-21 05:57:56 +02:00
|
|
|
|
2019-01-15 04:54:27 +01:00
|
|
|
#endif /* LIGHTNING_COMMON_JSON_HELPERS_H */
|