Clean up Tree code
This commit is contained in:
parent
88d07c8960
commit
d38f095f01
2 changed files with 38 additions and 51 deletions
|
|
@ -1,29 +1,30 @@
|
|||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include "tree_sitter/parser.h"
|
||||
#include "runtime/tree.h"
|
||||
|
||||
TSTree *ts_tree_make_leaf(TSSymbol s, size_t size, size_t padding, int hidden) {
|
||||
TSTree *ts_tree_make_leaf(TSSymbol sym, size_t size, size_t padding, bool is_hidden) {
|
||||
TSTree *result = malloc(sizeof(TSTree));
|
||||
*result = (TSTree) { .ref_count = 1,
|
||||
.symbol = s,
|
||||
.symbol = sym,
|
||||
.size = size,
|
||||
.child_count = 0,
|
||||
.children = NULL,
|
||||
.lookahead_char = 0,
|
||||
.padding = padding,
|
||||
.options = hidden ? TSTreeOptionsHidden : 0, };
|
||||
.options = is_hidden ? TSTreeOptionsHidden : 0, };
|
||||
return result;
|
||||
}
|
||||
|
||||
TSTree *ts_tree_make_error(size_t size, size_t padding, char lookahead_char) {
|
||||
TSTree *result = ts_tree_make_leaf(ts_builtin_sym_error, size, padding, 0);
|
||||
TSTree *result = ts_tree_make_leaf(ts_builtin_sym_error, size, padding, false);
|
||||
result->lookahead_char = lookahead_char;
|
||||
return result;
|
||||
}
|
||||
|
||||
TSTree *ts_tree_make_node(TSSymbol symbol, size_t child_count,
|
||||
TSTree **children, int is_hidden) {
|
||||
TSTree **children, bool is_hidden) {
|
||||
|
||||
/*
|
||||
* Determine the new node's size, padding and visible child count based on
|
||||
|
|
@ -33,6 +34,7 @@ TSTree *ts_tree_make_node(TSSymbol symbol, size_t child_count,
|
|||
for (size_t i = 0; i < child_count; i++) {
|
||||
TSTree *child = children[i];
|
||||
ts_tree_retain(child);
|
||||
|
||||
if (i == 0) {
|
||||
padding = child->padding;
|
||||
size = child->size;
|
||||
|
|
@ -43,7 +45,7 @@ TSTree *ts_tree_make_node(TSSymbol symbol, size_t child_count,
|
|||
if (ts_tree_is_visible(child))
|
||||
visible_child_count++;
|
||||
else
|
||||
visible_child_count += ts_tree_visible_child_count(child);
|
||||
visible_child_count += child->visible_child_count;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -136,16 +138,17 @@ int ts_tree_equals(const TSTree *node1, const TSTree *node2) {
|
|||
}
|
||||
|
||||
TSTree **ts_tree_children(const TSTree *tree, size_t *count) {
|
||||
if (!tree || tree->symbol == ts_builtin_sym_error) {
|
||||
if (count)
|
||||
*count = 0;
|
||||
return NULL;
|
||||
}
|
||||
if (count)
|
||||
*count = tree->child_count;
|
||||
return tree->children;
|
||||
}
|
||||
|
||||
TSTreeChild *ts_tree_visible_children(const TSTree *tree, size_t *count) {
|
||||
if (count)
|
||||
*count = tree->visible_child_count;
|
||||
return (TSTreeChild *)(tree + 1);
|
||||
}
|
||||
|
||||
static size_t write_lookahead_to_string(char *string, size_t limit,
|
||||
char lookahead) {
|
||||
switch (lookahead) {
|
||||
|
|
@ -159,42 +162,46 @@ static size_t write_lookahead_to_string(char *string, size_t limit,
|
|||
static size_t tree_write_to_string(const TSTree *tree,
|
||||
const char **symbol_names, char *string,
|
||||
size_t limit, int is_root) {
|
||||
if (!tree)
|
||||
return snprintf(string, limit, "(NULL)");
|
||||
|
||||
char *cursor = string;
|
||||
char **writer = (limit > 0) ? &cursor : &string;
|
||||
int visible = ts_tree_is_visible(tree);
|
||||
int visible = ts_tree_is_visible(tree) || is_root;
|
||||
|
||||
if (visible && !is_root)
|
||||
cursor += snprintf(*writer, limit, " ");
|
||||
|
||||
if (!tree) {
|
||||
cursor += snprintf(*writer, limit, "(NULL)");
|
||||
} else if (tree->symbol == ts_builtin_sym_error) {
|
||||
cursor += snprintf(*writer, limit, "(ERROR ");
|
||||
cursor += write_lookahead_to_string(*writer, limit, tree->lookahead_char);
|
||||
cursor += snprintf(*writer, limit, ")");
|
||||
} else {
|
||||
if (visible || is_root)
|
||||
if (visible) {
|
||||
if (tree->symbol == ts_builtin_sym_error) {
|
||||
cursor += snprintf(*writer, limit, "(ERROR ");
|
||||
cursor += write_lookahead_to_string(*writer, limit, tree->lookahead_char);
|
||||
} else {
|
||||
cursor += snprintf(*writer, limit, "(%s", symbol_names[tree->symbol]);
|
||||
for (size_t i = 0; i < tree->child_count; i++) {
|
||||
TSTree *child = tree->children[i];
|
||||
cursor += tree_write_to_string(child, symbol_names, *writer, limit, 0);
|
||||
}
|
||||
if (visible || is_root)
|
||||
cursor += snprintf(*writer, limit, ")");
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < tree->child_count; i++) {
|
||||
TSTree *child = tree->children[i];
|
||||
cursor += tree_write_to_string(child, symbol_names, *writer, limit, 0);
|
||||
}
|
||||
|
||||
if (visible)
|
||||
cursor += snprintf(*writer, limit, ")");
|
||||
|
||||
return cursor - string;
|
||||
}
|
||||
|
||||
char *ts_tree_string(const TSTree *tree, const char **symbol_names) {
|
||||
|
||||
/*
|
||||
* Determine how long the string will need to be up front so that
|
||||
* the right amount of memory can be allocated.
|
||||
* Determine the length of the string first, so that the right amount of
|
||||
* memory can be allocated.
|
||||
*/
|
||||
static char SCRATCH[1];
|
||||
size_t size = tree_write_to_string(tree, symbol_names, SCRATCH, 0, 1) + 1;
|
||||
char *result = malloc(size * sizeof(char));
|
||||
|
||||
tree_write_to_string(tree, symbol_names, result, size, 1);
|
||||
return result;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "tree_sitter/runtime.h"
|
||||
|
||||
typedef enum {
|
||||
|
|
@ -46,30 +47,8 @@ static inline int ts_tree_is_wrapper(const TSTree *tree) {
|
|||
return (tree->options & TSTreeOptionsWrapper);
|
||||
}
|
||||
|
||||
static inline size_t ts_tree_visible_child_count(const TSTree *tree) {
|
||||
if (tree->symbol == ts_builtin_sym_error)
|
||||
return 0;
|
||||
else
|
||||
return tree->visible_child_count;
|
||||
}
|
||||
|
||||
static inline TSTreeChild *ts_tree_visible_children(const TSTree *tree,
|
||||
size_t *count) {
|
||||
if (tree->symbol == ts_builtin_sym_error || tree->visible_child_count == 0) {
|
||||
if (count)
|
||||
*count = 0;
|
||||
return NULL;
|
||||
} else {
|
||||
if (count)
|
||||
*count = tree->visible_child_count;
|
||||
return (TSTreeChild *)(tree + 1);
|
||||
}
|
||||
}
|
||||
|
||||
TSTree *ts_tree_make_leaf(TSSymbol symbol, size_t size, size_t padding,
|
||||
int is_hidden);
|
||||
TSTree *ts_tree_make_node(TSSymbol symbol, size_t child_count,
|
||||
TSTree **children, int is_hidden);
|
||||
TSTree *ts_tree_make_leaf(TSSymbol, size_t, size_t, bool);
|
||||
TSTree *ts_tree_make_node(TSSymbol, size_t, TSTree **, bool);
|
||||
TSTree *ts_tree_make_error(size_t size, size_t padding, char lookahead_char);
|
||||
void ts_tree_retain(TSTree *tree);
|
||||
void ts_tree_release(TSTree *tree);
|
||||
|
|
@ -77,6 +56,7 @@ int ts_tree_equals(const TSTree *tree1, const TSTree *tree2);
|
|||
char *ts_tree_string(const TSTree *tree, const char **names);
|
||||
char *ts_tree_error_string(const TSTree *tree, const char **names);
|
||||
TSTree **ts_tree_children(const TSTree *tree, size_t *count);
|
||||
TSTreeChild *ts_tree_visible_children(const TSTree *tree, size_t *count);
|
||||
size_t ts_tree_total_size(const TSTree *tree);
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue