tree-sitter-ssh-client-config 2026.3.12 → 2026.4.2
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/package.json +2 -2
- package/src/parser.c +1 -1
- package/src/tree_sitter/array.h +110 -71
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tree-sitter-ssh-client-config",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.4.2",
|
|
4
4
|
"description": "tree-sitter grammar for SSH client configuration files",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"parser",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"tree-sitter-cli": "0.
|
|
48
|
+
"tree-sitter-cli": "0.26.7",
|
|
49
49
|
"prebuildify": "^6.0.1"
|
|
50
50
|
},
|
|
51
51
|
"files": [
|
package/src/parser.c
CHANGED
package/src/tree_sitter/array.h
CHANGED
|
@@ -52,67 +52,96 @@ extern "C" {
|
|
|
52
52
|
|
|
53
53
|
/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is
|
|
54
54
|
/// less than the array's current capacity, this function has no effect.
|
|
55
|
-
#define array_reserve(self, new_capacity)
|
|
56
|
-
|
|
55
|
+
#define array_reserve(self, new_capacity) \
|
|
56
|
+
((self)->contents = _array__reserve( \
|
|
57
|
+
(void *)(self)->contents, &(self)->capacity, \
|
|
58
|
+
array_elem_size(self), new_capacity) \
|
|
59
|
+
)
|
|
57
60
|
|
|
58
61
|
/// Free any memory allocated for this array. Note that this does not free any
|
|
59
62
|
/// memory allocated for the array's contents.
|
|
60
|
-
#define array_delete(self)
|
|
63
|
+
#define array_delete(self) \
|
|
64
|
+
do { \
|
|
65
|
+
if ((self)->contents) ts_free((self)->contents); \
|
|
66
|
+
(self)->contents = NULL; \
|
|
67
|
+
(self)->size = 0; \
|
|
68
|
+
(self)->capacity = 0; \
|
|
69
|
+
} while (0)
|
|
61
70
|
|
|
62
71
|
/// Push a new `element` onto the end of the array.
|
|
63
|
-
#define array_push(self, element)
|
|
64
|
-
|
|
65
|
-
|
|
72
|
+
#define array_push(self, element) \
|
|
73
|
+
do { \
|
|
74
|
+
(self)->contents = _array__grow( \
|
|
75
|
+
(void *)(self)->contents, (self)->size, &(self)->capacity, \
|
|
76
|
+
1, array_elem_size(self) \
|
|
77
|
+
); \
|
|
78
|
+
(self)->contents[(self)->size++] = (element); \
|
|
79
|
+
} while(0)
|
|
66
80
|
|
|
67
81
|
/// Increase the array's size by `count` elements.
|
|
68
82
|
/// New elements are zero-initialized.
|
|
69
|
-
#define array_grow_by(self, count)
|
|
70
|
-
do {
|
|
71
|
-
if ((count) == 0) break;
|
|
72
|
-
|
|
83
|
+
#define array_grow_by(self, count) \
|
|
84
|
+
do { \
|
|
85
|
+
if ((count) == 0) break; \
|
|
86
|
+
(self)->contents = _array__grow( \
|
|
87
|
+
(self)->contents, (self)->size, &(self)->capacity, \
|
|
88
|
+
count, array_elem_size(self) \
|
|
89
|
+
); \
|
|
73
90
|
memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \
|
|
74
|
-
(self)->size += (count);
|
|
91
|
+
(self)->size += (count); \
|
|
75
92
|
} while (0)
|
|
76
93
|
|
|
77
94
|
/// Append all elements from one array to the end of another.
|
|
78
|
-
#define array_push_all(self, other)
|
|
95
|
+
#define array_push_all(self, other) \
|
|
79
96
|
array_extend((self), (other)->size, (other)->contents)
|
|
80
97
|
|
|
81
98
|
/// Append `count` elements to the end of the array, reading their values from the
|
|
82
99
|
/// `contents` pointer.
|
|
83
|
-
#define array_extend(self, count,
|
|
84
|
-
_array__splice(
|
|
85
|
-
(
|
|
86
|
-
0, count,
|
|
100
|
+
#define array_extend(self, count, other_contents) \
|
|
101
|
+
(self)->contents = _array__splice( \
|
|
102
|
+
(void*)(self)->contents, &(self)->size, &(self)->capacity, \
|
|
103
|
+
array_elem_size(self), (self)->size, 0, count, other_contents \
|
|
87
104
|
)
|
|
88
105
|
|
|
89
106
|
/// Remove `old_count` elements from the array starting at the given `index`. At
|
|
90
107
|
/// the same index, insert `new_count` new elements, reading their values from the
|
|
91
108
|
/// `new_contents` pointer.
|
|
92
|
-
#define array_splice(self, _index, old_count, new_count, new_contents)
|
|
93
|
-
_array__splice(
|
|
94
|
-
(
|
|
95
|
-
old_count, new_count, new_contents
|
|
109
|
+
#define array_splice(self, _index, old_count, new_count, new_contents) \
|
|
110
|
+
(self)->contents = _array__splice( \
|
|
111
|
+
(void *)(self)->contents, &(self)->size, &(self)->capacity, \
|
|
112
|
+
array_elem_size(self), _index, old_count, new_count, new_contents \
|
|
96
113
|
)
|
|
97
114
|
|
|
98
115
|
/// Insert one `element` into the array at the given `index`.
|
|
99
|
-
#define array_insert(self, _index, element)
|
|
100
|
-
|
|
116
|
+
#define array_insert(self, _index, element) \
|
|
117
|
+
(self)->contents = _array__splice( \
|
|
118
|
+
(void *)(self)->contents, &(self)->size, &(self)->capacity, \
|
|
119
|
+
array_elem_size(self), _index, 0, 1, &(element) \
|
|
120
|
+
)
|
|
101
121
|
|
|
102
122
|
/// Remove one element from the array at the given `index`.
|
|
103
123
|
#define array_erase(self, _index) \
|
|
104
|
-
_array__erase((
|
|
124
|
+
_array__erase((void *)(self)->contents, &(self)->size, array_elem_size(self), _index)
|
|
105
125
|
|
|
106
126
|
/// Pop the last element off the array, returning the element by value.
|
|
107
127
|
#define array_pop(self) ((self)->contents[--(self)->size])
|
|
108
128
|
|
|
109
129
|
/// Assign the contents of one array to another, reallocating if necessary.
|
|
110
|
-
#define array_assign(self, other)
|
|
111
|
-
|
|
130
|
+
#define array_assign(self, other) \
|
|
131
|
+
(self)->contents = _array__assign( \
|
|
132
|
+
(void *)(self)->contents, &(self)->size, &(self)->capacity, \
|
|
133
|
+
(const void *)(other)->contents, (other)->size, array_elem_size(self) \
|
|
134
|
+
)
|
|
112
135
|
|
|
113
136
|
/// Swap one array with another
|
|
114
|
-
#define array_swap(self, other)
|
|
115
|
-
|
|
137
|
+
#define array_swap(self, other) \
|
|
138
|
+
do { \
|
|
139
|
+
void *_array_swap_tmp = (void *)(self)->contents; \
|
|
140
|
+
(self)->contents = (other)->contents; \
|
|
141
|
+
(other)->contents = _array_swap_tmp; \
|
|
142
|
+
_array__swap(&(self)->size, &(self)->capacity, \
|
|
143
|
+
&(other)->size, &(other)->capacity); \
|
|
144
|
+
} while (0)
|
|
116
145
|
|
|
117
146
|
/// Get the size of the array contents
|
|
118
147
|
#define array_elem_size(self) (sizeof *(self)->contents)
|
|
@@ -157,82 +186,90 @@ extern "C" {
|
|
|
157
186
|
|
|
158
187
|
// Private
|
|
159
188
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
self->contents = NULL;
|
|
167
|
-
self->size = 0;
|
|
168
|
-
self->capacity = 0;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
189
|
+
// Pointers to individual `Array` fields (rather than the entire `Array` itself)
|
|
190
|
+
// are passed to the various `_array__*` functions below to address strict aliasing
|
|
191
|
+
// violations that arises when the _entire_ `Array` struct is passed as `Array(void)*`.
|
|
192
|
+
//
|
|
193
|
+
// The `Array` type itself was not altered as a solution in order to avoid breakage
|
|
194
|
+
// with existing consumers (in particular, parsers with external scanners).
|
|
171
195
|
|
|
172
196
|
/// This is not what you're looking for, see `array_erase`.
|
|
173
|
-
static inline void _array__erase(
|
|
174
|
-
uint32_t index) {
|
|
175
|
-
assert(index <
|
|
176
|
-
char *contents = (char *)
|
|
197
|
+
static inline void _array__erase(void* self_contents, uint32_t *size,
|
|
198
|
+
size_t element_size, uint32_t index) {
|
|
199
|
+
assert(index < *size);
|
|
200
|
+
char *contents = (char *)self_contents;
|
|
177
201
|
memmove(contents + index * element_size, contents + (index + 1) * element_size,
|
|
178
|
-
(
|
|
179
|
-
|
|
202
|
+
(*size - index - 1) * element_size);
|
|
203
|
+
(*size)--;
|
|
180
204
|
}
|
|
181
205
|
|
|
182
206
|
/// This is not what you're looking for, see `array_reserve`.
|
|
183
|
-
static inline void _array__reserve(
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
207
|
+
static inline void *_array__reserve(void *contents, uint32_t *capacity,
|
|
208
|
+
size_t element_size, uint32_t new_capacity) {
|
|
209
|
+
void *new_contents = contents;
|
|
210
|
+
if (new_capacity > *capacity) {
|
|
211
|
+
if (contents) {
|
|
212
|
+
new_contents = ts_realloc(contents, new_capacity * element_size);
|
|
187
213
|
} else {
|
|
188
|
-
|
|
214
|
+
new_contents = ts_malloc(new_capacity * element_size);
|
|
189
215
|
}
|
|
190
|
-
|
|
216
|
+
*capacity = new_capacity;
|
|
191
217
|
}
|
|
218
|
+
return new_contents;
|
|
192
219
|
}
|
|
193
220
|
|
|
194
221
|
/// This is not what you're looking for, see `array_assign`.
|
|
195
|
-
static inline void _array__assign(
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
222
|
+
static inline void *_array__assign(void* self_contents, uint32_t *self_size, uint32_t *self_capacity,
|
|
223
|
+
const void *other_contents, uint32_t other_size, size_t element_size) {
|
|
224
|
+
void *new_contents = _array__reserve(self_contents, self_capacity, element_size, other_size);
|
|
225
|
+
*self_size = other_size;
|
|
226
|
+
memcpy(new_contents, other_contents, *self_size * element_size);
|
|
227
|
+
return new_contents;
|
|
199
228
|
}
|
|
200
229
|
|
|
201
230
|
/// This is not what you're looking for, see `array_swap`.
|
|
202
|
-
static inline void _array__swap(
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
231
|
+
static inline void _array__swap(uint32_t *self_size, uint32_t *self_capacity,
|
|
232
|
+
uint32_t *other_size, uint32_t *other_capacity) {
|
|
233
|
+
uint32_t tmp_size = *self_size;
|
|
234
|
+
uint32_t tmp_capacity = *self_capacity;
|
|
235
|
+
*self_size = *other_size;
|
|
236
|
+
*self_capacity = *other_capacity;
|
|
237
|
+
*other_size = tmp_size;
|
|
238
|
+
*other_capacity = tmp_capacity;
|
|
206
239
|
}
|
|
207
240
|
|
|
208
241
|
/// This is not what you're looking for, see `array_push` or `array_grow_by`.
|
|
209
|
-
static inline void _array__grow(
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
242
|
+
static inline void *_array__grow(void *contents, uint32_t size, uint32_t *capacity,
|
|
243
|
+
uint32_t count, size_t element_size) {
|
|
244
|
+
void *new_contents = contents;
|
|
245
|
+
uint32_t new_size = size + count;
|
|
246
|
+
if (new_size > *capacity) {
|
|
247
|
+
uint32_t new_capacity = *capacity * 2;
|
|
213
248
|
if (new_capacity < 8) new_capacity = 8;
|
|
214
249
|
if (new_capacity < new_size) new_capacity = new_size;
|
|
215
|
-
_array__reserve(
|
|
250
|
+
new_contents = _array__reserve(contents, capacity, element_size, new_capacity);
|
|
216
251
|
}
|
|
252
|
+
return new_contents;
|
|
217
253
|
}
|
|
218
254
|
|
|
219
255
|
/// This is not what you're looking for, see `array_splice`.
|
|
220
|
-
static inline void _array__splice(
|
|
256
|
+
static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t *capacity,
|
|
257
|
+
size_t element_size,
|
|
221
258
|
uint32_t index, uint32_t old_count,
|
|
222
259
|
uint32_t new_count, const void *elements) {
|
|
223
|
-
uint32_t new_size =
|
|
260
|
+
uint32_t new_size = *size + new_count - old_count;
|
|
224
261
|
uint32_t old_end = index + old_count;
|
|
225
262
|
uint32_t new_end = index + new_count;
|
|
226
|
-
assert(old_end <=
|
|
263
|
+
assert(old_end <= *size);
|
|
227
264
|
|
|
228
|
-
_array__reserve(
|
|
265
|
+
void *new_contents = _array__reserve(self_contents, capacity, element_size, new_size);
|
|
229
266
|
|
|
230
|
-
char *contents = (char *)
|
|
231
|
-
if (
|
|
267
|
+
char *contents = (char *)new_contents;
|
|
268
|
+
if (*size > old_end) {
|
|
232
269
|
memmove(
|
|
233
270
|
contents + new_end * element_size,
|
|
234
271
|
contents + old_end * element_size,
|
|
235
|
-
(
|
|
272
|
+
(*size - old_end) * element_size
|
|
236
273
|
);
|
|
237
274
|
}
|
|
238
275
|
if (new_count > 0) {
|
|
@@ -250,7 +287,9 @@ static inline void _array__splice(Array *self, size_t element_size,
|
|
|
250
287
|
);
|
|
251
288
|
}
|
|
252
289
|
}
|
|
253
|
-
|
|
290
|
+
*size += new_count - old_count;
|
|
291
|
+
|
|
292
|
+
return new_contents;
|
|
254
293
|
}
|
|
255
294
|
|
|
256
295
|
/// A binary search routine, based on Rust's `std::slice::binary_search_by`.
|