123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- /*
- * ECAL
- *
- * Copyright 2020 Matthias Ladkau. All rights reserved.
- *
- * This Source Code Form is subject to the terms of the MIT
- * License, If a copy of the MIT License was not distributed with this
- * file, You can obtain one at https://opensource.org/licenses/MIT.
- */
- package parser
- import (
- "bytes"
- "fmt"
- "strconv"
- "text/template"
- "devt.de/krotik/common/errorutil"
- "devt.de/krotik/common/stringutil"
- )
- /*
- Map of AST nodes corresponding to lexer tokens
- */
- var prettyPrinterMap map[string]*template.Template
- /*
- Map of nodes where the precedence might have changed because of parentheses
- */
- var bracketPrecedenceMap map[string]bool
- func init() {
- prettyPrinterMap = map[string]*template.Template{
- NodeSTRING: template.Must(template.New(NodeSTRING).Parse("{{.qval}}")),
- NodeNUMBER: template.Must(template.New(NodeNUMBER).Parse("{{.val}}")),
- // NodeIDENTIFIER - Special case (handled in code)
- // Constructed tokens
- // NodeSTATEMENTS - Special case (handled in code)
- // NodeFUNCCALL - Special case (handled in code)
- NodeCOMPACCESS + "_1": template.Must(template.New(NodeCOMPACCESS).Parse("[{{.c1}}]")),
- // TokenLIST - Special case (handled in code)
- // TokenMAP - Special case (handled in code)
- // TokenPARAMS - Special case (handled in code)
- NodeGUARD + "_1": template.Must(template.New(NodeGUARD).Parse("{{.c1}}")),
- // Condition operators
- NodeGEQ + "_2": template.Must(template.New(NodeGEQ).Parse("{{.c1}} >= {{.c2}}")),
- NodeLEQ + "_2": template.Must(template.New(NodeLEQ).Parse("{{.c1}} <= {{.c2}}")),
- NodeNEQ + "_2": template.Must(template.New(NodeNEQ).Parse("{{.c1}} != {{.c2}}")),
- NodeEQ + "_2": template.Must(template.New(NodeEQ).Parse("{{.c1}} == {{.c2}}")),
- NodeGT + "_2": template.Must(template.New(NodeGT).Parse("{{.c1}} > {{.c2}}")),
- NodeLT + "_2": template.Must(template.New(NodeLT).Parse("{{.c1}} < {{.c2}}")),
- // Separators
- NodeKVP + "_2": template.Must(template.New(NodeKVP).Parse("{{.c1}} : {{.c2}}")),
- NodePRESET + "_2": template.Must(template.New(NodePRESET).Parse("{{.c1}}={{.c2}}")),
- // Arithmetic operators
- NodePLUS + "_1": template.Must(template.New(NodePLUS).Parse("+{{.c1}}")),
- NodePLUS + "_2": template.Must(template.New(NodePLUS).Parse("{{.c1}} + {{.c2}}")),
- NodeMINUS + "_1": template.Must(template.New(NodeMINUS).Parse("-{{.c1}}")),
- NodeMINUS + "_2": template.Must(template.New(NodeMINUS).Parse("{{.c1}} - {{.c2}}")),
- NodeTIMES + "_2": template.Must(template.New(NodeTIMES).Parse("{{.c1}} * {{.c2}}")),
- NodeDIV + "_2": template.Must(template.New(NodeDIV).Parse("{{.c1}} / {{.c2}}")),
- NodeMODINT + "_2": template.Must(template.New(NodeMODINT).Parse("{{.c1}} % {{.c2}}")),
- NodeDIVINT + "_2": template.Must(template.New(NodeDIVINT).Parse("{{.c1}} // {{.c2}}")),
- // Assignment statement
- NodeASSIGN + "_2": template.Must(template.New(NodeASSIGN).Parse("{{.c1}} := {{.c2}}")),
- // Import statement
- NodeIMPORT + "_2": template.Must(template.New(NodeIMPORT).Parse("import {{.c1}} as {{.c2}}")),
- // Sink definition
- // NodeSINK - Special case (handled in code)
- NodeKINDMATCH + "_1": template.Must(template.New(NodeKINDMATCH).Parse("kindmatch {{.c1}}")),
- NodeSCOPEMATCH + "_1": template.Must(template.New(NodeSCOPEMATCH).Parse("scopematch {{.c1}}")),
- NodeSTATEMATCH + "_1": template.Must(template.New(NodeSTATEMATCH).Parse("statematch {{.c1}}")),
- NodePRIORITY + "_1": template.Must(template.New(NodePRIORITY).Parse("priority {{.c1}}")),
- NodeSUPPRESSES + "_1": template.Must(template.New(NodeSUPPRESSES).Parse("suppresses {{.c1}}")),
- // Function definition
- NodeFUNC + "_2": template.Must(template.New(NodeFUNC).Parse("func {{.c1}} {\n{{.c2}}}")),
- NodeFUNC + "_3": template.Must(template.New(NodeFUNC).Parse("func {{.c1}}{{.c2}} {\n{{.c3}}}")),
- NodeRETURN: template.Must(template.New(NodeRETURN).Parse("return")),
- NodeRETURN + "_1": template.Must(template.New(NodeRETURN).Parse("return {{.c1}}")),
- // Boolean operators
- NodeOR + "_2": template.Must(template.New(NodeOR).Parse("{{.c1}} or {{.c2}}")),
- NodeAND + "_2": template.Must(template.New(NodeAND).Parse("{{.c1}} and {{.c2}}")),
- NodeNOT + "_1": template.Must(template.New(NodeNOT).Parse("not {{.c1}}")),
- // Condition operators
- NodeLIKE + "_2": template.Must(template.New(NodeLIKE).Parse("{{.c1}} like {{.c2}}")),
- NodeIN + "_2": template.Must(template.New(NodeIN).Parse("{{.c1}} in {{.c2}}")),
- NodeHASPREFIX + "_2": template.Must(template.New(NodeHASPREFIX).Parse("{{.c1}} hasprefix {{.c2}}")),
- NodeHASSUFFIX + "_2": template.Must(template.New(NodeHASSUFFIX).Parse("{{.c1}} hassuffix {{.c2}}")),
- NodeNOTIN + "_2": template.Must(template.New(NodeNOTIN).Parse("{{.c1}} notin {{.c2}}")),
- // Constant terminals
- NodeTRUE: template.Must(template.New(NodeTRUE).Parse("true")),
- NodeFALSE: template.Must(template.New(NodeFALSE).Parse("false")),
- NodeNULL: template.Must(template.New(NodeNULL).Parse("null")),
- // Conditional statements
- // TokenIF - Special case (handled in code)
- // TokenELIF - Special case (handled in code)
- // TokenELSE - Special case (handled in code)
- // Loop statements
- NodeLOOP + "_2": template.Must(template.New(NodeLOOP).Parse("for {{.c1}} {\n{{.c2}}}\n")),
- NodeBREAK: template.Must(template.New(NodeBREAK).Parse("break")),
- NodeCONTINUE: template.Must(template.New(NodeCONTINUE).Parse("continue")),
- }
- bracketPrecedenceMap = map[string]bool{
- NodePLUS: true,
- NodeMINUS: true,
- NodeAND: true,
- NodeOR: true,
- }
- }
- /*
- PrettyPrint produces pretty printed code from a given AST.
- */
- func PrettyPrint(ast *ASTNode) (string, error) {
- var visit func(ast *ASTNode, level int) (string, error)
- ppMetaData := func(ast *ASTNode, ppString string) string {
- ret := ppString
- // Add meta data
- if len(ast.Meta) > 0 {
- for _, meta := range ast.Meta {
- if meta.Type() == MetaDataPreComment {
- ret = fmt.Sprintf("/*%v*/ %v", meta.Value(), ret)
- } else if meta.Type() == MetaDataPostComment {
- ret = fmt.Sprintf("%v #%v", ret, meta.Value())
- }
- }
- }
- return ret
- }
- visit = func(ast *ASTNode, level int) (string, error) {
- var buf bytes.Buffer
- var numChildren int
- if ast == nil {
- return "", fmt.Errorf("Nil pointer in AST at level: %v", level)
- }
- numChildren = len(ast.Children)
- tempKey := ast.Name
- tempParam := make(map[string]string)
- // First pretty print children
- if numChildren > 0 {
- for i, child := range ast.Children {
- res, err := visit(child, level+1)
- if err != nil {
- return "", err
- }
- if _, ok := bracketPrecedenceMap[child.Name]; ok && ast.binding > child.binding {
- // Put the expression in brackets iff (if and only if) the binding would
- // normally order things differently
- res = fmt.Sprintf("(%v)", res)
- }
- tempParam[fmt.Sprint("c", i+1)] = res
- }
- tempKey += fmt.Sprint("_", len(tempParam))
- }
- // Handle special cases - children in tempParam have been resolved
- if ast.Name == NodeSTATEMENTS {
- // For statements just concat all children
- for i := 0; i < numChildren; i++ {
- buf.WriteString(stringutil.GenerateRollingString(" ", level*4))
- buf.WriteString(tempParam[fmt.Sprint("c", i+1)])
- buf.WriteString("\n")
- }
- return ppMetaData(ast, buf.String()), nil
- } else if ast.Name == NodeSINK {
- buf.WriteString("sink ")
- buf.WriteString(tempParam["c1"])
- buf.WriteString("\n")
- for i := 1; i < len(ast.Children)-1; i++ {
- buf.WriteString(" ")
- buf.WriteString(tempParam[fmt.Sprint("c", i+1)])
- buf.WriteString("\n")
- }
- buf.WriteString("{\n")
- buf.WriteString(tempParam[fmt.Sprint("c", len(ast.Children))])
- buf.WriteString("}\n")
- return ppMetaData(ast, buf.String()), nil
- } else if ast.Name == NodeFUNCCALL {
- // For statements just concat all children
- for i := 0; i < numChildren; i++ {
- buf.WriteString(tempParam[fmt.Sprint("c", i+1)])
- if i < numChildren-1 {
- buf.WriteString(", ")
- }
- }
- return ppMetaData(ast, buf.String()), nil
- } else if ast.Name == NodeIDENTIFIER {
- buf.WriteString(ast.Token.Val)
- for i := 0; i < numChildren; i++ {
- if ast.Children[i].Name == NodeIDENTIFIER {
- buf.WriteString(".")
- buf.WriteString(tempParam[fmt.Sprint("c", i+1)])
- } else if ast.Children[i].Name == NodeFUNCCALL {
- buf.WriteString("(")
- buf.WriteString(tempParam[fmt.Sprint("c", i+1)])
- buf.WriteString(")")
- } else if ast.Children[i].Name == NodeCOMPACCESS {
- buf.WriteString(tempParam[fmt.Sprint("c", i+1)])
- }
- }
- return ppMetaData(ast, buf.String()), nil
- } else if ast.Name == NodeLIST {
- buf.WriteString("[")
- i := 1
- for ; i < numChildren; i++ {
- buf.WriteString(tempParam[fmt.Sprint("c", i)])
- buf.WriteString(", ")
- }
- buf.WriteString(tempParam[fmt.Sprint("c", i)])
- buf.WriteString("]")
- return ppMetaData(ast, buf.String()), nil
- } else if ast.Name == NodeMAP {
- buf.WriteString("{")
- i := 1
- for ; i < numChildren; i++ {
- buf.WriteString(tempParam[fmt.Sprint("c", i)])
- buf.WriteString(", ")
- }
- buf.WriteString(tempParam[fmt.Sprint("c", i)])
- buf.WriteString("}")
- return ppMetaData(ast, buf.String()), nil
- } else if ast.Name == NodePARAMS {
- buf.WriteString("(")
- i := 1
- for ; i < numChildren; i++ {
- buf.WriteString(tempParam[fmt.Sprint("c", i)])
- buf.WriteString(", ")
- }
- buf.WriteString(tempParam[fmt.Sprint("c", i)])
- buf.WriteString(")")
- return ppMetaData(ast, buf.String()), nil
- } else if ast.Name == NodeIF {
- writeGUARD := func(child int) {
- buf.WriteString(tempParam[fmt.Sprint("c", child)])
- buf.WriteString(" {\n")
- buf.WriteString(tempParam[fmt.Sprint("c", child+1)])
- buf.WriteString("}")
- }
- buf.WriteString("if ")
- writeGUARD(1)
- for i := 0; i < len(ast.Children); i += 2 {
- if i+2 == len(ast.Children) && ast.Children[i].Children[0].Name == NodeTRUE {
- buf.WriteString(" else {\n")
- buf.WriteString(tempParam[fmt.Sprint("c", i+2)])
- buf.WriteString("}")
- } else if i > 0 {
- buf.WriteString(" elif ")
- writeGUARD(i + 1)
- }
- }
- buf.WriteString("\n")
- return ppMetaData(ast, buf.String()), nil
- }
- if ast.Token != nil {
- // Adding node value to template parameters
- tempParam["val"] = ast.Token.Val
- tempParam["qval"] = strconv.Quote(ast.Token.Val)
- }
- // Retrieve the template
- temp, ok := prettyPrinterMap[tempKey]
- errorutil.AssertTrue(ok,
- fmt.Sprintf("Could not find template for %v (tempkey: %v)",
- ast.Name, tempKey))
- // Use the children as parameters for template
- errorutil.AssertOk(temp.Execute(&buf, tempParam))
- return ppMetaData(ast, buf.String()), nil
- }
- return visit(ast, 0)
- }
|