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
|
package parse
import (
"bytes"
"fmt"
"io"
"reflect"
"strconv"
)
const (
maxL int = 10
maxR = 10
indentInc = 2
)
// PPrintAST pretty-prints the AST part of a Node.
func PPrintAST(n Node) string {
var b bytes.Buffer
PPrintASTTo(n, &b)
return b.String()
}
// PPrintASTTo pretty-prints the AST part of a Node to a Writer.
func PPrintASTTo(n Node, wr io.Writer) {
pprintAST(n, wr, 0, "")
}
type field struct {
name string
tag reflect.StructTag
value interface{}
}
var zeroValue reflect.Value
func pprintAST(n Node, wr io.Writer, indent int, leading string) {
nodeType := reflect.TypeOf((*Node)(nil)).Elem()
var childFields, childrenFields, propertyFields []field
nt := reflect.TypeOf(n).Elem()
nv := reflect.ValueOf(n).Elem()
for i := 0; i < nt.NumField(); i++ {
f := nt.Field(i)
if f.Anonymous {
// embedded node struct, skip
continue
}
ft := f.Type
fv := nv.Field(i)
if ft.Kind() == reflect.Slice {
// list of children
if ft.Elem().Implements(nodeType) {
childrenFields = append(childrenFields,
field{f.Name, f.Tag, fv.Interface()})
continue
}
} else if child, ok := fv.Interface().(Node); ok {
// a child node
if reflect.Indirect(fv) != zeroValue {
childFields = append(childFields,
field{f.Name, f.Tag, child})
}
continue
}
// a property
propertyFields = append(propertyFields,
field{f.Name, f.Tag, fv.Interface()})
}
// has only one child and nothing more : coalesce
if len(n.Children()) == 1 &&
n.Children()[0].SourceText() == n.SourceText() {
pprintAST(n.Children()[0], wr, indent, leading+nt.Name()+"/")
return
}
// print heading
//b := n.n()
//fmt.Fprintf(wr, "%*s%s%s %s %d-%d", indent, "",
// wr.leading, nt.Name(), compactQuote(b.source(src)), b.begin, b.end)
fmt.Fprintf(wr, "%*s%s%s", indent, "", leading, nt.Name())
// print properties
for _, pf := range propertyFields {
fmtstring := pf.tag.Get("fmt")
if len(fmtstring) > 0 {
fmt.Fprintf(wr, " %s="+fmtstring, pf.name, pf.value)
} else {
value := pf.value
if s, ok := value.(string); ok {
value = compactQuote(s)
}
fmt.Fprintf(wr, " %s=%v", pf.name, value)
}
}
fmt.Fprint(wr, "\n")
// print lone children recursively
for _, chf := range childFields {
// TODO the name is omitted
pprintAST(chf.value.(Node), wr, indent+indentInc, "")
}
// print children list recursively
for _, chf := range childrenFields {
children := reflect.ValueOf(chf.value)
if children.Len() == 0 {
continue
}
// fmt.Fprintf(wr, "%*s.%s:\n", indent, "", chf.name)
for i := 0; i < children.Len(); i++ {
n := children.Index(i).Interface().(Node)
pprintAST(n, wr, indent+indentInc, "")
}
}
}
// PPrintParseTree pretty-prints the parse tree part of a Node.
func PPrintParseTree(n Node) string {
var b bytes.Buffer
PPrintParseTreeTo(n, &b)
return b.String()
}
// PPrintParseTreeTo pretty-prints the parse tree part of a Node to a Writer.
func PPrintParseTreeTo(n Node, wr io.Writer) {
pprintParseTree(n, wr, 0)
}
func pprintParseTree(n Node, wr io.Writer, indent int) {
leading := ""
for len(n.Children()) == 1 {
leading += reflect.TypeOf(n).Elem().Name() + "/"
n = n.Children()[0]
}
fmt.Fprintf(wr, "%*s%s%s\n", indent, "", leading, summary(n))
for _, ch := range n.Children() {
pprintParseTree(ch, wr, indent+indentInc)
}
}
func summary(n Node) string {
return fmt.Sprintf("%s %s %d-%d", reflect.TypeOf(n).Elem().Name(),
compactQuote(n.SourceText()), n.Begin(), n.End())
}
func compactQuote(text string) string {
if len(text) > maxL+maxR+3 {
text = text[0:maxL] + "..." + text[len(text)-maxR:]
}
return strconv.Quote(text)
}
|