209 lines
6.1 KiB
C
209 lines
6.1 KiB
C
#ifndef TREE_SITTER_PARSER_H_
|
|
#define TREE_SITTER_PARSER_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "tree_sitter/runtime.h"
|
|
|
|
#define TS_STATE_ERROR 0
|
|
#define TS_DEBUG_BUFFER_SIZE 512
|
|
|
|
typedef unsigned short TSStateId;
|
|
|
|
typedef struct {
|
|
size_t bytes;
|
|
size_t chars;
|
|
size_t rows;
|
|
size_t columns;
|
|
} TSLength;
|
|
|
|
typedef struct {
|
|
bool visible : 1;
|
|
bool named : 1;
|
|
bool extra : 1;
|
|
bool structural : 1;
|
|
} TSSymbolMetadata;
|
|
|
|
typedef enum {
|
|
TSTransitionTypeMain,
|
|
TSTransitionTypeSeparator,
|
|
TSTransitionTypeError,
|
|
} TSTransitionType;
|
|
|
|
typedef struct TSLexer {
|
|
void (*advance)(struct TSLexer *, TSStateId, TSTransitionType);
|
|
|
|
TSLength current_position;
|
|
TSLength token_end_position;
|
|
TSLength token_start_position;
|
|
TSLength error_end_position;
|
|
|
|
const char *chunk;
|
|
size_t chunk_start;
|
|
size_t chunk_size;
|
|
|
|
size_t lookahead_size;
|
|
int32_t lookahead;
|
|
TSStateId starting_state;
|
|
TSSymbol result_symbol;
|
|
bool result_follows_error;
|
|
int32_t first_unexpected_character;
|
|
|
|
TSInput input;
|
|
TSDebugger debugger;
|
|
char debug_buffer[TS_DEBUG_BUFFER_SIZE];
|
|
} TSLexer;
|
|
|
|
typedef enum {
|
|
TSParseActionTypeShift,
|
|
TSParseActionTypeReduce,
|
|
TSParseActionTypeAccept,
|
|
TSParseActionTypeRecover,
|
|
} TSParseActionType;
|
|
|
|
typedef struct {
|
|
union {
|
|
TSStateId to_state;
|
|
struct {
|
|
TSSymbol symbol;
|
|
unsigned short child_count;
|
|
};
|
|
};
|
|
TSParseActionType type : 4;
|
|
bool extra : 1;
|
|
bool fragile : 1;
|
|
} TSParseAction;
|
|
|
|
typedef union {
|
|
TSParseAction action;
|
|
struct {
|
|
unsigned short count;
|
|
bool reusable : 1;
|
|
bool depends_on_lookahead : 1;
|
|
};
|
|
} TSParseActionEntry;
|
|
|
|
struct TSLanguage {
|
|
size_t symbol_count;
|
|
const char **symbol_names;
|
|
const TSSymbolMetadata *symbol_metadata;
|
|
const unsigned short *parse_table;
|
|
const TSParseActionEntry *parse_actions;
|
|
const TSStateId *lex_states;
|
|
bool (*lex_fn)(TSLexer *, TSStateId, bool);
|
|
};
|
|
|
|
/*
|
|
* Lexer Macros
|
|
*/
|
|
|
|
#define START_LEXER() \
|
|
int32_t lookahead; \
|
|
next_state: \
|
|
lookahead = lexer->lookahead;
|
|
|
|
#define GO_TO_STATE(state_value) \
|
|
{ \
|
|
state = state_value; \
|
|
goto next_state; \
|
|
}
|
|
|
|
#define ADVANCE(state_value) \
|
|
{ \
|
|
lexer->advance(lexer, state_value, TSTransitionTypeMain); \
|
|
GO_TO_STATE(state_value); \
|
|
}
|
|
|
|
#define SKIP(state_value) \
|
|
{ \
|
|
lexer->advance(lexer, state_value, TSTransitionTypeSeparator); \
|
|
GO_TO_STATE(state_value); \
|
|
}
|
|
|
|
#define ACCEPT_TOKEN(symbol_value) \
|
|
{ \
|
|
lexer->result_symbol = symbol_value; \
|
|
return true; \
|
|
}
|
|
|
|
#define LEX_ERROR() \
|
|
if (error_mode) { \
|
|
if (state == TS_STATE_ERROR) \
|
|
lexer->advance(lexer, state, TSTransitionTypeError); \
|
|
GO_TO_STATE(TS_STATE_ERROR); \
|
|
} else { \
|
|
return false; \
|
|
}
|
|
|
|
/*
|
|
* Parse Table Macros
|
|
*/
|
|
|
|
#define SHIFT(to_state_value) \
|
|
{ \
|
|
{ .type = TSParseActionTypeShift, .to_state = to_state_value } \
|
|
}
|
|
|
|
#define RECOVER(to_state_value) \
|
|
{ \
|
|
{ .type = TSParseActionTypeRecover, .to_state = to_state_value } \
|
|
}
|
|
|
|
#define SHIFT_EXTRA() \
|
|
{ \
|
|
{ .type = TSParseActionTypeShift, .extra = true } \
|
|
}
|
|
|
|
#define REDUCE_EXTRA(symbol_val) \
|
|
{ \
|
|
{ \
|
|
.type = TSParseActionTypeReduce, .symbol = symbol_val, .child_count = 1, \
|
|
.extra = true, \
|
|
} \
|
|
}
|
|
|
|
#define REDUCE(symbol_val, child_count_val) \
|
|
{ \
|
|
{ \
|
|
.type = TSParseActionTypeReduce, .symbol = symbol_val, \
|
|
.child_count = child_count_val, \
|
|
} \
|
|
}
|
|
|
|
#define REDUCE_FRAGILE(symbol_val, child_count_val) \
|
|
{ \
|
|
{ \
|
|
.type = TSParseActionTypeReduce, .symbol = symbol_val, \
|
|
.child_count = child_count_val, .fragile = true, \
|
|
} \
|
|
}
|
|
|
|
#define ACCEPT_INPUT() \
|
|
{ \
|
|
{ .type = TSParseActionTypeAccept } \
|
|
}
|
|
|
|
#define EXPORT_LANGUAGE(language_name) \
|
|
static TSLanguage language = { \
|
|
.symbol_count = SYMBOL_COUNT, \
|
|
.symbol_metadata = ts_symbol_metadata, \
|
|
.parse_table = (const unsigned short *)ts_parse_table, \
|
|
.parse_actions = ts_parse_actions, \
|
|
.lex_states = ts_lex_states, \
|
|
.symbol_names = ts_symbol_names, \
|
|
.lex_fn = ts_lex, \
|
|
}; \
|
|
\
|
|
const TSLanguage *language_name() { \
|
|
return &language; \
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // TREE_SITTER_PARSER_H_
|