1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
| | /* Tree-sitter integration for GNU Emacs.
Copyright (C) 2021-2022 Free Software Foundation, Inc.
This file is part of GNU Emacs.
GNU Emacs is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.
GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
#include "lisp.h"
#include "buffer.h"
#include "treesit.h"
/* Commentary
The Emacs wrapper of tree-sitter does not expose everything the C
API provides, most notably:
- It doesn't expose a syntax tree, we put the syntax tree in the
parser object, and updating the tree is handled in the C level.
- We don't expose tree cursor either. I think Lisp is slow enough
to nullify any performance advantage of using a cursor, though I
don't have evidence. Also I want to minimize the number of new
types we introduce, currently we only add parser and node type.
- Because updating the change is handled in the C level as each
change is made in the buffer, there is no way for Lisp to update
a node. But since we can just retrieve a new node, it shouldn't
be a limitation.
- I didn't expose setting timeout and cancellation flag for a
parser, mainly because I don't think they are really necessary
in Emacs' use cases.
- Many tree-sitter functions asks for a TSPoint, basically a (row,
column) location. Emacs uses a gap buffer and keeps no
information about row and column position. According to the
author of tree-sitter, tree-sitter only asks for (row, column)
position to carry it around and return back to the user later;
and the real position used is the byte position. He also said
that he _think_ that it will work to use byte position only.
That's why whenever a TSPoint is asked, we pass a dummy one to
it. Judging by the nature of parsing algorithms, I think it is
safe to use only byte position, and I don't think this will
change in the future.
REF: https://github.com/tree-sitter/tree-sitter/issues/445
treesit.h has some commentary on the two main data structure
for the parser and node. ts_ensure_position_synced has some
commentary on how do we make tree-sitter play well with narrowing
(tree-sitter parser only sees the visible region, so we need to
translate positions back and forth). Most action happens in
ts_ensure_parsed, ts_read_buffer and ts_record_change.
A complete correspondence list between tree-sitter functions and
exposed Lisp functions can be found in the manual (elisp)API
Correspondence.
Placement of CHECK_xxx functions: call CHECK_xxx before using any
unchecked Lisp values; these include argument of Lisp functions,
return value of Fsymbol_value, car of a cons.
Initializing tree-sitter: there are two entry points to tree-sitter
functions: 'treesit-parser-create' and
'treesit-language-available-p'. Therefore we only need to call
initialization function in those two functions.
Tree-sitter offset (0-based) and buffer position (1-based):
tree-sitter offset + buffer position = buffer position
buffer position - buffer position = tree-sitter offset
Tree-sitter-related code in other files:
- src/alloc.c for gc for parser and node
- src/casefiddle.c & src/insdel.c for notifying tree-sitter
parser of buffer changes.
- lisp/emacs-lisp/cl-preloaded.el & data.c & lisp.h for parser and
node type.
*/
/*** Initialization */
bool ts_initialized = false;
static void *
ts_calloc_wrapper (size_t n, size_t size)
{
return xzalloc (n * size);
}
static void
ts_initialize ()
{
if (!ts_initialized)
{
ts_set_allocator (xmalloc, ts_calloc_wrapper, xrealloc, xfree);
ts_initialized = true;
}
}
/*** Loading language library */
/* Translates a symbol treesit-<lang> to a C name
treesit_<lang>. */
static void
ts_symbol_to_c_name (char *symbol_name)
{
for (int idx=0; idx < strlen (symbol_name); idx++)
{
if (symbol_name[idx] == '-')
symbol_name[idx] = '_';
}
}
static bool
ts_find_override_name
(Lisp_Object language_symbol, Lisp_Object *name, Lisp_Object *c_symbol)
{
for (Lisp_Object list = Vtreesit_load_name_override_list;
!NILP (list); list = XCDR (list))
{
Lisp_Object lang = XCAR (XCAR (list));
CHECK_SYMBOL (lang);
if (EQ (lang, language_symbol))
{
*name = Fnth (make_fixnum (1), XCAR (list));
CHECK_STRING (*name);
*c_symbol = Fnth (make_fixnum (2), XCAR (list));
CHECK_STRING (*c_symbol);
return true;
}
}
return false;
}
/* For example, if Vdynamic_library_suffixes is (".so", ".dylib"),
thsi function pushes "lib_base_name.so" and "lib_base_name.dylib"
into *path_candidates. Obiviously path_candidates should be a Lisp
list of Lisp strings. */
static void
ts_load_language_push_for_each_suffix
(Lisp_Object lib_base_name, Lisp_Object *path_candidates)
{
for (Lisp_Object suffixes = Vdynamic_library_suffixes;
!NILP (suffixes); suffixes = XCDR (suffixes)) {
*path_candidates = Fcons (concat2 (lib_base_name, XCAR (suffixes)),
*path_candidates);
}
}
/* Load the dynamic library of LANGUAGE_SYMBOL and return the pointer
to the language definition. Signals
Qtreesit_load_language_error if something goes wrong.
Qtreesit_load_language_error carries the error message from
trying to load the library with each extension.
If SIGNAL is true, signal an error when failed to load LANGUAGE; if
false, return NULL when failed. */
static TSLanguage *
ts_load_language (Lisp_Object language_symbol, bool signal)
{
Lisp_Object symbol_name = Fsymbol_name (language_symbol);
/* Figure out the library name and C name. */
Lisp_Object lib_base_name =
(concat2 (build_pure_c_string ("libtree-sitter-"), symbol_name));
Lisp_Object base_name =
(concat2 (build_pure_c_string ("tree-sitter-"), symbol_name));
char *c_name = strdup (SSDATA (base_name));
ts_symbol_to_c_name (c_name);
/* Override the library name and C name, if appropriate. */
Lisp_Object override_name;
Lisp_Object override_c_name;
bool found_override = ts_find_override_name
(language_symbol, &override_name, &override_c_name);
if (found_override)
{
lib_base_name = override_name;
c_name = SSDATA (override_c_name);
}
/* Now we generate a list of possible library paths. */
Lisp_Object path_candidates = Qnil;
/* First push just the filenames to the candidate list, which will
make dynlib_open look under standard system load paths. */
ts_load_language_push_for_each_suffix
(lib_base_name, &path_candidates);
/* Then push ~/.emacs.d/tree-sitter paths. */
ts_load_language_push_for_each_suffix
(Fexpand_file_name
(concat2 (build_string ("tree-sitter/"), lib_base_name),
Fsymbol_value (Quser_emacs_directory)),
&path_candidates);
/* Then push paths from treesit-extra-load-path. */
for (Lisp_Object tail = Freverse (Vtreesit_extra_load_path);
!NILP (tail); tail = XCDR (tail))
{
ts_load_language_push_for_each_suffix
(Fexpand_file_name (lib_base_name, XCAR (tail)),
&path_candidates);
}
/* Try loading the dynamic library by each path candidate. Stop
when succeed, record the error message and try the next one when
fail. */
dynlib_handle_ptr handle;
char const *error;
Lisp_Object error_list = Qnil;
for (Lisp_Object tail = path_candidates;
!NILP (tail); tail = XCDR (tail))
{
char *library_name = SSDATA (XCAR (tail));
dynlib_error ();
handle = dynlib_open (library_name);
error = dynlib_error ();
if (error == NULL)
break;
else
error_list = Fcons (build_string (error), error_list);
}
if (error != NULL)
{
if (signal)
xsignal2 (Qtreesit_load_language_error,
symbol_name, Fnreverse (error_list));
else
return NULL;
}
/* Load TSLanguage. */
dynlib_error ();
TSLanguage *(*langfn) (void);
langfn = dynlib_sym (handle, c_name);
error = dynlib_error ();
if (error != NULL)
{
if (signal)
xsignal1 (Qtreesit_load_language_error,
build_string (error));
else
return NULL;
}
TSLanguage *lang = (*langfn) ();
/* Check if language version matches tree-sitter version. */
TSParser *parser = ts_parser_new ();
bool success = ts_parser_set_language (parser, lang);
ts_parser_delete (parser);
if (!success)
{
if (signal)
xsignal2 (Qtreesit_load_language_error,
build_pure_c_string ("Language version doesn't match tree-sitter version, language version:"),
make_fixnum (ts_language_version (lang)));
else
return NULL;
}
return lang;
}
DEFUN ("treesit-language-available-p",
Ftreesit_langauge_available_p,
Streesit_language_available_p,
1, 1, 0,
doc: /* Return non-nil if LANGUAGE exists and is loadable. */)
(Lisp_Object language)
{
CHECK_SYMBOL (language);
ts_initialize ();
if (ts_load_language(language, false) == NULL)
return Qnil;
else
return Qt;
}
/*** Parsing functions */
/* An auxiliary function that saves a few lines of code. Assumes TREE
is not NULL. */
static inline void
ts_tree_edit_1 (TSTree *tree, ptrdiff_t start_byte,
ptrdiff_t old_end_byte, ptrdiff_t new_end_byte)
{
TSPoint dummy_point = {0, 0};
TSInputEdit edit = {(uint32_t) start_byte,
(uint32_t) old_end_byte,
(uint32_t) new_end_byte,
dummy_point, dummy_point, dummy_point};
ts_tree_edit (tree, &edit);
}
/* Update each parser's tree after the user made an edit. This
function does not parse the buffer and only updates the tree. (So it
should be very fast.) */
void
ts_record_change (ptrdiff_t start_byte, ptrdiff_t old_end_byte,
ptrdiff_t new_end_byte)
{
for (Lisp_Object parser_list =
Fsymbol_value (Qtreesit_parser_list);
!NILP (parser_list);
parser_list = XCDR (parser_list))
{
CHECK_CONS (parser_list);
Lisp_Object lisp_parser = XCAR (parser_list);
CHECK_TS_PARSER (lisp_parser);
TSTree *tree = XTS_PARSER (lisp_parser)->tree;
if (tree != NULL)
{
eassert (start_byte <= old_end_byte);
eassert (start_byte <= new_end_byte);
/* Think the recorded change as a delete followed by an
insert, and think of them as moving unchanged text back
and forth. After all, the whole point of updating the
tree is to update the position of unchanged text. */
ptrdiff_t bytes_del = old_end_byte - start_byte;
ptrdiff_t bytes_ins = new_end_byte - start_byte;
ptrdiff_t visible_beg = XTS_PARSER (lisp_parser)->visible_beg;
ptrdiff_t visible_end = XTS_PARSER (lisp_parser)->visible_end;
ptrdiff_t affected_start =
max (visible_beg, start_byte) - visible_beg;
ptrdiff_t affected_old_end =
min (visible_end, affected_start + bytes_del);
ptrdiff_t affected_new_end =
affected_start + bytes_ins;
ts_tree_edit_1 (tree, affected_start, affected_old_end,
affected_new_end);
XTS_PARSER (lisp_parser)->visible_end = affected_new_end;
XTS_PARSER (lisp_parser)->need_reparse = true;
XTS_PARSER (lisp_parser)->timestamp++;
}
}
}
static void
ts_ensure_position_synced (Lisp_Object parser)
{
TSTree *tree = XTS_PARSER (parser)->tree;
if (tree == NULL)
return;
struct buffer *buffer = XBUFFER (XTS_PARSER (parser)->buffer);
ptrdiff_t visible_beg = XTS_PARSER (parser)->visible_beg;
ptrdiff_t visible_end = XTS_PARSER (parser)->visible_end;
/* Before we parse or set ranges, catch up with the narrowing
situation. We change visible_beg and visible_end to match
BUF_BEGV_BYTE and BUF_ZV_BYTE, and inform tree-sitter of the
change. We want to move the visible range of tree-sitter to
match the narrowed range. For example,
from ________|xxxx|__
to |xxxx|__________ */
/* 1. Make sure visible_beg <= BUF_BEGV_BYTE. */
if (visible_beg > BUF_BEGV_BYTE (buffer))
{
/* Tree-sitter sees: insert at the beginning. */
ts_tree_edit_1 (tree, 0, 0, visible_beg - BUF_BEGV_BYTE (buffer));
visible_beg = BUF_BEGV_BYTE (buffer);
}
/* 2. Make sure visible_end = BUF_ZV_BYTE. */
if (visible_end < BUF_ZV_BYTE (buffer))
{
/* Tree-sitter sees: insert at the end. */
ts_tree_edit_1 (tree, visible_end - visible_beg,
visible_end - visible_beg,
BUF_ZV_BYTE (buffer) - visible_beg);
visible_end = BUF_ZV_BYTE (buffer);
}
else if (visible_end > BUF_ZV_BYTE (buffer))
{
/* Tree-sitter sees: delete at the end. */
ts_tree_edit_1 (tree, BUF_ZV_BYTE (buffer) - visible_beg,
visible_end - visible_beg,
BUF_ZV_BYTE (buffer) - visible_beg);
visible_end = BUF_ZV_BYTE (buffer);
}
/* 3. Make sure visible_beg = BUF_BEGV_BYTE. */
if (visible_beg < BUF_BEGV_BYTE (buffer))
{
/* Tree-sitter sees: delete at the beginning. */
ts_tree_edit_1 (tree, 0, BUF_BEGV_BYTE (buffer) - visible_beg, 0);
visible_beg = BUF_BEGV_BYTE (buffer);
}
eassert (0 <= visible_beg);
eassert (visible_beg <= visible_end);
XTS_PARSER (parser)->visible_beg = visible_beg;
XTS_PARSER (parser)->visible_end = visible_end;
}
static void
ts_check_buffer_size (struct buffer *buffer)
{
ptrdiff_t buffer_size =
(BUF_Z (buffer) - BUF_BEG (buffer));
if (buffer_size > UINT32_MAX)
xsignal2 (Qtreesit_buffer_too_large,
build_pure_c_string ("Buffer size too large, size:"),
make_fixnum (buffer_size));
}
/* Parse the buffer. We don't parse until we have to. When we have
to, we call this function to parse and update the tree. */
static void
ts_ensure_parsed (Lisp_Object parser)
{
if (!XTS_PARSER (parser)->need_reparse)
return;
TSParser *ts_parser = XTS_PARSER (parser)->parser;
TSTree *tree = XTS_PARSER(parser)->tree;
TSInput input = XTS_PARSER (parser)->input;
struct buffer *buffer = XBUFFER (XTS_PARSER (parser)->buffer);
ts_check_buffer_size (buffer);
/* Before we parse, catch up with the narrowing situation. */
ts_ensure_position_synced (parser);
TSTree *new_tree = ts_parser_parse(ts_parser, tree, input);
/* This should be very rare (impossible, really): it only happens
when 1) language is not set (impossible in Emacs because the user
has to supply a language to create a parser), 2) parse canceled
due to timeout (impossible because we don't set a timeout), 3)
parse canceled due to cancellation flag (impossible because we
don't set the flag). (See comments for ts_parser_parse in
tree_sitter/api.h.) */
if (new_tree == NULL)
{
Lisp_Object buf;
XSETBUFFER (buf, buffer);
xsignal1 (Qtreesit_parse_error, buf);
}
ts_tree_delete (tree);
XTS_PARSER (parser)->tree = new_tree;
XTS_PARSER (parser)->need_reparse = false;
}
/* This is the read function provided to tree-sitter to read from a
buffer. It reads one character at a time and automatically skips
the gap. */
static const char*
ts_read_buffer (void *parser, uint32_t byte_index,
TSPoint position, uint32_t *bytes_read)
{
struct buffer *buffer =
XBUFFER (((struct Lisp_TS_Parser *) parser)->buffer);
ptrdiff_t visible_beg = ((struct Lisp_TS_Parser *) parser)->visible_beg;
ptrdiff_t visible_end = ((struct Lisp_TS_Parser *) parser)->visible_end;
ptrdiff_t byte_pos = byte_index + visible_beg;
/* We will make sure visible_beg = BUF_BEGV_BYTE before re-parse (in
ts_ensure_parsed), so byte_pos will never be smaller than
BUF_BEG_BYTE. */
eassert (visible_beg = BUF_BEGV_BYTE (buffer));
eassert (visible_end = BUF_ZV_BYTE (buffer));
/* Read one character. Tree-sitter wants us to set bytes_read to 0
if it reads to the end of buffer. It doesn't say what it wants
for the return value in that case, so we just give it an empty
string. */
char *beg;
int len;
/* This function could run from a user command, so it is better to
do nothing instead of raising an error. (It was a pain in the a**
to decrypt mega-if-conditions in Emacs source, so I wrote the two
branches separately.) */
if (!BUFFER_LIVE_P (buffer))
{
beg = NULL;
len = 0;
}
/* Reached visible end-of-buffer, tell tree-sitter to read no more. */
else if (byte_pos >= visible_end)
{
beg = NULL;
len = 0;
}
/* Normal case, read a character. */
else
{
beg = (char *) BUF_BYTE_ADDRESS (buffer, byte_pos);
len = BYTES_BY_CHAR_HEAD ((int) *beg);
}
*bytes_read = (uint32_t) len;
return beg;
}
/*** Functions for parser and node object*/
/* Wrap the parser in a Lisp_Object to be used in the Lisp machine. */
Lisp_Object
make_ts_parser (Lisp_Object buffer, TSParser *parser,
TSTree *tree, Lisp_Object language_symbol)
{
struct Lisp_TS_Parser *lisp_parser
= ALLOCATE_PSEUDOVECTOR
(struct Lisp_TS_Parser, buffer, PVEC_TS_PARSER);
lisp_parser->language_symbol = language_symbol;
lisp_parser->buffer = buffer;
lisp_parser->parser = parser;
lisp_parser->tree = tree;
TSInput input = {lisp_parser, ts_read_buffer, TSInputEncodingUTF8};
lisp_parser->input = input;
lisp_parser->need_reparse = true;
lisp_parser->visible_beg = BUF_BEGV (XBUFFER (buffer));
lisp_parser->visible_end = BUF_ZV (XBUFFER (buffer));
return make_lisp_ptr (lisp_parser, Lisp_Vectorlike);
}
/* Wrap the node in a Lisp_Object to be used in the Lisp machine. */
Lisp_Object
make_ts_node (Lisp_Object parser, TSNode node)
{
struct Lisp_TS_Node *lisp_node
= ALLOCATE_PSEUDOVECTOR (struct Lisp_TS_Node, parser, PVEC_TS_NODE);
lisp_node->parser = parser;
lisp_node->node = node;
lisp_node->timestamp = XTS_PARSER (parser)->timestamp;
return make_lisp_ptr (lisp_node, Lisp_Vectorlike);
}
DEFUN ("treesit-parser-p",
Ftreesit_parser_p, Streesit_parser_p, 1, 1, 0,
doc: /* Return t if OBJECT is a tree-sitter parser. */)
(Lisp_Object object)
{
if (TS_PARSERP (object))
return Qt;
else
return Qnil;
}
DEFUN ("treesit-node-p",
Ftreesit_node_p, Streesit_node_p, 1, 1, 0,
doc: /* Return t if OBJECT is a tree-sitter node. */)
(Lisp_Object object)
{
if (TS_NODEP (object))
return Qt;
else
return Qnil;
}
DEFUN ("treesit-node-parser",
Ftreesit_node_parser, Streesit_node_parser,
1, 1, 0,
doc: /* Return the parser to which NODE belongs. */)
(Lisp_Object node)
{
CHECK_TS_NODE (node);
return XTS_NODE (node)->parser;
}
DEFUN ("treesit-parser-create",
Ftreesit_parser_create, Streesit_parser_create,
2, 2, 0,
doc: /* Create and return a parser in BUFFER for LANGUAGE.
The parser is automatically added to BUFFER's
`treesit-parser-list'. LANGUAGE should be the symbol of a
function provided by a tree-sitter language dynamic module, e.g.,
'treesit-json. If BUFFER is nil, use the current buffer. */)
(Lisp_Object buffer, Lisp_Object language)
{
if (NILP (buffer))
buffer = Fcurrent_buffer ();
CHECK_BUFFER (buffer);
CHECK_SYMBOL (language);
ts_check_buffer_size (XBUFFER (buffer));
ts_initialize ();
TSParser *parser = ts_parser_new ();
TSLanguage *lang = ts_load_language (language, true);
/* We check language version when loading a language, so this should
always succeed. */
ts_parser_set_language (parser, lang);
Lisp_Object lisp_parser
= make_ts_parser (buffer, parser, NULL, language);
struct buffer *old_buffer = current_buffer;
set_buffer_internal (XBUFFER (buffer));
Fset (Qtreesit_parser_list,
Fcons (lisp_parser, Fsymbol_value (Qtreesit_parser_list)));
set_buffer_internal (old_buffer);
return lisp_parser;
}
DEFUN ("treesit-parser-buffer",
Ftreesit_parser_buffer, Streesit_parser_buffer,
1, 1, 0,
doc: /* Return the buffer of PARSER. */)
(Lisp_Object parser)
{
CHECK_TS_PARSER (parser);
Lisp_Object buf;
XSETBUFFER (buf, XBUFFER (XTS_PARSER (parser)->buffer));
return buf;
}
DEFUN ("treesit-parser-language",
Ftreesit_parser_language, Streesit_parser_language,
1, 1, 0,
doc: /* Return parser's language symbol.
This symbol is the one used to create the parser. */)
(Lisp_Object parser)
{
CHECK_TS_PARSER (parser);
return XTS_PARSER (parser)->language_symbol;
}
/*** Parser API */
DEFUN ("treesit-parser-root-node",
Ftreesit_parser_root_node, Streesit_parser_root_node,
1, 1, 0,
doc: /* Return the root node of PARSER. */)
(Lisp_Object parser)
{
CHECK_TS_PARSER (parser);
ts_ensure_parsed (parser);
TSNode root_node = ts_tree_root_node (XTS_PARSER (parser)->tree);
return make_ts_node (parser, root_node);
}
/* Checks that the RANGES argument of
treesit-parser-set-included-ranges is valid. */
static void
ts_check_range_argument (Lisp_Object ranges)
{
EMACS_INT last_point = 1;
for (Lisp_Object tail = ranges;
!NILP (tail); tail = XCDR (tail))
{
CHECK_CONS (tail);
Lisp_Object range = XCAR (tail);
CHECK_CONS (range);
CHECK_FIXNUM (XCAR (range));
CHECK_FIXNUM (XCDR (range));
EMACS_INT beg = XFIXNUM (XCAR (range));
EMACS_INT end = XFIXNUM (XCDR (range));
/* TODO: Maybe we should check for point-min/max, too? */
if (!(last_point <= beg && beg <= end))
xsignal2 (Qtreesit_range_invalid,
build_pure_c_string
("RANGE is either overlapping or out-of-order"),
ranges);
last_point = end;
}
}
DEFUN ("treesit-parser-set-included-ranges",
Ftreesit_parser_set_included_ranges,
Streesit_parser_set_included_ranges,
2, 2, 0,
doc: /* Limit PARSER to RANGES.
RANGES is a list of (BEG . END), each (BEG . END) confines a range in
which the parser should operate in. Each range must not overlap, and
each range should come in order. Signal `treesit-set-range-error'
if the argument is invalid, or something else went wrong. If RANGES
is nil, set PARSER to parse the whole buffer. */)
(Lisp_Object parser, Lisp_Object ranges)
{
CHECK_TS_PARSER (parser);
CHECK_CONS (ranges);
ts_check_range_argument (ranges);
/* Before we parse, catch up with narrowing/widening. */
ts_ensure_position_synced (parser);
bool success;
if (NILP (ranges))
{
/* If RANGES is nil, make parser to parse the whole document.
To do that we give tree-sitter a 0 length, the range is a
dummy. */
TSRange ts_range = {0, 0, 0, 0};
success = ts_parser_set_included_ranges
(XTS_PARSER (parser)->parser, &ts_range , 0);
}
else
{
/* Set ranges for PARSER. */
ptrdiff_t len = list_length (ranges);
TSRange *ts_ranges = malloc (sizeof(TSRange) * len);
for (int idx=0; !NILP (ranges); idx++, ranges = XCDR (ranges))
{
Lisp_Object range = XCAR (ranges);
struct buffer *buffer = XBUFFER (XTS_PARSER (parser)->buffer);
EMACS_INT beg_byte = buf_charpos_to_bytepos
(buffer, XFIXNUM (XCAR (range)));
EMACS_INT end_byte = buf_charpos_to_bytepos
(buffer, XFIXNUM (XCDR (range)));
/* We don't care about start and end points, put in dummy
value. */
TSRange rg = {{0,0}, {0,0},
(uint32_t) beg_byte - BUF_BEGV_BYTE (buffer),
(uint32_t) end_byte - BUF_BEGV_BYTE (buffer)};
ts_ranges[idx] = rg;
}
success = ts_parser_set_included_ranges
(XTS_PARSER (parser)->parser, ts_ranges, (uint32_t) len);
/* Although XFIXNUM could signal, it should be impossible
because we have checked the input by ts_check_range_argument.
So there is no need for unwind-protect. */
free (ts_ranges);
}
if (!success)
xsignal2 (Qtreesit_range_invalid,
build_pure_c_string
("Something went wrong when setting ranges"),
ranges);
XTS_PARSER (parser)->need_reparse = true;
return Qnil;
}
DEFUN ("treesit-parser-included-ranges",
Ftreesit_parser_included_ranges,
Streesit_parser_included_ranges,
1, 1, 0,
doc: /* Return the ranges set for PARSER.
See `treesit-parser-set-ranges'. If no range is set, return
nil. */)
(Lisp_Object parser)
{
CHECK_TS_PARSER (parser);
uint32_t len;
const TSRange *ranges = ts_parser_included_ranges
(XTS_PARSER (parser)->parser, &len);
if (len == 0)
return Qnil;
struct buffer *buffer = XBUFFER (XTS_PARSER (parser)->buffer);
Lisp_Object list = Qnil;
for (int idx=0; idx < len; idx++)
{
TSRange range = ranges[idx];
uint32_t beg_byte = range.start_byte + BUF_BEGV_BYTE (buffer);
uint32_t end_byte = range.end_byte + BUF_BEGV_BYTE (buffer);
Lisp_Object lisp_range =
Fcons (make_fixnum (buf_bytepos_to_charpos (buffer, beg_byte)) ,
make_fixnum (buf_bytepos_to_charpos (buffer, end_byte)));
list = Fcons (lisp_range, list);
}
return Fnreverse (list);
}
/*** Node API */
/* Check that OBJ is a positive integer and signal an error if
otherwise. */
static void
ts_check_positive_integer (Lisp_Object obj)
{
CHECK_INTEGER (obj);
if (XFIXNUM (obj) < 0)
xsignal1 (Qargs_out_of_range, obj);
}
static void
ts_check_node (Lisp_Object obj)
{
CHECK_TS_NODE (obj);
Lisp_Object lisp_parser = XTS_NODE (obj)->parser;
if (XTS_NODE (obj)->timestamp !=
XTS_PARSER (lisp_parser)->timestamp)
xsignal1 (Qtreesit_node_outdated, obj);
}
DEFUN ("treesit-node-type",
Ftreesit_node_type, Streesit_node_type, 1, 1, 0,
doc: /* Return the NODE's type as a string.
If NODE is nil, return nil. */)
(Lisp_Object node)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
TSNode ts_node = XTS_NODE (node)->node;
const char *type = ts_node_type (ts_node);
return build_string (type);
}
DEFUN ("treesit-node-start",
Ftreesit_node_start, Streesit_node_start, 1, 1, 0,
doc: /* Return the NODE's start position.
If NODE is nil, return nil. */)
(Lisp_Object node)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
TSNode ts_node = XTS_NODE (node)->node;
ptrdiff_t visible_beg =
XTS_PARSER (XTS_NODE (node)->parser)->visible_beg;
uint32_t start_byte_offset = ts_node_start_byte (ts_node);
struct buffer *buffer =
XBUFFER (XTS_PARSER (XTS_NODE (node)->parser)->buffer);
ptrdiff_t start_pos = buf_bytepos_to_charpos
(buffer, start_byte_offset + visible_beg);
return make_fixnum (start_pos);
}
DEFUN ("treesit-node-end",
Ftreesit_node_end, Streesit_node_end, 1, 1, 0,
doc: /* Return the NODE's end position.
If NODE is nil, return nil. */)
(Lisp_Object node)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
TSNode ts_node = XTS_NODE (node)->node;
ptrdiff_t visible_beg =
XTS_PARSER (XTS_NODE (node)->parser)->visible_beg;
uint32_t end_byte_offset = ts_node_end_byte (ts_node);
struct buffer *buffer =
XBUFFER (XTS_PARSER (XTS_NODE (node)->parser)->buffer);
ptrdiff_t end_pos = buf_bytepos_to_charpos
(buffer, end_byte_offset + visible_beg);
return make_fixnum (end_pos);
}
DEFUN ("treesit-node-string",
Ftreesit_node_string, Streesit_node_string, 1, 1, 0,
doc: /* Return the string representation of NODE.
If NODE is nil, return nil. */)
(Lisp_Object node)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
TSNode ts_node = XTS_NODE (node)->node;
char *string = ts_node_string (ts_node);
return make_string (string, strlen (string));
}
DEFUN ("treesit-node-parent",
Ftreesit_node_parent, Streesit_node_parent, 1, 1, 0,
doc: /* Return the immediate parent of NODE.
Return nil if there isn't any. If NODE is nil, return nil. */)
(Lisp_Object node)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
TSNode ts_node = XTS_NODE (node)->node;
TSNode parent = ts_node_parent (ts_node);
if (ts_node_is_null (parent))
return Qnil;
return make_ts_node (XTS_NODE (node)->parser, parent);
}
DEFUN ("treesit-node-child",
Ftreesit_node_child, Streesit_node_child, 2, 3, 0,
doc: /* Return the Nth child of NODE.
Return nil if there isn't any. If NAMED is non-nil, look for named
child only. NAMED defaults to nil. If NODE is nil, return nil. */)
(Lisp_Object node, Lisp_Object n, Lisp_Object named)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
ts_check_positive_integer (n);
EMACS_INT idx = XFIXNUM (n);
if (idx > UINT32_MAX) xsignal1 (Qargs_out_of_range, n);
TSNode ts_node = XTS_NODE (node)->node;
TSNode child;
if (NILP (named))
child = ts_node_child (ts_node, (uint32_t) idx);
else
child = ts_node_named_child (ts_node, (uint32_t) idx);
if (ts_node_is_null (child))
return Qnil;
return make_ts_node (XTS_NODE (node)->parser, child);
}
DEFUN ("treesit-node-check",
Ftreesit_node_check, Streesit_node_check, 2, 2, 0,
doc: /* Return non-nil if NODE has PROPERTY, nil otherwise.
PROPERTY could be 'named, 'missing, 'extra, 'has-changes, 'has-error.
Named nodes correspond to named rules in the language definition,
whereas "anonymous" nodes correspond to string literals in the
language definition.
Missing nodes are inserted by the parser in order to recover from
certain kinds of syntax errors, i.e., should be there but not there.
Extra nodes represent things like comments, which are not required the
language definition, but can appear anywhere.
A node "has changes" if the buffer changed since the node is
created. (Don't forget the "s" at the end of 'has-changes.)
A node "has error" if itself is a syntax error or contains any syntax
errors. */)
(Lisp_Object node, Lisp_Object property)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
CHECK_SYMBOL (property);
TSNode ts_node = XTS_NODE (node)->node;
bool result;
if (EQ (property, Qnamed))
result = ts_node_is_named (ts_node);
else if (EQ (property, Qmissing))
result = ts_node_is_missing (ts_node);
else if (EQ (property, Qextra))
result = ts_node_is_extra (ts_node);
else if (EQ (property, Qhas_error))
result = ts_node_has_error (ts_node);
else if (EQ (property, Qhas_changes))
result = ts_node_has_changes (ts_node);
else
signal_error ("Expecting 'named, 'missing, 'extra, 'has-changes or 'has-error, got",
property);
return result ? Qt : Qnil;
}
DEFUN ("treesit-node-field-name-for-child",
Ftreesit_node_field_name_for_child,
Streesit_node_field_name_for_child, 2, 2, 0,
doc: /* Return the field name of the Nth child of NODE.
Return nil if there isn't any child or no field is found.
If NODE is nil, return nil. */)
(Lisp_Object node, Lisp_Object n)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
ts_check_positive_integer (n);
EMACS_INT idx = XFIXNUM (n);
if (idx > UINT32_MAX) xsignal1 (Qargs_out_of_range, n);
TSNode ts_node = XTS_NODE (node)->node;
const char *name
= ts_node_field_name_for_child (ts_node, (uint32_t) idx);
if (name == NULL)
return Qnil;
return make_string (name, strlen (name));
}
DEFUN ("treesit-node-child-count",
Ftreesit_node_child_count,
Streesit_node_child_count, 1, 2, 0,
doc: /* Return the number of children of NODE.
If NAMED is non-nil, count named child only. NAMED defaults to
nil. If NODE is nil, return nil. */)
(Lisp_Object node, Lisp_Object named)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
TSNode ts_node = XTS_NODE (node)->node;
uint32_t count;
if (NILP (named))
count = ts_node_child_count (ts_node);
else
count = ts_node_named_child_count (ts_node);
return make_fixnum (count);
}
DEFUN ("treesit-node-child-by-field-name",
Ftreesit_node_child_by_field_name,
Streesit_node_child_by_field_name, 2, 2, 0,
doc: /* Return the child of NODE with FIELD-NAME.
Return nil if there isn't any. If NODE is nil, return nil. */)
(Lisp_Object node, Lisp_Object field_name)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
CHECK_STRING (field_name);
char *name_str = SSDATA (field_name);
TSNode ts_node = XTS_NODE (node)->node;
TSNode child
= ts_node_child_by_field_name (ts_node, name_str, strlen (name_str));
if (ts_node_is_null(child))
return Qnil;
return make_ts_node(XTS_NODE (node)->parser, child);
}
DEFUN ("treesit-node-next-sibling",
Ftreesit_node_next_sibling,
Streesit_node_next_sibling, 1, 2, 0,
doc: /* Return the next sibling of NODE.
Return nil if there isn't any. If NAMED is non-nil, look for named
child only. NAMED defaults to nil. If NODE is nil, return nil. */)
(Lisp_Object node, Lisp_Object named)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
TSNode ts_node = XTS_NODE (node)->node;
TSNode sibling;
if (NILP (named))
sibling = ts_node_next_sibling (ts_node);
else
sibling = ts_node_next_named_sibling (ts_node);
if (ts_node_is_null(sibling))
return Qnil;
return make_ts_node(XTS_NODE (node)->parser, sibling);
}
DEFUN ("treesit-node-prev-sibling",
Ftreesit_node_prev_sibling,
Streesit_node_prev_sibling, 1, 2, 0,
doc: /* Return the previous sibling of NODE.
Return nil if there isn't any. If NAMED is non-nil, look for named
child only. NAMED defaults to nil. If NODE is nil, return nil. */)
(Lisp_Object node, Lisp_Object named)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
TSNode ts_node = XTS_NODE (node)->node;
TSNode sibling;
if (NILP (named))
sibling = ts_node_prev_sibling (ts_node);
else
sibling = ts_node_prev_named_sibling (ts_node);
if (ts_node_is_null(sibling))
return Qnil;
return make_ts_node(XTS_NODE (node)->parser, sibling);
}
DEFUN ("treesit-node-first-child-for-pos",
Ftreesit_node_first_child_for_pos,
Streesit_node_first_child_for_pos, 2, 3, 0,
doc: /* Return the first child of NODE on POS.
Specifically, return the first child that extends beyond POS. POS is
a position in the buffer. Return nil if there isn't any. If NAMED is
non-nil, look for named child only. NAMED defaults to nil. Note that
this function returns an immediate child, not the smallest
(grand)child. If NODE is nil, return nil. */)
(Lisp_Object node, Lisp_Object pos, Lisp_Object named)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
ts_check_positive_integer (pos);
struct buffer *buf =
XBUFFER (XTS_PARSER (XTS_NODE (node)->parser)->buffer);
ptrdiff_t visible_beg =
XTS_PARSER (XTS_NODE (node)->parser)->visible_beg;
ptrdiff_t byte_pos = buf_charpos_to_bytepos (buf, XFIXNUM (pos));
if (byte_pos < BUF_BEGV_BYTE (buf) || byte_pos > BUF_ZV_BYTE (buf))
xsignal1 (Qargs_out_of_range, pos);
TSNode ts_node = XTS_NODE (node)->node;
TSNode child;
if (NILP (named))
child = ts_node_first_child_for_byte
(ts_node, byte_pos - visible_beg);
else
child = ts_node_first_named_child_for_byte
(ts_node, byte_pos - visible_beg);
if (ts_node_is_null (child))
return Qnil;
return make_ts_node (XTS_NODE (node)->parser, child);
}
DEFUN ("treesit-node-descendant-for-range",
Ftreesit_node_descendant_for_range,
Streesit_node_descendant_for_range, 3, 4, 0,
doc: /* Return the smallest node that covers BEG to END.
The returned node is a descendant of NODE. POS is a position. Return
nil if there isn't any. If NAMED is non-nil, look for named child
only. NAMED defaults to nil. If NODE is nil, return nil. */)
(Lisp_Object node, Lisp_Object beg, Lisp_Object end, Lisp_Object named)
{
if (NILP (node)) return Qnil;
ts_check_node (node);
CHECK_INTEGER (beg);
CHECK_INTEGER (end);
struct buffer *buf =
XBUFFER (XTS_PARSER (XTS_NODE (node)->parser)->buffer);
ptrdiff_t visible_beg =
XTS_PARSER (XTS_NODE (node)->parser)->visible_beg;
ptrdiff_t byte_beg = buf_charpos_to_bytepos (buf, XFIXNUM (beg));
ptrdiff_t byte_end = buf_charpos_to_bytepos (buf, XFIXNUM (end));
/* Checks for BUFFER_BEG <= BEG <= END <= BUFFER_END. */
if (!(BUF_BEGV_BYTE (buf) <= byte_beg
&& byte_beg <= byte_end
&& byte_end <= BUF_ZV_BYTE (buf)))
xsignal2 (Qargs_out_of_range, beg, end);
TSNode ts_node = XTS_NODE (node)->node;
TSNode child;
if (NILP (named))
child = ts_node_descendant_for_byte_range
(ts_node, byte_beg - visible_beg , byte_end - visible_beg);
else
child = ts_node_named_descendant_for_byte_range
(ts_node, byte_beg - visible_beg, byte_end - visible_beg);
if (ts_node_is_null (child))
return Qnil;
return make_ts_node (XTS_NODE (node)->parser, child);
}
DEFUN ("treesit-node-eq",
Ftreesit_node_eq,
Streesit_node_eq, 2, 2, 0,
doc: /* Return non-nil if NODE1 and NODE2 are the same node.
If any one of NODE1 and NODE2 is nil, return nil. */)
(Lisp_Object node1, Lisp_Object node2)
{
if (NILP (node1) || NILP (node2))
return Qnil;
CHECK_TS_NODE (node1);
CHECK_TS_NODE (node2);
TSNode ts_node_1 = XTS_NODE (node1)->node;
TSNode ts_node_2 = XTS_NODE (node2)->node;
bool same_node = ts_node_eq (ts_node_1, ts_node_2);
return same_node ? Qt : Qnil;
}
/*** Query functions */
/* If we decide to pre-load tree-sitter.el, maybe we can implement
this function in Lisp. */
DEFUN ("treesit-expand-pattern",
Ftreesit_expand_pattern,
Streesit_expand_pattern, 1, 1, 0,
doc: /* Expand PATTERN to its string form.
PATTERN can be
:anchor
:?
:*
:+
:equal
:match
(TYPE PATTERN...)
[PATTERN...]
FIELD-NAME:
@CAPTURE-NAME
(_)
_
\"TYPE\"
Consult Info node `(elisp)Pattern Matching' form detailed
explanation. */)
(Lisp_Object pattern)
{
if (EQ (pattern, intern_c_string (":anchor")))
return build_pure_c_string(".");
if (EQ (pattern, intern_c_string (":?")))
return build_pure_c_string("?");
if (EQ (pattern, intern_c_string (":*")))
return build_pure_c_string("*");
if (EQ (pattern, intern_c_string (":+")))
return build_pure_c_string("+");
if (EQ (pattern, intern_c_string (":equal")))
return build_pure_c_string("#equal");
if (EQ (pattern, intern_c_string (":match")))
return build_pure_c_string("#match");
Lisp_Object opening_delimeter =
build_pure_c_string (VECTORP (pattern) ? "[" : "(");
Lisp_Object closing_delimiter =
build_pure_c_string (VECTORP (pattern) ? "]" : ")");
if (VECTORP (pattern) || CONSP (pattern))
return concat3 (opening_delimeter,
Fmapconcat (intern_c_string
("treesit-expand-pattern"),
pattern,
build_pure_c_string (" ")),
closing_delimiter);
return CALLN (Fformat, build_pure_c_string("%S"), pattern);
}
DEFUN ("treesit-expand-query",
Ftreesit_expand_query,
Streesit_expand_query, 1, 1, 0,
doc: /* Expand sexp QUERY to its string form.
A PATTERN in QUERY can be
:anchor
:?
:*
:+
:equal
:match
(TYPE PATTERN...)
[PATTERN...]
FIELD-NAME:
@CAPTURE-NAME
(_)
_
\"TYPE\"
Consult Info node `(elisp)Pattern Matching' form detailed
explanation. */)
(Lisp_Object query)
{
return Fmapconcat (intern_c_string ("treesit-expand-pattern"),
query, build_pure_c_string (" "));
}
static const char*
ts_query_error_to_string (TSQueryError error)
{
switch (error)
{
case TSQueryErrorNone:
return "None";
case TSQueryErrorSyntax:
return "Syntax error at";
case TSQueryErrorNodeType:
return "Node type error at";
case TSQueryErrorField:
return "Field error at";
case TSQueryErrorCapture:
return "Capture error at";
case TSQueryErrorStructure:
return "Structure error at";
default:
return "Unknown error";
}
}
/* This struct is used for passing captures to be check against
predicates. Captures we check for are the ones in START before
END. For example, if START and END are
START END
v v
(1 . (2 . (3 . (4 . (5 . (6 . nil))))))
We only look at captures 1 2 3. */
struct capture_range
{
Lisp_Object start;
Lisp_Object end;
};
/* Collect predicates for this match and return them in a list. Each
predicate is a list of strings and symbols. */
static Lisp_Object
ts_predicates_for_pattern
(TSQuery *query, uint32_t pattern_index)
{
uint32_t len;
const TSQueryPredicateStep *predicate_list =
ts_query_predicates_for_pattern (query, pattern_index, &len);
Lisp_Object result = Qnil;
Lisp_Object predicate = Qnil;
for (int idx=0; idx < len; idx++)
{
TSQueryPredicateStep step = predicate_list[idx];
switch (step.type)
{
case TSQueryPredicateStepTypeCapture:
{
uint32_t str_len;
const char *str = ts_query_capture_name_for_id
(query, step.value_id, &str_len);
predicate = Fcons (intern_c_string_1 (str, str_len),
predicate);
break;
}
case TSQueryPredicateStepTypeString:
{
uint32_t str_len;
const char *str = ts_query_string_value_for_id
(query, step.value_id, &str_len);
predicate = Fcons (make_string (str, str_len), predicate);
break;
}
case TSQueryPredicateStepTypeDone:
result = Fcons (Fnreverse (predicate), result);
predicate = Qnil;
break;
}
}
return Fnreverse (result);
}
/* Translate a capture NAME (symbol) to the text of the captured node.
Signals treesit-query-error if such node is not captured. */
static Lisp_Object
ts_predicate_capture_name_to_text
(Lisp_Object name, struct capture_range captures)
{
Lisp_Object node = Qnil;
for (Lisp_Object tail = captures.start;
!EQ (tail, captures.end); tail = XCDR (tail))
{
if (EQ (XCAR (XCAR (tail)), name))
{
node = XCDR (XCAR (tail));
break;
}
}
if (NILP (node))
xsignal3 (Qtreesit_query_error,
build_pure_c_string ("Cannot find captured node"),
name, build_pure_c_string ("A predicate can only refer to captured nodes in the same pattern"));
struct buffer *old_buffer = current_buffer;
set_buffer_internal
(XBUFFER (XTS_PARSER (XTS_NODE (node)->parser)->buffer));
Lisp_Object text = Fbuffer_substring
(Ftreesit_node_start (node), Ftreesit_node_end (node));
set_buffer_internal (old_buffer);
return text;
}
/* Handles predicate (#equal A B). Return true if A equals B; return
false otherwise. A and B can be either string, or a capture name.
The capture name evaluates to the text its captured node spans in
the buffer. */
static bool
ts_predicate_equal
(Lisp_Object args, struct capture_range captures)
{
if (XFIXNUM (Flength (args)) != 2)
xsignal2 (Qtreesit_query_error, build_pure_c_string ("Predicate `equal' requires two arguments but only given"), Flength (args));
Lisp_Object arg1 = XCAR (args);
Lisp_Object arg2 = XCAR (XCDR (args));
Lisp_Object text1 = STRINGP (arg1) ? arg1 :
ts_predicate_capture_name_to_text (arg1, captures);
Lisp_Object text2 = STRINGP (arg2) ? arg2 :
ts_predicate_capture_name_to_text (arg2, captures);
if (NILP (Fstring_equal (text1, text2)))
return false;
else
return true;
}
/* Handles predicate (#match "regexp" @node). Return true if "regexp"
matches the text spanned by @node; return false otherwise. Matching
is case-sensitive. */
static bool
ts_predicate_match
(Lisp_Object args, struct capture_range captures)
{
if (XFIXNUM (Flength (args)) != 2)
xsignal2 (Qtreesit_query_error, build_pure_c_string ("Predicate `equal' requires two arguments but only given"), Flength (args));
Lisp_Object regexp = XCAR (args);
Lisp_Object capture_name = XCAR (XCDR (args));
Lisp_Object text = ts_predicate_capture_name_to_text
(capture_name, captures);
/* It's probably common to get the argument order backwards. Catch
this mistake early and show helpful explanation, because Emacs
loves you. (We put the regexp first because that's what
string-match does.) */
if (!STRINGP (regexp))
xsignal1 (Qtreesit_query_error, build_pure_c_string ("The first argument to `match' should be a regexp string, not a capture name"));
if (!SYMBOLP (capture_name))
xsignal1 (Qtreesit_query_error, build_pure_c_string ("The second argument to `match' should be a capture name, not a string"));
if (fast_string_match (regexp, text) >= 0)
return true;
else
return false;
}
/* About predicates: I decide to hard-code predicates in C instead of
implementing an extensible system where predicates are translated
to Lisp functions, and new predicates can be added by extending a
list of functions, because I really couldn't imagine any useful
predicates besides equal and match. If we later found out that
such system is indeed useful and necessary, it can be easily
added. */
/* If all predicates in PREDICATES passes, return true; otherwise
return false. */
static bool
ts_eval_predicates
(struct capture_range captures, Lisp_Object predicates)
{
bool pass = true;
/* Evaluate each predicates. */
for (Lisp_Object tail = predicates;
!NILP (tail); tail = XCDR (tail))
{
Lisp_Object predicate = XCAR (tail);
Lisp_Object fn = XCAR (predicate);
Lisp_Object args = XCDR (predicate);
if (!NILP (Fstring_equal (fn, build_pure_c_string("equal"))))
pass = ts_predicate_equal (args, captures);
else if (!NILP (Fstring_equal
(fn, build_pure_c_string("match"))))
pass = ts_predicate_match (args, captures);
else
xsignal3 (Qtreesit_query_error,
build_pure_c_string ("Invalid predicate"),
fn, build_pure_c_string ("Currently Emacs only supports equal and match predicate"));
}
/* If all predicates passed, add captures to result list. */
return pass;
}
DEFUN ("treesit-query-capture",
Ftreesit_query_capture,
Streesit_query_capture, 2, 4, 0,
doc: /* Query NODE with patterns in QUERY.
Return a list of (CAPTURE_NAME . NODE). CAPTURE_NAME is the name
assigned to the node in PATTERN. NODE is the captured node.
QUERY is either a string query or a sexp query. See Info node
`(elisp)Pattern Matching' for how to write a query in either string or
s-expression form.
BEG and END, if both non-nil, specifies the range in which the query
is executed.
Raise an treesit-query-error if QUERY is malformed, or something
else goes wrong. */)
(Lisp_Object node, Lisp_Object query,
Lisp_Object beg, Lisp_Object end)
{
ts_check_node (node);
if (!NILP (beg))
CHECK_INTEGER (beg);
if (!NILP (end))
CHECK_INTEGER (end);
if (CONSP (query))
query = Ftreesit_expand_query (query);
else
CHECK_STRING (query);
/* Extract C values from Lisp objects. */
TSNode ts_node = XTS_NODE (node)->node;
Lisp_Object lisp_parser = XTS_NODE (node)->parser;
ptrdiff_t visible_beg =
XTS_PARSER (XTS_NODE (node)->parser)->visible_beg;
const TSLanguage *lang = ts_parser_language
(XTS_PARSER (lisp_parser)->parser);
char *source = SSDATA (query);
/* Initialize query objects, and execute query. */
uint32_t error_offset;
TSQueryError error_type;
/* TODO: We could cache the query object, so that repeatedly
querying with the same query can reuse the query object. It also
saves us from expanding the sexp query into a string. I don't
know how much time that could save though. */
static TSQuery *ts_query = NULL;
static char* prev_source = NULL;
if (source != prev_source)
{
printf ("Making query\n");
if (query)
ts_query_delete (ts_query);
ts_query = ts_query_new (lang, source, strlen (source),
&error_offset, &error_type);
}
else
{
printf ("Reusing query\n");
}
prev_source = source;
TSQueryCursor *cursor = ts_query_cursor_new ();
if (ts_query == NULL)
{
xsignal2 (Qtreesit_query_error,
build_string (ts_query_error_to_string (error_type)),
make_fixnum (error_offset + 1));
}
if (!NILP (beg) && !NILP (end))
{
EMACS_INT beg_byte = XFIXNUM (beg);
EMACS_INT end_byte = XFIXNUM (end);
ts_query_cursor_set_byte_range
(cursor, (uint32_t) beg_byte - visible_beg,
(uint32_t) end_byte - visible_beg);
}
ts_query_cursor_exec (cursor, ts_query, ts_node);
TSQueryMatch match;
/* Go over each match, collect captures and predicates. Include the
captures in the RESULT list unconditionally as we get them, then
test for predicates. If predicates pass, then all good, if
predicates don't pass, revert the result back to the result
before this loop (PREV_RESULT). (Predicates control the entire
match.) This way we don't need to create a list of captures in
every for loop and nconc it to RESULT every time. That is indeed
the initial implementation in which Yoav found nconc being the
bottleneck (98.4% of the running time spent on nconc). */
Lisp_Object result = Qnil;
Lisp_Object prev_result = result;
while (ts_query_cursor_next_match (cursor, &match))
{
/* Record the checkpoint that we may roll back to. */
prev_result = result;
/* Get captured nodes. */
const TSQueryCapture *captures = match.captures;
for (int idx=0; idx < match.capture_count; idx++)
{
uint32_t capture_name_len;
TSQueryCapture capture = captures[idx];
Lisp_Object captured_node =
make_ts_node(lisp_parser, capture.node);
const char *capture_name = ts_query_capture_name_for_id
(ts_query, capture.index, &capture_name_len);
Lisp_Object cap =
Fcons (intern_c_string_1 (capture_name, capture_name_len),
captured_node);
result = Fcons (cap, result);
}
/* Get predicates. */
Lisp_Object predicates =
ts_predicates_for_pattern (ts_query, match.pattern_index);
/* captures_lisp = Fnreverse (captures_lisp); */
struct capture_range captures_range = { result, prev_result };
if (!ts_eval_predicates (captures_range, predicates))
{
/* Predicates didn't pass, roll back. */
result = prev_result;
}
}
ts_query_cursor_delete (cursor);
return Fnreverse (result);
}
/*** Initialization */
/* Initialize the tree-sitter routines. */
void
syms_of_treesit (void)
{
DEFSYM (Qtreesit_parser_p, "treesit-parser-p");
DEFSYM (Qtreesit_node_p, "treesit-node-p");
DEFSYM (Qnamed, "named");
DEFSYM (Qmissing, "missing");
DEFSYM (Qextra, "extra");
DEFSYM (Qhas_changes, "has-changes");
DEFSYM (Qhas_error, "has-error");
DEFSYM (Qtreesit_error, "treesit-error");
DEFSYM (Qtreesit_query_error, "treesit-query-error");
DEFSYM (Qtreesit_parse_error, "treesit-parse-error");
DEFSYM (Qtreesit_range_invalid, "treesit-range-invalid");
DEFSYM (Qtreesit_buffer_too_large,
"treesit-buffer-too-large");
DEFSYM (Qtreesit_load_language_error,
"treesit-load-language-error");
DEFSYM (Qtreesit_node_outdated,
"treesit-node-outdated");
DEFSYM (Quser_emacs_directory,
"user-emacs-directory");
define_error (Qtreesit_error, "Generic tree-sitter error", Qerror);
define_error (Qtreesit_query_error, "Query pattern is malformed",
Qtreesit_error);
/* Should be impossible, no need to document this error. */
define_error (Qtreesit_parse_error, "Parse failed",
Qtreesit_error);
define_error (Qtreesit_range_invalid,
"RANGES are invalid, they have to be ordered and not overlapping",
Qtreesit_error);
define_error (Qtreesit_buffer_too_large, "Buffer too large (> 4GB)",
Qtreesit_error);
define_error (Qtreesit_load_language_error,
"Cannot load language definition",
Qtreesit_error);
define_error (Qtreesit_node_outdated,
"This node is outdated, please retrieve a new one",
Qtreesit_error);
DEFSYM (Qtreesit_parser_list, "treesit-parser-list");
DEFVAR_LISP ("treesit-parser-list", Vtreesit_parser_list,
doc: /* A list of tree-sitter parsers.
If you removed a parser from this list, do not put it back in. Emacs
keeps the parser in this list updated with any change in the buffer.
If removed and put back in, there is no guarantee that the parser is in
sync with the buffer's content. */);
Vtreesit_parser_list = Qnil;
Fmake_variable_buffer_local (Qtreesit_parser_list);
DEFVAR_LISP ("treesit-load-name-override-list",
Vtreesit_load_name_override_list,
doc:
/* An override list for unconventional tree-sitter libraries.
By default, Emacs assumes the dynamic library for LANG is
libtree-sitter-LANG.EXT, where EXT is the OS specific extension for
dynamic libraries. Emacs also assumes that the name of the C function
the library provides is tree_sitter_LANG. If that is not the case,
add an entry
(LANG LIBRARY-BASE-NAME FUNCTION-NAME)
to this list, where LIBRARY-BASE-NAME is the filename of the dynamic
library without extension, FUNCTION-NAME is the function provided by
the library. */);
Vtreesit_load_name_override_list = Qnil;
DEFVAR_LISP ("treesit-extra-load-path",
Vtreesit_extra_load_path,
doc:
/* Extra load paths of tree-sitter language definitions.
When trying to load a tree-sitter language definition,
Emacs looks at directories in this variable,
`user-emacs-directory'/tree-sitter, and system default locations for
dynamic libraries, in that order. */);
Vtreesit_extra_load_path = Qnil;
defsubr (&Streesit_language_available_p);
defsubr (&Streesit_parser_p);
defsubr (&Streesit_node_p);
defsubr (&Streesit_node_parser);
defsubr (&Streesit_parser_create);
defsubr (&Streesit_parser_buffer);
defsubr (&Streesit_parser_language);
defsubr (&Streesit_parser_root_node);
/* defsubr (&Streesit_parse_string); */
defsubr (&Streesit_parser_set_included_ranges);
defsubr (&Streesit_parser_included_ranges);
defsubr (&Streesit_node_type);
defsubr (&Streesit_node_start);
defsubr (&Streesit_node_end);
defsubr (&Streesit_node_string);
defsubr (&Streesit_node_parent);
defsubr (&Streesit_node_child);
defsubr (&Streesit_node_check);
defsubr (&Streesit_node_field_name_for_child);
defsubr (&Streesit_node_child_count);
defsubr (&Streesit_node_child_by_field_name);
defsubr (&Streesit_node_next_sibling);
defsubr (&Streesit_node_prev_sibling);
defsubr (&Streesit_node_first_child_for_pos);
defsubr (&Streesit_node_descendant_for_range);
defsubr (&Streesit_node_eq);
defsubr (&Streesit_expand_pattern);
defsubr (&Streesit_expand_query);
defsubr (&Streesit_query_capture);
}
|