1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#pragma once
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <unistd.h>
enum benc_nodetype {
BNT_INT,
BNT_STRING,
BNT_LIST,
BNT_DICT,
BNT_END,
};
struct benc_node {
enum benc_nodetype type;
const char* loc;
union {
size_t size;
uint32_t depth;
};
};
bool readint(const char** loc, int64_t* val);
void benc_print(const struct benc_node* stream, size_t stream_len, int* depth);
int64_t benc_decode(const char** cursor, const char* end, int* depth, struct benc_node* stream, size_t stream_len);
struct bcursor {
const char* source;
const char* const source_end;
int source_depth;
struct benc_node* const base;
const size_t base_len;
struct benc_node* readhead;
struct benc_node* end;
};
int bcur_open(struct bcursor* cursor, const char* source, const char* source_end, struct benc_node* buffer, size_t buffer_len);
int bcur_next(struct bcursor* cursor, uint32_t steps);
int bcur_next_sibling(struct bcursor* cursor);
ssize_t bcur_find_key(struct bcursor* cursor, const enum benc_nodetype* keyTypes, const char** keyValues, const size_t* keyLengths, const size_t keys);
void skip_sibling(const struct benc_node** cursor, const struct benc_node* end);
ssize_t skip_to_key(const struct benc_node** cursor, const struct benc_node* end, const enum benc_nodetype* keyTypes, const char** keyValues, const size_t* keyLengths, const size_t keys);
|