51 lines
1.4 KiB
C
51 lines
1.4 KiB
C
#include "runtime/string_input.h"
|
|
#include "runtime/alloc.h"
|
|
#include <string.h>
|
|
|
|
typedef struct {
|
|
const char *string;
|
|
uint32_t position;
|
|
uint32_t length;
|
|
} TSStringInput;
|
|
|
|
const char *ts_string_input_read(void *payload, uint32_t *bytes_read) {
|
|
TSStringInput *input = (TSStringInput *)payload;
|
|
if (input->position >= input->length) {
|
|
*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;
|
|
}
|
|
|
|
int ts_string_input_seek(void *payload, uint32_t character, uint32_t byte) {
|
|
TSStringInput *input = (TSStringInput *)payload;
|
|
input->position = byte;
|
|
return (byte < input->length);
|
|
}
|
|
|
|
TSInput ts_string_input_make(const char *string) {
|
|
return ts_string_input_make_with_length(string, strlen(string));
|
|
}
|
|
|
|
TSInput ts_string_input_make_with_length(const char *string, uint32_t length) {
|
|
TSStringInput *input = ts_malloc(sizeof(TSStringInput));
|
|
if (!input)
|
|
goto error;
|
|
|
|
input->string = string;
|
|
input->position = 0;
|
|
input->length = length;
|
|
return (TSInput){
|
|
.payload = input,
|
|
.read = ts_string_input_read,
|
|
.seek = ts_string_input_seek,
|
|
.encoding = TSInputEncodingUTF8,
|
|
.measure_columns_in_bytes = false,
|
|
};
|
|
|
|
error:
|
|
return (TSInput){ NULL, NULL, NULL, TSInputEncodingUTF8, false };
|
|
}
|