tree-sitter-lispex 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/scanner.c ADDED
@@ -0,0 +1,358 @@
1
+ #include "tree_sitter/parser.h"
2
+
3
+ #include <stdbool.h>
4
+ #include <stdint.h>
5
+ #include <stdlib.h>
6
+ #include <string.h>
7
+
8
+ enum TokenType {
9
+ BLOCK_COMMENT,
10
+ CHARACTER,
11
+ BOOLEAN,
12
+ BYTE,
13
+ INTEGER,
14
+ RATIONAL,
15
+ REAL,
16
+ SYMBOL,
17
+ FORBIDDEN_READER_EXTENSION,
18
+ };
19
+
20
+ void *tree_sitter_lispex_external_scanner_create(void) { return NULL; }
21
+ void tree_sitter_lispex_external_scanner_destroy(void *payload) {
22
+ (void)payload;
23
+ }
24
+ unsigned tree_sitter_lispex_external_scanner_serialize(void *payload,
25
+ char *buffer) {
26
+ (void)payload;
27
+ (void)buffer;
28
+ return 0;
29
+ }
30
+ void tree_sitter_lispex_external_scanner_deserialize(void *payload,
31
+ const char *buffer,
32
+ unsigned length) {
33
+ (void)payload;
34
+ (void)buffer;
35
+ (void)length;
36
+ }
37
+
38
+ static bool is_space(int32_t c) {
39
+ return c == ' ' || c == '\t' || c == '\r' || c == '\n' || c == '\f' ||
40
+ c == 0xFEFF;
41
+ }
42
+
43
+ static bool is_delimiter(int32_t c) {
44
+ return c == 0 || is_space(c) || c == '(' || c == ')' || c == '[' ||
45
+ c == ']' || c == '{' || c == '}' || c == '"' || c == ';' ||
46
+ c == '\'' || c == '`' || c == ',';
47
+ }
48
+
49
+ static bool is_ascii_alphanumeric(int32_t c) {
50
+ return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') ||
51
+ (c >= '0' && c <= '9');
52
+ }
53
+
54
+ static bool is_hex(int32_t c) {
55
+ return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') ||
56
+ (c >= 'A' && c <= 'F');
57
+ }
58
+
59
+ static bool is_named_character(const char *name) {
60
+ static const char *const names[] = {
61
+ "space", "newline", "linefeed", "tab", "return",
62
+ "null", "nul", "delete", "rubout", "escape",
63
+ "esc", "backspace", "alarm", "page",
64
+ };
65
+ const size_t count = sizeof(names) / sizeof(names[0]);
66
+ for (size_t index = 0; index < count; index++) {
67
+ if (strcmp(name, names[index]) == 0) {
68
+ return true;
69
+ }
70
+ }
71
+ return false;
72
+ }
73
+
74
+ static bool scan_block_comment_after_hash(TSLexer *lexer) {
75
+ lexer->advance(lexer, false);
76
+ unsigned depth = 1;
77
+ while (depth > 0) {
78
+ if (lexer->lookahead == 0) {
79
+ return false;
80
+ }
81
+ if (lexer->lookahead == '#') {
82
+ lexer->advance(lexer, false);
83
+ if (lexer->lookahead == '|') {
84
+ lexer->advance(lexer, false);
85
+ depth++;
86
+ }
87
+ continue;
88
+ }
89
+ if (lexer->lookahead == '|') {
90
+ lexer->advance(lexer, false);
91
+ if (lexer->lookahead == '#') {
92
+ lexer->advance(lexer, false);
93
+ depth--;
94
+ }
95
+ continue;
96
+ }
97
+ lexer->advance(lexer, false);
98
+ }
99
+ lexer->result_symbol = BLOCK_COMMENT;
100
+ return true;
101
+ }
102
+
103
+ static bool scan_character_after_hash(TSLexer *lexer) {
104
+ lexer->advance(lexer, false);
105
+ if (lexer->lookahead == 0) {
106
+ return false;
107
+ }
108
+
109
+ int32_t first = lexer->lookahead;
110
+ lexer->advance(lexer, false);
111
+ if (!is_ascii_alphanumeric(first) || first >= 128) {
112
+ lexer->result_symbol = CHARACTER;
113
+ return true;
114
+ }
115
+
116
+ char name[64];
117
+ size_t length = 0;
118
+ name[length++] = (char)first;
119
+ while (!is_delimiter(lexer->lookahead) && lexer->lookahead != '|') {
120
+ if (lexer->lookahead >= 128 || length + 1 >= sizeof(name)) {
121
+ return false;
122
+ }
123
+ name[length++] = (char)lexer->lookahead;
124
+ lexer->advance(lexer, false);
125
+ }
126
+ name[length] = '\0';
127
+
128
+ bool valid = length == 1;
129
+ if (!valid && (name[0] == 'x' || name[0] == 'X')) {
130
+ valid = length > 1;
131
+ for (size_t index = 1; index < length && valid; index++) {
132
+ valid = is_hex(name[index]);
133
+ }
134
+ }
135
+ if (!valid) {
136
+ valid = is_named_character(name);
137
+ }
138
+ if (!valid) {
139
+ return false;
140
+ }
141
+
142
+ lexer->result_symbol = CHARACTER;
143
+ return true;
144
+ }
145
+
146
+ static char *scan_ascii_token(TSLexer *lexer, bool *ascii_only,
147
+ size_t *length_out) {
148
+ size_t capacity = 64;
149
+ size_t length = 0;
150
+ char *buffer = malloc(capacity);
151
+ if (buffer == NULL) {
152
+ return NULL;
153
+ }
154
+ *ascii_only = true;
155
+ while (!is_delimiter(lexer->lookahead)) {
156
+ if (lexer->lookahead >= 128) {
157
+ *ascii_only = false;
158
+ }
159
+ if (length + 1 >= capacity) {
160
+ capacity *= 2;
161
+ char *grown = realloc(buffer, capacity);
162
+ if (grown == NULL) {
163
+ free(buffer);
164
+ return NULL;
165
+ }
166
+ buffer = grown;
167
+ }
168
+ buffer[length++] =
169
+ lexer->lookahead < 128 ? (char)lexer->lookahead : '\0';
170
+ lexer->advance(lexer, false);
171
+ }
172
+ buffer[length] = '\0';
173
+ *length_out = length;
174
+ return buffer;
175
+ }
176
+
177
+ static bool unsigned_integer_shape(const char *text) {
178
+ if (text[0] == '\0') {
179
+ return false;
180
+ }
181
+ if (text[0] == '0') {
182
+ return text[1] == '\0';
183
+ }
184
+ if (text[0] < '1' || text[0] > '9') {
185
+ return false;
186
+ }
187
+ for (size_t index = 1; text[index] != '\0'; index++) {
188
+ if (text[index] < '0' || text[index] > '9') {
189
+ return false;
190
+ }
191
+ }
192
+ return true;
193
+ }
194
+
195
+ static bool integer_shape(const char *text) {
196
+ return text[0] == '-' ? unsigned_integer_shape(text + 1)
197
+ : unsigned_integer_shape(text);
198
+ }
199
+
200
+ static bool rational_shape(char *text) {
201
+ char *slash = strchr(text, '/');
202
+ if (slash == NULL || strchr(slash + 1, '/') != NULL) {
203
+ return false;
204
+ }
205
+ *slash = '\0';
206
+ bool valid = integer_shape(text) && slash[1] >= '1' && slash[1] <= '9';
207
+ for (char *cursor = slash + 2; *cursor != '\0' && valid; cursor++) {
208
+ valid = *cursor >= '0' && *cursor <= '9';
209
+ }
210
+ *slash = '/';
211
+ return valid;
212
+ }
213
+
214
+ static bool consume_digits(const char **cursor) {
215
+ const char *start = *cursor;
216
+ while (**cursor >= '0' && **cursor <= '9') {
217
+ (*cursor)++;
218
+ }
219
+ return *cursor != start;
220
+ }
221
+
222
+ static bool real_shape(const char *text) {
223
+ const char *cursor = text;
224
+ if (*cursor == '-') {
225
+ cursor++;
226
+ }
227
+ const char *whole = cursor;
228
+ if (!consume_digits(&cursor)) {
229
+ return false;
230
+ }
231
+ size_t whole_length = (size_t)(cursor - whole);
232
+ if ((whole_length > 1 && whole[0] == '0') ||
233
+ (whole_length == 0)) {
234
+ return false;
235
+ }
236
+
237
+ bool fraction = false;
238
+ bool exponent = false;
239
+ if (*cursor == '.') {
240
+ fraction = true;
241
+ cursor++;
242
+ if (!consume_digits(&cursor)) {
243
+ return false;
244
+ }
245
+ }
246
+ if (*cursor == 'e' || *cursor == 'E') {
247
+ exponent = true;
248
+ cursor++;
249
+ if (*cursor == '+' || *cursor == '-') {
250
+ cursor++;
251
+ }
252
+ if (!consume_digits(&cursor)) {
253
+ return false;
254
+ }
255
+ }
256
+ return *cursor == '\0' && (fraction || exponent);
257
+ }
258
+
259
+ static bool byte_shape(const char *text) {
260
+ if (!unsigned_integer_shape(text)) {
261
+ return false;
262
+ }
263
+ unsigned value = 0;
264
+ for (const char *cursor = text; *cursor != '\0'; cursor++) {
265
+ value = value * 10 + (unsigned)(*cursor - '0');
266
+ }
267
+ return value <= 255;
268
+ }
269
+
270
+ static bool starts_number_like(const char *text) {
271
+ return (text[0] >= '0' && text[0] <= '9') ||
272
+ (text[0] == '-' && text[1] >= '0' && text[1] <= '9');
273
+ }
274
+
275
+ static bool scan_hash_token_after_hash(TSLexer *lexer,
276
+ const bool *valid_symbols) {
277
+ if (lexer->lookahead == ';' &&
278
+ valid_symbols[FORBIDDEN_READER_EXTENSION]) {
279
+ lexer->advance(lexer, false);
280
+ lexer->result_symbol = FORBIDDEN_READER_EXTENSION;
281
+ return true;
282
+ }
283
+ if (!valid_symbols[BOOLEAN] &&
284
+ !valid_symbols[FORBIDDEN_READER_EXTENSION]) {
285
+ return false;
286
+ }
287
+
288
+ bool ascii_only = true;
289
+ size_t length = 0;
290
+ char *tail = scan_ascii_token(lexer, &ascii_only, &length);
291
+ if (tail == NULL) {
292
+ return false;
293
+ }
294
+ bool matched = false;
295
+ if (valid_symbols[BOOLEAN] && ascii_only &&
296
+ (strcmp(tail, "t") == 0 || strcmp(tail, "true") == 0 ||
297
+ strcmp(tail, "f") == 0 || strcmp(tail, "false") == 0)) {
298
+ lexer->result_symbol = BOOLEAN;
299
+ matched = true;
300
+ } else if (valid_symbols[FORBIDDEN_READER_EXTENSION] && ascii_only &&
301
+ strcmp(tail, "lang") == 0) {
302
+ lexer->result_symbol = FORBIDDEN_READER_EXTENSION;
303
+ matched = true;
304
+ }
305
+ free(tail);
306
+ return matched;
307
+ }
308
+
309
+ static bool scan_atom(TSLexer *lexer, const bool *valid_symbols) {
310
+ bool ascii_only = true;
311
+ size_t length = 0;
312
+ char *text = scan_ascii_token(lexer, &ascii_only, &length);
313
+ if (text == NULL || length == 0) {
314
+ free(text);
315
+ return false;
316
+ }
317
+
318
+ bool matched = false;
319
+ if (valid_symbols[BYTE] && ascii_only && byte_shape(text)) {
320
+ lexer->result_symbol = BYTE;
321
+ matched = true;
322
+ } else if (valid_symbols[RATIONAL] && ascii_only && rational_shape(text)) {
323
+ lexer->result_symbol = RATIONAL;
324
+ matched = true;
325
+ } else if (valid_symbols[REAL] && ascii_only && real_shape(text)) {
326
+ lexer->result_symbol = REAL;
327
+ matched = true;
328
+ } else if (valid_symbols[INTEGER] && ascii_only && integer_shape(text)) {
329
+ lexer->result_symbol = INTEGER;
330
+ matched = true;
331
+ } else if (valid_symbols[SYMBOL] && text[0] != '#' &&
332
+ !(ascii_only && starts_number_like(text)) &&
333
+ !(ascii_only && strcmp(text, ".") == 0)) {
334
+ lexer->result_symbol = SYMBOL;
335
+ matched = true;
336
+ }
337
+ free(text);
338
+ return matched;
339
+ }
340
+
341
+ bool tree_sitter_lispex_external_scanner_scan(void *payload, TSLexer *lexer,
342
+ const bool *valid_symbols) {
343
+ (void)payload;
344
+ while (is_space(lexer->lookahead)) {
345
+ lexer->advance(lexer, true);
346
+ }
347
+ if (lexer->lookahead == '#') {
348
+ lexer->advance(lexer, false);
349
+ if (lexer->lookahead == '|' && valid_symbols[BLOCK_COMMENT]) {
350
+ return scan_block_comment_after_hash(lexer);
351
+ }
352
+ if (lexer->lookahead == '\\' && valid_symbols[CHARACTER]) {
353
+ return scan_character_after_hash(lexer);
354
+ }
355
+ return scan_hash_token_after_hash(lexer, valid_symbols);
356
+ }
357
+ return scan_atom(lexer, valid_symbols);
358
+ }
@@ -0,0 +1,54 @@
1
+ #ifndef TREE_SITTER_ALLOC_H_
2
+ #define TREE_SITTER_ALLOC_H_
3
+
4
+ #ifdef __cplusplus
5
+ extern "C" {
6
+ #endif
7
+
8
+ #include <stdbool.h>
9
+ #include <stdio.h>
10
+ #include <stdlib.h>
11
+
12
+ // Allow clients to override allocation functions
13
+ #ifdef TREE_SITTER_REUSE_ALLOCATOR
14
+
15
+ extern void *(*ts_current_malloc)(size_t size);
16
+ extern void *(*ts_current_calloc)(size_t count, size_t size);
17
+ extern void *(*ts_current_realloc)(void *ptr, size_t size);
18
+ extern void (*ts_current_free)(void *ptr);
19
+
20
+ #ifndef ts_malloc
21
+ #define ts_malloc ts_current_malloc
22
+ #endif
23
+ #ifndef ts_calloc
24
+ #define ts_calloc ts_current_calloc
25
+ #endif
26
+ #ifndef ts_realloc
27
+ #define ts_realloc ts_current_realloc
28
+ #endif
29
+ #ifndef ts_free
30
+ #define ts_free ts_current_free
31
+ #endif
32
+
33
+ #else
34
+
35
+ #ifndef ts_malloc
36
+ #define ts_malloc malloc
37
+ #endif
38
+ #ifndef ts_calloc
39
+ #define ts_calloc calloc
40
+ #endif
41
+ #ifndef ts_realloc
42
+ #define ts_realloc realloc
43
+ #endif
44
+ #ifndef ts_free
45
+ #define ts_free free
46
+ #endif
47
+
48
+ #endif
49
+
50
+ #ifdef __cplusplus
51
+ }
52
+ #endif
53
+
54
+ #endif // TREE_SITTER_ALLOC_H_
@@ -0,0 +1,291 @@
1
+ #ifndef TREE_SITTER_ARRAY_H_
2
+ #define TREE_SITTER_ARRAY_H_
3
+
4
+ #ifdef __cplusplus
5
+ extern "C" {
6
+ #endif
7
+
8
+ #include "./alloc.h"
9
+
10
+ #include <assert.h>
11
+ #include <stdbool.h>
12
+ #include <stdint.h>
13
+ #include <stdlib.h>
14
+ #include <string.h>
15
+
16
+ #ifdef _MSC_VER
17
+ #pragma warning(push)
18
+ #pragma warning(disable : 4101)
19
+ #elif defined(__GNUC__) || defined(__clang__)
20
+ #pragma GCC diagnostic push
21
+ #pragma GCC diagnostic ignored "-Wunused-variable"
22
+ #endif
23
+
24
+ #define Array(T) \
25
+ struct { \
26
+ T *contents; \
27
+ uint32_t size; \
28
+ uint32_t capacity; \
29
+ }
30
+
31
+ /// Initialize an array.
32
+ #define array_init(self) \
33
+ ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL)
34
+
35
+ /// Create an empty array.
36
+ #define array_new() \
37
+ { NULL, 0, 0 }
38
+
39
+ /// Get a pointer to the element at a given `index` in the array.
40
+ #define array_get(self, _index) \
41
+ (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index])
42
+
43
+ /// Get a pointer to the first element in the array.
44
+ #define array_front(self) array_get(self, 0)
45
+
46
+ /// Get a pointer to the last element in the array.
47
+ #define array_back(self) array_get(self, (self)->size - 1)
48
+
49
+ /// Clear the array, setting its size to zero. Note that this does not free any
50
+ /// memory allocated for the array's contents.
51
+ #define array_clear(self) ((self)->size = 0)
52
+
53
+ /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is
54
+ /// less than the array's current capacity, this function has no effect.
55
+ #define array_reserve(self, new_capacity) \
56
+ _array__reserve((Array *)(self), array_elem_size(self), new_capacity)
57
+
58
+ /// Free any memory allocated for this array. Note that this does not free any
59
+ /// memory allocated for the array's contents.
60
+ #define array_delete(self) _array__delete((Array *)(self))
61
+
62
+ /// Push a new `element` onto the end of the array.
63
+ #define array_push(self, element) \
64
+ (_array__grow((Array *)(self), 1, array_elem_size(self)), \
65
+ (self)->contents[(self)->size++] = (element))
66
+
67
+ /// Increase the array's size by `count` elements.
68
+ /// New elements are zero-initialized.
69
+ #define array_grow_by(self, count) \
70
+ do { \
71
+ if ((count) == 0) break; \
72
+ _array__grow((Array *)(self), count, array_elem_size(self)); \
73
+ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \
74
+ (self)->size += (count); \
75
+ } while (0)
76
+
77
+ /// Append all elements from one array to the end of another.
78
+ #define array_push_all(self, other) \
79
+ array_extend((self), (other)->size, (other)->contents)
80
+
81
+ /// Append `count` elements to the end of the array, reading their values from the
82
+ /// `contents` pointer.
83
+ #define array_extend(self, count, contents) \
84
+ _array__splice( \
85
+ (Array *)(self), array_elem_size(self), (self)->size, \
86
+ 0, count, contents \
87
+ )
88
+
89
+ /// Remove `old_count` elements from the array starting at the given `index`. At
90
+ /// the same index, insert `new_count` new elements, reading their values from the
91
+ /// `new_contents` pointer.
92
+ #define array_splice(self, _index, old_count, new_count, new_contents) \
93
+ _array__splice( \
94
+ (Array *)(self), array_elem_size(self), _index, \
95
+ old_count, new_count, new_contents \
96
+ )
97
+
98
+ /// Insert one `element` into the array at the given `index`.
99
+ #define array_insert(self, _index, element) \
100
+ _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element))
101
+
102
+ /// Remove one element from the array at the given `index`.
103
+ #define array_erase(self, _index) \
104
+ _array__erase((Array *)(self), array_elem_size(self), _index)
105
+
106
+ /// Pop the last element off the array, returning the element by value.
107
+ #define array_pop(self) ((self)->contents[--(self)->size])
108
+
109
+ /// Assign the contents of one array to another, reallocating if necessary.
110
+ #define array_assign(self, other) \
111
+ _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self))
112
+
113
+ /// Swap one array with another
114
+ #define array_swap(self, other) \
115
+ _array__swap((Array *)(self), (Array *)(other))
116
+
117
+ /// Get the size of the array contents
118
+ #define array_elem_size(self) (sizeof *(self)->contents)
119
+
120
+ /// Search a sorted array for a given `needle` value, using the given `compare`
121
+ /// callback to determine the order.
122
+ ///
123
+ /// If an existing element is found to be equal to `needle`, then the `index`
124
+ /// out-parameter is set to the existing value's index, and the `exists`
125
+ /// out-parameter is set to true. Otherwise, `index` is set to an index where
126
+ /// `needle` should be inserted in order to preserve the sorting, and `exists`
127
+ /// is set to false.
128
+ #define array_search_sorted_with(self, compare, needle, _index, _exists) \
129
+ _array__search_sorted(self, 0, compare, , needle, _index, _exists)
130
+
131
+ /// Search a sorted array for a given `needle` value, using integer comparisons
132
+ /// of a given struct field (specified with a leading dot) to determine the order.
133
+ ///
134
+ /// See also `array_search_sorted_with`.
135
+ #define array_search_sorted_by(self, field, needle, _index, _exists) \
136
+ _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists)
137
+
138
+ /// Insert a given `value` into a sorted array, using the given `compare`
139
+ /// callback to determine the order.
140
+ #define array_insert_sorted_with(self, compare, value) \
141
+ do { \
142
+ unsigned _index, _exists; \
143
+ array_search_sorted_with(self, compare, &(value), &_index, &_exists); \
144
+ if (!_exists) array_insert(self, _index, value); \
145
+ } while (0)
146
+
147
+ /// Insert a given `value` into a sorted array, using integer comparisons of
148
+ /// a given struct field (specified with a leading dot) to determine the order.
149
+ ///
150
+ /// See also `array_search_sorted_by`.
151
+ #define array_insert_sorted_by(self, field, value) \
152
+ do { \
153
+ unsigned _index, _exists; \
154
+ array_search_sorted_by(self, field, (value) field, &_index, &_exists); \
155
+ if (!_exists) array_insert(self, _index, value); \
156
+ } while (0)
157
+
158
+ // Private
159
+
160
+ typedef Array(void) Array;
161
+
162
+ /// This is not what you're looking for, see `array_delete`.
163
+ static inline void _array__delete(Array *self) {
164
+ if (self->contents) {
165
+ ts_free(self->contents);
166
+ self->contents = NULL;
167
+ self->size = 0;
168
+ self->capacity = 0;
169
+ }
170
+ }
171
+
172
+ /// This is not what you're looking for, see `array_erase`.
173
+ static inline void _array__erase(Array *self, size_t element_size,
174
+ uint32_t index) {
175
+ assert(index < self->size);
176
+ char *contents = (char *)self->contents;
177
+ memmove(contents + index * element_size, contents + (index + 1) * element_size,
178
+ (self->size - index - 1) * element_size);
179
+ self->size--;
180
+ }
181
+
182
+ /// This is not what you're looking for, see `array_reserve`.
183
+ static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) {
184
+ if (new_capacity > self->capacity) {
185
+ if (self->contents) {
186
+ self->contents = ts_realloc(self->contents, new_capacity * element_size);
187
+ } else {
188
+ self->contents = ts_malloc(new_capacity * element_size);
189
+ }
190
+ self->capacity = new_capacity;
191
+ }
192
+ }
193
+
194
+ /// This is not what you're looking for, see `array_assign`.
195
+ static inline void _array__assign(Array *self, const Array *other, size_t element_size) {
196
+ _array__reserve(self, element_size, other->size);
197
+ self->size = other->size;
198
+ memcpy(self->contents, other->contents, self->size * element_size);
199
+ }
200
+
201
+ /// This is not what you're looking for, see `array_swap`.
202
+ static inline void _array__swap(Array *self, Array *other) {
203
+ Array swap = *other;
204
+ *other = *self;
205
+ *self = swap;
206
+ }
207
+
208
+ /// This is not what you're looking for, see `array_push` or `array_grow_by`.
209
+ static inline void _array__grow(Array *self, uint32_t count, size_t element_size) {
210
+ uint32_t new_size = self->size + count;
211
+ if (new_size > self->capacity) {
212
+ uint32_t new_capacity = self->capacity * 2;
213
+ if (new_capacity < 8) new_capacity = 8;
214
+ if (new_capacity < new_size) new_capacity = new_size;
215
+ _array__reserve(self, element_size, new_capacity);
216
+ }
217
+ }
218
+
219
+ /// This is not what you're looking for, see `array_splice`.
220
+ static inline void _array__splice(Array *self, size_t element_size,
221
+ uint32_t index, uint32_t old_count,
222
+ uint32_t new_count, const void *elements) {
223
+ uint32_t new_size = self->size + new_count - old_count;
224
+ uint32_t old_end = index + old_count;
225
+ uint32_t new_end = index + new_count;
226
+ assert(old_end <= self->size);
227
+
228
+ _array__reserve(self, element_size, new_size);
229
+
230
+ char *contents = (char *)self->contents;
231
+ if (self->size > old_end) {
232
+ memmove(
233
+ contents + new_end * element_size,
234
+ contents + old_end * element_size,
235
+ (self->size - old_end) * element_size
236
+ );
237
+ }
238
+ if (new_count > 0) {
239
+ if (elements) {
240
+ memcpy(
241
+ (contents + index * element_size),
242
+ elements,
243
+ new_count * element_size
244
+ );
245
+ } else {
246
+ memset(
247
+ (contents + index * element_size),
248
+ 0,
249
+ new_count * element_size
250
+ );
251
+ }
252
+ }
253
+ self->size += new_count - old_count;
254
+ }
255
+
256
+ /// A binary search routine, based on Rust's `std::slice::binary_search_by`.
257
+ /// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`.
258
+ #define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \
259
+ do { \
260
+ *(_index) = start; \
261
+ *(_exists) = false; \
262
+ uint32_t size = (self)->size - *(_index); \
263
+ if (size == 0) break; \
264
+ int comparison; \
265
+ while (size > 1) { \
266
+ uint32_t half_size = size / 2; \
267
+ uint32_t mid_index = *(_index) + half_size; \
268
+ comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \
269
+ if (comparison <= 0) *(_index) = mid_index; \
270
+ size -= half_size; \
271
+ } \
272
+ comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \
273
+ if (comparison == 0) *(_exists) = true; \
274
+ else if (comparison < 0) *(_index) += 1; \
275
+ } while (0)
276
+
277
+ /// Helper macro for the `_sorted_by` routines below. This takes the left (existing)
278
+ /// parameter by reference in order to work with the generic sorting function above.
279
+ #define _compare_int(a, b) ((int)*(a) - (int)(b))
280
+
281
+ #ifdef _MSC_VER
282
+ #pragma warning(pop)
283
+ #elif defined(__GNUC__) || defined(__clang__)
284
+ #pragma GCC diagnostic pop
285
+ #endif
286
+
287
+ #ifdef __cplusplus
288
+ }
289
+ #endif
290
+
291
+ #endif // TREE_SITTER_ARRAY_H_