-
Notifications
You must be signed in to change notification settings - Fork 95
/
tree.go
569 lines (485 loc) · 13.1 KB
/
tree.go
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
package jsluice
import (
"fmt"
"strconv"
"strings"
"github.com/ditashi/jsbeautifier-go/jsbeautifier"
sitter "github.com/smacker/go-tree-sitter"
"github.com/smacker/go-tree-sitter/javascript"
)
// ExpressionPlaceholder is the string used to replace any
// expressions when string concatenations are collapsed. E.g:
// "prefix" + someVar + "suffix"
// Would become:
// prefixEXPRsuffix
var ExpressionPlaceholder = "EXPR"
// Node is a wrapper around a tree-sitter node. It serves as
// an attachment point for convenience methods, and also to
// store the raw JavaScript source that is a required argument
// for many tree-sitter functions.
type Node struct {
node *sitter.Node
source []byte
captureName string
}
// NewNode creates a new Node for the provided tree-sitter
// node and a byte-slice containing the JavaScript source.
// The source provided should be the complete source code
// and not just the source for the node in question.
func NewNode(n *sitter.Node, source []byte) *Node {
return &Node{
node: n,
source: source,
}
}
// AsObject returns a Node as jsluice's internal object type,
// to allow the fetching of keys etc
func (n *Node) AsObject() Object {
return NewObject(n, n.source)
}
// Content returns the source code for a particular node.
func (n *Node) Content() string {
if n.node == nil {
return ""
}
return n.node.Content(n.source)
}
// Type returns the tree-sitter type string for a Node.
// E.g. string, object, call_expression. If the node is
// nil then an empty string is returned.
func (n *Node) Type() string {
if n.node == nil {
return ""
}
return n.node.Type()
}
// Fetches a child Node from a named field. For example,
// the 'pair' node has two fields: key, and value.
func (n *Node) ChildByFieldName(name string) *Node {
if !n.IsValid() {
return nil
}
return NewNode(n.node.ChildByFieldName(name), n.source)
}
// Child returns the child Node at the provided index
func (n *Node) Child(index int) *Node {
if !n.IsValid() {
return nil
}
return NewNode(n.node.Child(index), n.source)
}
// NamedChild returns the 'named' child Node at the provided
// index. Tree-sitter considers a child to be named if it has
// a name in the syntax tree. Things like brackets are not named,
// but things like variables and function calls are named.
// See https://tree-sitter.github.io/tree-sitter/using-parsers#named-vs-anonymous-nodes
// for more details.
func (n *Node) NamedChild(index int) *Node {
if !n.IsValid() {
return nil
}
return NewNode(n.node.NamedChild(index), n.source)
}
// ChildCount returns the number of children a node has
func (n *Node) ChildCount() int {
if !n.IsValid() {
return 0
}
return int(n.node.ChildCount())
}
// NamedChildCount returns the number of named children a Node has.
func (n *Node) NamedChildCount() int {
if !n.IsValid() {
return 0
}
return int(n.node.NamedChildCount())
}
// Childten returns a slide of *Node containing all children for a node
func (n *Node) Children() []*Node {
count := n.ChildCount()
out := make([]*Node, 0, count)
for i := 0; i < count; i++ {
out = append(out, n.Child(i))
}
return out
}
// NamedChildren returns a slice of *Node containg all
// named children for a node.
func (n *Node) NamedChildren() []*Node {
count := n.NamedChildCount()
out := make([]*Node, 0, count)
for i := 0; i < count; i++ {
out = append(out, n.NamedChild(i))
}
return out
}
// NextSibling returns the next sibling in the tree
func (n *Node) NextSibling() *Node {
if !n.IsValid() {
return nil
}
return NewNode(n.node.NextSibling(), n.source)
}
// NextNamedSibling returns the next named sibling in the tree
func (n *Node) NextNamedSibling() *Node {
if !n.IsValid() {
return nil
}
return NewNode(n.node.NextNamedSibling(), n.source)
}
// PrevSibling returns the previous sibling in the tree
func (n *Node) PrevSibling() *Node {
if !n.IsValid() {
return nil
}
return NewNode(n.node.PrevSibling(), n.source)
}
// PrevNamedSibling returns the previous named sibling in the tree
func (n *Node) PrevNamedSibling() *Node {
if !n.IsValid() {
return nil
}
return NewNode(n.node.PrevNamedSibling(), n.source)
}
// CollapsedString takes a node representing a URL and attempts to make it
// at least somewhat easily parseable. It's common to build URLs out
// of variables and function calls so we want to turn something like:
//
// './upload.php?profile='+res.id+'&show='+$('.participate_modal_container').attr('data-val')
//
// Into something more like:
//
// ./upload.php?profile=EXPR&show=EXPR
//
// The value of ExpressionPlaceholder is used as a placeholder, defaulting to 'EXPR'
func (n *Node) CollapsedString() string {
if !n.IsValid() {
return ""
}
switch n.Type() {
case "binary_expression":
return fmt.Sprintf(
"%s%s",
n.ChildByFieldName("left").CollapsedString(),
n.ChildByFieldName("right").CollapsedString(),
)
case "string":
return n.RawString()
default:
return ExpressionPlaceholder
}
}
// IsValid returns true if the *Node and the underlying
// tree-sitter node are both not nil.
func (n *Node) IsValid() bool {
return n != nil && n.node != nil
}
// RawString returns the raw JavaScript representation
// of a string (i.e. escape sequences are left undecoded)
// but with the surrounding quotes removed.
func (n *Node) RawString() string {
return dequote(n.Content())
}
// DecodedString returns a fully decoded version of a
// JavaScript string. It is just a convenience wrapper
// around the DecodeString function.
func (n *Node) DecodedString() string {
return DecodeString(n.Content())
}
// AsGoType returns a representation of a Node as a native
// Go type, defaulting to a string containing the JavaScript
// source for the Node. Return types are:
//
// string => string
// number => int, float64
// object => map[string]any
// array => []any
// false => false
// true => true
// null => nil
// other => string
//
func (n *Node) AsGoType() any {
if n == nil {
return nil
}
switch n.Type() {
case "string":
return n.DecodedString()
case "number":
return n.AsNumber()
case "object":
return n.AsMap()
case "array":
return n.AsArray()
case "false":
return false
case "true":
return true
case "null":
return nil
default:
return n.Content()
}
}
// AsMap returns a representation of the Node as a map[string]any
func (n *Node) AsMap() map[string]any {
if n.Type() != "object" {
return map[string]any{}
}
pairs := n.NamedChildren()
out := make(map[string]any, len(pairs))
for _, pair := range pairs {
if pair.Type() != "pair" {
continue
}
key := DecodeString(pair.ChildByFieldName("key").RawString())
value := pair.ChildByFieldName("value").AsGoType()
out[key] = value
}
return out
}
// AsArray returns a representation of the Node as a []any
func (n *Node) AsArray() []any {
if n.Type() != "array" {
return []any{}
}
values := n.NamedChildren()
out := make([]any, 0, len(values))
for _, v := range values {
out = append(out, v.AsGoType())
}
return out
}
// AsNumber returns a representation of the Node as an int or float64.
//
// Note: hex, octal etc number formats are currently unsupported
func (n *Node) AsNumber() any {
if n.Type() != "number" {
return 0
}
// TODO: handle hex, octal etc
content := n.Content()
if strings.Contains(content, ".") {
// float
f, err := strconv.ParseFloat(content, 64)
if err != nil {
return 0
}
return f
}
// int
i, err := strconv.ParseInt(content, 10, 64)
if err != nil {
return 0
}
return i
}
// Parent returns the Parent Node for a Node
func (n *Node) Parent() *Node {
if !n.IsValid() {
return nil
}
return NewNode(n.node.Parent(), n.source)
}
// IsNamed returns true if the underlying node is named
func (n *Node) IsNamed() bool {
if !n.IsValid() {
return false
}
return n.node.IsNamed()
}
// ForEachChild iterates over a node's children in a depth-first
// manner, calling the supplied function for each node
func (n *Node) ForEachChild(fn func(*Node)) {
it := sitter.NewIterator(n.node, sitter.DFSMode)
it.ForEach(func(sn *sitter.Node) error {
fn(NewNode(sn, n.source))
return nil
})
}
// ForEachNamedChild iterates over a node's named children in a
// depth-first manner, calling the supplied function for each node
func (n *Node) ForEachNamedChild(fn func(*Node)) {
it := sitter.NewNamedIterator(n.node, sitter.DFSMode)
it.ForEach(func(sn *sitter.Node) error {
fn(NewNode(sn, n.source))
return nil
})
}
// Format outputs a nicely formatted version of the source code for the
// Node. Formatting is done by https://github.com/ditashi/jsbeautifier-go/
func (n *Node) Format() (string, error) {
source := n.Content()
return jsbeautifier.Beautify(&source, jsbeautifier.DefaultOptions())
}
// Query executes a tree-sitter query on a specific Node.
// Nodes captured by the query are passed one at a time to the
// provided callback function.
//
// See https://tree-sitter.github.io/tree-sitter/using-parsers#pattern-matching-with-queries
// for query syntax documentation.
func (n *Node) Query(query string, fn func(*Node)) {
n.QueryMulti(query, func(qr QueryResult) {
for _, n := range qr {
fn(n)
}
})
}
// QueryResult is a map of capture names to the corresponding nodes that they matched
type QueryResult map[string]*Node
// NewQueryResult returns a QueryResult containing the provided *Nodes
func NewQueryResult(nodes ...*Node) QueryResult {
out := make(QueryResult)
for _, n := range nodes {
out.Add(n)
}
return out
}
// Add accepts a *Node and adds it to the QueryResult,
// provided it has a valid CaptureName
func (qr QueryResult) Add(n *Node) {
key := n.CaptureName()
if key == "" {
return
}
qr[key] = n
}
// Has returns true if the QueryResult contains a *Node
// for the provided capture name
func (qr QueryResult) Has(captureName string) bool {
_, exists := qr[captureName]
return exists
}
// Get returns the corresponding *Node for the provided
// capture name, or nil if no such *Node exists
func (qr QueryResult) Get(captureName string) *Node {
if !qr.Has(captureName) {
return nil
}
return qr[captureName]
}
// QueryMulti executes a tree-sitter query on a specific Node.
// Nodes captured by the query are grouped into a QueryResult
// and passed to the provided callback function.
//
// See https://tree-sitter.github.io/tree-sitter/using-parsers#pattern-matching-with-queries
// for query syntax documentation.
func (n *Node) QueryMulti(query string, fn func(QueryResult)) {
if !n.IsValid() {
return
}
q, err := sitter.NewQuery(
[]byte(query),
javascript.GetLanguage(),
)
if err != nil {
return
}
qc := sitter.NewQueryCursor()
defer qc.Close()
qc.Exec(q, n.node)
for {
match, exists := qc.NextMatch()
if !exists || match == nil {
break
}
match = qc.FilterPredicates(match, n.source)
qr := NewQueryResult()
for _, capture := range match.Captures {
node := NewNode(capture.Node, n.source)
node.captureName = q.CaptureNameForId(capture.Index)
qr.Add(node)
}
if len(qr) == 0 {
continue
}
fn(qr)
}
}
// IsStringy returns true if a Node is a string
// or is an expression starting with a string
// (e.g. a string concatenation expression).
func (n *Node) IsStringy() bool {
if n.Type() == "string" {
return true
}
c := n.Content()
if len(c) == 0 {
return false
}
switch c[0:1] {
case `"`, "'", "`":
return true
default:
return false
}
}
// CaptureName returns the name given to a node in a
// query if one exists, and an empty string otherwise
func (n *Node) CaptureName() string {
return n.captureName
}
// dequote removes surround quotes from the provided string
func dequote(in string) string {
return strings.Trim(in, "'\"`")
}
// content returns the source for the provided tree-sitter
// node, checking if the node is nil first.
func content(n *sitter.Node, source []byte) string {
if n == nil {
return ""
}
return n.Content(source)
}
// PrintTree returns a string representation of the syntax tree
// for the provided JavaScript source
func PrintTree(source []byte) string {
parser := sitter.NewParser()
parser.SetLanguage(javascript.GetLanguage())
tree := parser.Parse(nil, source)
root := tree.RootNode()
return getTree(root, source)
}
// getTree does the actual heavy lifting and recursion for PrintTree
// TODO: provide a way to print the tree as a JSON object?
func getTree(n *sitter.Node, source []byte) string {
out := &strings.Builder{}
c := sitter.NewTreeCursor(n)
defer c.Close()
// walkies
depth := 0
recurse := true
for {
if recurse && c.CurrentNode().IsNamed() {
fieldName := c.CurrentFieldName()
if fieldName != "" {
fieldName += ": "
}
contentStr := ""
if c.CurrentNode().ChildCount() == 0 || c.CurrentNode().Type() == "string" {
contentStr = fmt.Sprintf(" (%s)", content(c.CurrentNode(), source))
}
fmt.Fprintf(out, "%s%s%s%s\n", strings.Repeat(" ", depth), fieldName, c.CurrentNode().Type(), contentStr)
}
// descend into the tree
if recurse && c.GoToFirstChild() {
recurse = true
depth++
continue
}
// move sideways
if c.GoToNextSibling() {
recurse = true
continue
}
// climb back up the tree, but make sure we don't descend right back to where we were
if c.GoToParent() {
depth--
recurse = false
continue
}
break
}
return strings.TrimSpace(out.String())
}