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
|
// Copyright 2018 The CUE Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package astutil
import (
"encoding/hex"
"fmt"
"hash/fnv"
"reflect"
"cuelang.org/go/cue/ast"
)
// A Cursor describes a node encountered during Apply.
// Information about the node and its parent is available
// from the Node, Parent, and Index methods.
//
// The methods Replace, Delete, InsertBefore, and InsertAfter
// can be used to change the AST without disrupting Apply.
// Delete, InsertBefore, and InsertAfter are only defined for modifying
// a StructLit and will panic in any other context.
type Cursor interface {
// Node returns the current Node.
Node() ast.Node
// Parent returns the parent of the current Node.
Parent() Cursor
// Index reports the index >= 0 of the current Node in the slice of Nodes
// that contains it, or a value < 0 if the current Node is not part of a
// list.
Index() int
// Import reports an opaque identifier that refers to the given package. It
// may only be called if the input to apply was an ast.File. If the import
// does not exist, it will be added.
//
// Deprecated: use [ast.NewImport] as an [ast.Ident.Node], and then
// [Sanitize].
Import(path string) *ast.Ident
// Replace replaces the current Node with n.
// The replacement node is not walked by Apply. Comments of the old node
// are copied to the new node if it has not yet an comments associated
// with it.
Replace(n ast.Node)
// Delete deletes the current Node from its containing struct.
// If the current Node is not part of a struct, Delete panics.
Delete()
// InsertAfter inserts n after the current Node in its containing struct.
// If the current Node is not part of a struct, InsertAfter panics.
// Unless n is wrapped by ApplyRecursively, Apply does not walk n.
InsertAfter(n ast.Node)
// InsertBefore inserts n before the current Node in its containing struct.
// If the current Node is not part of a struct, InsertBefore panics.
// Unless n is wrapped by ApplyRecursively, Apply does not walk n.
InsertBefore(n ast.Node)
self() *cursor
}
// ApplyRecursively indicates that a node inserted with InsertBefore,
// or InsertAfter should be processed recursively.
func ApplyRecursively(n ast.Node) ast.Node {
return recursive{n}
}
type recursive struct {
ast.Node
}
type info struct {
f *ast.File
current *declsCursor
importPatch []*ast.Ident
}
type cursor struct {
file *info
parent Cursor
node ast.Node
typ interface{} // the type of the node
index int // position of any of the sub types.
replaced bool
}
func newCursor(parent Cursor, n ast.Node, typ interface{}) *cursor {
return &cursor{
parent: parent,
typ: typ,
node: n,
index: -1,
}
}
func fileInfo(c Cursor) (info *info) {
for ; c != nil; c = c.Parent() {
if i := c.self().file; i != nil {
return i
}
}
return nil
}
func (c *cursor) self() *cursor { return c }
func (c *cursor) Parent() Cursor { return c.parent }
func (c *cursor) Index() int { return c.index }
func (c *cursor) Node() ast.Node { return c.node }
// Deprecated: use [ast.NewImport] as an [ast.Ident.Node], and then
// [Sanitize].
func (c *cursor) Import(importPath string) *ast.Ident {
info := fileInfo(c)
if info == nil {
return nil
}
name := ImportPathName(importPath)
// TODO: come up with something much better.
// For instance, hoist the uniquer form cue/export.go to
// here and make export.go use this.
hash := fnv.New32()
name += hex.EncodeToString(hash.Sum([]byte(importPath)))[:6]
spec := insertImport(&info.current.decls, &ast.ImportSpec{
Name: ast.NewIdent(name),
Path: ast.NewString(importPath),
})
ident := &ast.Ident{Node: spec} // Name is set later.
info.importPatch = append(info.importPatch, ident)
ident.Name = name
return ident
}
func (c *cursor) Replace(n ast.Node) {
// panic if the value cannot convert to the original type.
reflect.ValueOf(n).Convert(reflect.TypeOf(c.typ).Elem())
if ast.Comments(n) != nil {
CopyComments(n, c.node)
}
if r, ok := n.(recursive); ok {
n = r.Node
} else {
c.replaced = true
}
c.node = n
}
func (c *cursor) InsertAfter(n ast.Node) { panic("unsupported") }
func (c *cursor) InsertBefore(n ast.Node) { panic("unsupported") }
func (c *cursor) Delete() { panic("unsupported") }
// Apply traverses a syntax tree recursively, starting with root,
// and calling pre and post for each node as described below.
// Apply returns the syntax tree, possibly modified.
//
// If pre is not nil, it is called for each node before the node's
// children are traversed (pre-order). If pre returns false, no
// children are traversed, and post is not called for that node.
//
// If post is not nil, and a prior call of pre didn't return false,
// post is called for each node after its children are traversed
// (post-order). If post returns false, traversal is terminated and
// Apply returns immediately.
//
// Only fields that refer to AST nodes are considered children;
// i.e., token.Pos, Scopes, Objects, and fields of basic types
// (strings, etc.) are ignored.
//
// Children are traversed in the order in which they appear in the
// respective node's struct definition.
func Apply(node ast.Node, before, after func(Cursor) bool) ast.Node {
apply(&applier{before: before, after: after}, nil, &node)
return node
}
// A applyVisitor's before method is invoked for each node encountered by Walk.
// If the result applyVisitor w is true, Walk visits each of the children
// of node with the applyVisitor w, followed by a call of w.After.
type applyVisitor interface {
Before(Cursor) applyVisitor
After(Cursor) bool
}
// Helper functions for common node lists. They may be empty.
type declsCursor struct {
*cursor
decls, after, process []ast.Decl
delete bool
}
func (c *declsCursor) InsertAfter(n ast.Node) {
if r, ok := n.(recursive); ok {
n = r.Node
c.process = append(c.process, n.(ast.Decl))
}
c.after = append(c.after, n.(ast.Decl))
}
func (c *declsCursor) InsertBefore(n ast.Node) {
if r, ok := n.(recursive); ok {
n = r.Node
c.process = append(c.process, n.(ast.Decl))
}
c.decls = append(c.decls, n.(ast.Decl))
}
func (c *declsCursor) Delete() { c.delete = true }
func applyDeclList(v applyVisitor, parent Cursor, list []ast.Decl) []ast.Decl {
c := &declsCursor{
cursor: newCursor(parent, nil, nil),
decls: make([]ast.Decl, 0, len(list)),
}
if file, ok := parent.Node().(*ast.File); ok {
c.cursor.file = &info{f: file, current: c}
}
for i, x := range list {
c.node = x
c.typ = &list[i]
applyCursor(v, c)
if !c.delete {
c.decls = append(c.decls, c.node.(ast.Decl))
}
c.delete = false
for i := 0; i < len(c.process); i++ {
x := c.process[i]
c.node = x
c.typ = &c.process[i]
applyCursor(v, c)
if c.delete {
panic("cannot delete a node that was added with InsertBefore or InsertAfter")
}
}
c.decls = append(c.decls, c.after...)
c.after = c.after[:0]
c.process = c.process[:0]
}
// TODO: ultimately, programmatically linked nodes have to be resolved
// at the end.
// if info := c.cursor.file; info != nil {
// done := map[*ast.ImportSpec]bool{}
// for _, ident := range info.importPatch {
// spec := ident.Node.(*ast.ImportSpec)
// if done[spec] {
// continue
// }
// done[spec] = true
// path, _ := strconv.Unquote(spec.Path)
// ident.Name =
// }
// }
return c.decls
}
func apply[N ast.Node](v applyVisitor, parent Cursor, nodePtr *N) {
node := *nodePtr
c := newCursor(parent, node, nodePtr)
applyCursor(v, c)
if ast.Node(node) != c.node {
*nodePtr = c.node.(N)
}
}
func applyList[N ast.Node](v applyVisitor, parent Cursor, list []N) {
c := newCursor(parent, nil, nil)
for i, node := range list {
c.index = i
c.node = node
c.typ = &list[i]
applyCursor(v, c)
if ast.Node(node) != c.node {
list[i] = c.node.(N)
}
}
}
// applyCursor traverses an AST in depth-first order: It starts by calling
// v.Visit(node); node must not be nil. If the visitor w returned by
// v.Visit(node) is not nil, apply is invoked recursively with visitor
// w for each of the non-nil children of node, followed by a call of
// w.Visit(nil).
func applyCursor(v applyVisitor, c Cursor) {
if v = v.Before(c); v == nil {
return
}
node := c.Node()
// TODO: record the comment groups and interleave with the values like for
// parsing and printing?
applyList(v, c, ast.Comments(node))
// apply children
// (the order of the cases matches the order
// of the corresponding node types in go)
switch n := node.(type) {
// Comments and fields
case *ast.Comment:
// nothing to do
case *ast.CommentGroup:
applyList(v, c, n.List)
case *ast.Attribute:
// nothing to do
case *ast.Field:
apply(v, c, &n.Label)
if n.Value != nil {
apply(v, c, &n.Value)
}
applyList(v, c, n.Attrs)
case *ast.StructLit:
n.Elts = applyDeclList(v, c, n.Elts)
// Expressions
case *ast.BottomLit, *ast.BadExpr, *ast.Ident, *ast.BasicLit:
// nothing to do
case *ast.Interpolation:
applyList(v, c, n.Elts)
case *ast.ListLit:
applyList(v, c, n.Elts)
case *ast.Ellipsis:
if n.Type != nil {
apply(v, c, &n.Type)
}
case *ast.ParenExpr:
apply(v, c, &n.X)
case *ast.SelectorExpr:
apply(v, c, &n.X)
apply(v, c, &n.Sel)
case *ast.IndexExpr:
apply(v, c, &n.X)
apply(v, c, &n.Index)
case *ast.SliceExpr:
apply(v, c, &n.X)
if n.Low != nil {
apply(v, c, &n.Low)
}
if n.High != nil {
apply(v, c, &n.High)
}
case *ast.CallExpr:
apply(v, c, &n.Fun)
applyList(v, c, n.Args)
case *ast.UnaryExpr:
apply(v, c, &n.X)
case *ast.BinaryExpr:
apply(v, c, &n.X)
apply(v, c, &n.Y)
// Declarations
case *ast.ImportSpec:
if n.Name != nil {
apply(v, c, &n.Name)
}
apply(v, c, &n.Path)
case *ast.BadDecl:
// nothing to do
case *ast.ImportDecl:
applyList(v, c, n.Specs)
case *ast.EmbedDecl:
apply(v, c, &n.Expr)
case *ast.LetClause:
apply(v, c, &n.Ident)
apply(v, c, &n.Expr)
case *ast.Alias:
apply(v, c, &n.Ident)
apply(v, c, &n.Expr)
case *ast.Comprehension:
applyList(v, c, n.Clauses)
apply(v, c, &n.Value)
// Files and packages
case *ast.File:
n.Decls = applyDeclList(v, c, n.Decls)
case *ast.Package:
apply(v, c, &n.Name)
case *ast.ForClause:
if n.Key != nil {
apply(v, c, &n.Key)
}
apply(v, c, &n.Value)
apply(v, c, &n.Source)
case *ast.IfClause:
apply(v, c, &n.Condition)
default:
panic(fmt.Sprintf("Walk: unexpected node type %T", n))
}
v.After(c)
}
type applier struct {
before func(Cursor) bool
after func(Cursor) bool
commentStack []commentFrame
current commentFrame
}
type commentFrame struct {
cg []*ast.CommentGroup
pos int8
}
func (f *applier) Before(c Cursor) applyVisitor {
node := c.Node()
if f.before == nil || (f.before(c) && node == c.Node()) {
f.commentStack = append(f.commentStack, f.current)
f.current = commentFrame{cg: ast.Comments(node)}
f.visitComments(c, f.current.pos)
return f
}
return nil
}
func (f *applier) After(c Cursor) bool {
f.visitComments(c, 127)
p := len(f.commentStack) - 1
f.current = f.commentStack[p]
f.commentStack = f.commentStack[:p]
f.current.pos++
if f.after != nil {
f.after(c)
}
return true
}
func (f *applier) visitComments(p Cursor, pos int8) {
c := &f.current
for i, cg := range c.cg {
if cg.Position == pos {
continue
}
cursor := newCursor(p, cg, cg)
if f.before == nil || (f.before(cursor) && !cursor.replaced) {
for j, c := range cg.List {
cursor := newCursor(p, c, &c)
if f.before == nil || (f.before(cursor) && !cursor.replaced) {
if f.after != nil {
f.after(cursor)
}
}
cg.List[j] = cursor.node.(*ast.Comment)
}
if f.after != nil {
f.after(cursor)
}
}
c.cg[i] = cursor.node.(*ast.CommentGroup)
}
}
|