mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
7401b26824
Before: Ten builds, laptop -j5, no ccache: ``` real 0m36.686000-38.956000(38.608+/-0.65)s user 2m32.864000-42.253000(40.7545+/-2.7)s sys 0m16.618000-18.316000(17.8531+/-0.48)s ``` Ten builds, laptop -j5, ccache (warm): ``` real 0m8.212000-8.577000(8.39989+/-0.13)s user 0m12.731000-13.212000(12.9751+/-0.17)s sys 0m3.697000-3.902000(3.83722+/-0.064)s ``` After: Ten builds, laptop -j5, no ccache: 8% faster ``` real 0m33.802000-35.773000(35.468+/-0.54)s user 2m19.073000-27.754000(26.2542+/-2.3)s sys 0m15.784000-17.173000(16.7165+/-0.37)s ``` Ten builds, laptop -j5, ccache (warm): 1% faster ``` real 0m8.200000-8.485000(8.30138+/-0.097)s user 0m12.485000-13.100000(12.7344+/-0.19)s sys 0m3.702000-3.889000(3.78787+/-0.056)s ``` Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
80 lines
2.3 KiB
C
80 lines
2.3 KiB
C
/* Generate various query messages. */
|
|
#include "config.h"
|
|
#include <ccan/err/err.h>
|
|
#include <ccan/str/hex/hex.h>
|
|
#include <stdio.h>
|
|
#include <wire/peer_wire.h>
|
|
|
|
static void usage(void)
|
|
{
|
|
errx(1, "Usage: mkquery gossip_timestamp_filter <chain_hash> <first_timestamp> <timestamp_range> OR\n"
|
|
" mkquery query_channel_range <chain_hash> <first_blocknum> <number_of_blocks> [<query_option_flags>] OR\n"
|
|
" mkquery query_short_channel_ids <chain_hash> <encoded-scids> [query-flags-encoding query-flags]");
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct bitcoin_blkid chainhash;
|
|
const tal_t *ctx = tal(NULL, char);
|
|
const u8 *msg;
|
|
|
|
setup_locale();
|
|
secp256k1_ctx = secp256k1_context_create(SECP256K1_CONTEXT_VERIFY |
|
|
SECP256K1_CONTEXT_SIGN);
|
|
|
|
if (argc < 3)
|
|
usage();
|
|
|
|
if (!hex_decode(argv[2], strlen(argv[2]), &chainhash, sizeof(chainhash)))
|
|
errx(1, "Parsing chainhash");
|
|
|
|
if (streq(argv[1], "gossip_timestamp_filter")) {
|
|
if (argc != 5)
|
|
usage();
|
|
msg = towire_gossip_timestamp_filter(ctx, &chainhash,
|
|
strtol(argv[3], NULL, 0),
|
|
strtol(argv[4], NULL, 0));
|
|
} else if (streq(argv[1], "query_channel_range")) {
|
|
struct tlv_query_channel_range_tlvs *tlvs;
|
|
if (argc == 5)
|
|
tlvs = NULL;
|
|
else if (argc == 6) {
|
|
tlvs = tlv_query_channel_range_tlvs_new(ctx);
|
|
tlvs->query_option = tal(tlvs, bigsize_t);
|
|
*tlvs->query_option = strtol(argv[5], NULL, 0);
|
|
} else
|
|
usage();
|
|
msg = towire_query_channel_range(ctx, &chainhash,
|
|
strtol(argv[3], NULL, 0),
|
|
strtol(argv[4], NULL, 0),
|
|
tlvs);
|
|
} else if (streq(argv[1], "query_short_channel_ids")) {
|
|
struct tlv_query_short_channel_ids_tlvs *tlvs;
|
|
u8 *encoded;
|
|
|
|
if (argc == 4)
|
|
tlvs = NULL;
|
|
else if (argc == 6) {
|
|
tlvs = tlv_query_short_channel_ids_tlvs_new(ctx);
|
|
tlvs->query_flags = tal(tlvs, struct tlv_query_short_channel_ids_tlvs_query_flags);
|
|
tlvs->query_flags->encoding_type = strtol(argv[4], NULL, 0);
|
|
tlvs->query_flags->encoded_query_flags = tal_hexdata(tlvs->query_flags,
|
|
argv[5], strlen(argv[5]));
|
|
if (!tlvs->query_flags->encoded_query_flags)
|
|
usage();
|
|
} else
|
|
usage();
|
|
|
|
encoded = tal_hexdata(ctx, argv[3], strlen(argv[3]));
|
|
if (!encoded)
|
|
usage();
|
|
|
|
msg = towire_query_short_channel_ids(ctx, &chainhash, encoded, tlvs);
|
|
} else
|
|
usage();
|
|
|
|
printf("%s\n", tal_hex(ctx, msg));
|
|
tal_free(msg);
|
|
return 0;
|
|
}
|