tree-sitter/src/runtime/string_input.c

45 lines
1.2 KiB
C
Raw Normal View History

2014-08-01 12:43:14 -07:00
#include "runtime/string_input.h"
2016-01-15 15:08:42 -08:00
#include "runtime/alloc.h"
2014-08-01 12:43:14 -07:00
#include <string.h>
typedef struct {
const char *string;
uint32_t position;
uint32_t length;
2014-08-01 12:43:14 -07:00
} TSStringInput;
static const char *ts_string_input__read(void *payload, uint32_t *bytes_read) {
TSStringInput *input = (TSStringInput *)payload;
if (input->position >= input->length) {
2014-08-01 12:43:14 -07:00
*bytes_read = 0;
return "";
}
uint32_t previous_position = input->position;
input->position = input->length;
*bytes_read = input->position - previous_position;
return input->string + previous_position;
2014-08-01 12:43:14 -07:00
}
static int ts_string_input__seek(void *payload, uint32_t byte) {
TSStringInput *input = (TSStringInput *)payload;
input->position = byte;
return (byte < input->length);
2014-08-01 12:43:14 -07:00
}
TSInput ts_string_input_make(const char *string) {
2017-02-10 09:20:58 -05:00
return ts_string_input_make_with_length(string, strlen(string));
}
TSInput ts_string_input_make_with_length(const char *string, uint32_t length) {
2016-01-15 15:08:42 -08:00
TSStringInput *input = ts_malloc(sizeof(TSStringInput));
input->string = string;
input->position = 0;
input->length = length;
return (TSInput){
.payload = input,
.read = ts_string_input__read,
.seek = ts_string_input__seek,
2016-02-12 14:07:30 -08:00
.encoding = TSInputEncodingUTF8,
};
2014-08-01 12:43:14 -07:00
}