forked from smacker/go-tree-sitter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bindings.c
50 lines (46 loc) · 1.31 KB
/
bindings.c
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
50
#include "api.h"
#include "bindings.h"
#include <string.h>
#include <stdio.h>
static void stderr_log(void *payload, TSLogType type, const char *msg)
{
bool include_lexing = (bool)payload;
switch (type)
{
case TSLogTypeParse:
fprintf(stderr, "* %s\n", msg);
break;
case TSLogTypeLex:
if (include_lexing)
fprintf(stderr, " %s\n", msg);
break;
}
}
TSLogger stderr_logger_new(bool include_lexing)
{
TSLogger result;
result.payload = (void *)include_lexing;
result.log = stderr_log;
return result;
}
const char *call_callReadFunc(void *payload, uint32_t byte_index, TSPoint position, uint32_t *bytes_read)
{
ParsePayload *p = payload;
if (p->previous_content != NULL)
{
free(p->previous_content);
}
p->previous_content = callReadFunc(p->read_function_id, byte_index, position, bytes_read);
return p->previous_content;
}
TSTree *call_ts_parser_parse(TSParser *self, const TSTree *old_tree, int read_function_id, TSInputEncoding encoding)
{
ParsePayload payload = {read_function_id, NULL};
TSInput input = {&payload, call_callReadFunc, encoding};
TSTree *tree = ts_parser_parse(self, old_tree, input);
if (payload.previous_content != NULL)
{
free(payload.previous_content);
}
return tree;
}