2014-08-05 16:17:40 -04:00
|
|
|
package parser
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// QuoteString walks characters (after trimming), escapes any quotes and
|
|
|
|
// escapes, then wraps the whole thing in quotes. Very useful for generating
|
|
|
|
// argument output in nodes.
|
|
|
|
func QuoteString(str string) string {
|
|
|
|
result := ""
|
|
|
|
chars := strings.Split(strings.TrimSpace(str), "")
|
|
|
|
|
|
|
|
for _, char := range chars {
|
|
|
|
switch char {
|
|
|
|
case `"`:
|
|
|
|
result += `\"`
|
|
|
|
case `\`:
|
|
|
|
result += `\\`
|
|
|
|
default:
|
|
|
|
result += char
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return `"` + result + `"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// dumps the AST defined by `node` as a list of sexps. Returns a string
|
|
|
|
// suitable for printing.
|
|
|
|
func (node *Node) Dump() string {
|
|
|
|
str := ""
|
|
|
|
str += node.Value
|
|
|
|
|
|
|
|
for _, n := range node.Children {
|
|
|
|
str += "(" + n.Dump() + ")\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
if node.Next != nil {
|
|
|
|
for n := node.Next; n != nil; n = n.Next {
|
|
|
|
if len(n.Children) > 0 {
|
|
|
|
str += " " + n.Dump()
|
|
|
|
} else {
|
2014-08-05 18:41:09 -04:00
|
|
|
str += " " + QuoteString(n.Value)
|
2014-08-05 16:17:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.TrimSpace(str)
|
|
|
|
}
|
|
|
|
|
|
|
|
// performs the dispatch based on the two primal strings, cmd and args. Please
|
|
|
|
// look at the dispatch table in parser.go to see how these dispatchers work.
|
2014-08-13 06:07:41 -04:00
|
|
|
func fullDispatch(cmd, args string) (*Node, map[string]bool, error) {
|
2014-08-05 16:17:40 -04:00
|
|
|
if _, ok := dispatch[cmd]; !ok {
|
2014-08-13 06:07:41 -04:00
|
|
|
return nil, nil, fmt.Errorf("'%s' is not a valid dockerfile command", cmd)
|
2014-08-05 16:17:40 -04:00
|
|
|
}
|
|
|
|
|
2014-08-13 06:07:41 -04:00
|
|
|
sexp, attrs, err := dispatch[cmd](args)
|
2014-08-05 16:17:40 -04:00
|
|
|
if err != nil {
|
2014-08-13 06:07:41 -04:00
|
|
|
return nil, nil, err
|
2014-08-05 16:17:40 -04:00
|
|
|
}
|
|
|
|
|
2014-08-13 06:07:41 -04:00
|
|
|
return sexp, attrs, nil
|
2014-08-05 16:17:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// splitCommand takes a single line of text and parses out the cmd and args,
|
|
|
|
// which are used for dispatching to more exact parsing functions.
|
|
|
|
func splitCommand(line string) (string, string) {
|
|
|
|
cmdline := TOKEN_WHITESPACE.Split(line, 2)
|
|
|
|
cmd := strings.ToLower(cmdline[0])
|
|
|
|
// the cmd should never have whitespace, but it's possible for the args to
|
|
|
|
// have trailing whitespace.
|
|
|
|
return cmd, strings.TrimSpace(cmdline[1])
|
|
|
|
}
|
|
|
|
|
|
|
|
// covers comments and empty lines. Lines should be trimmed before passing to
|
|
|
|
// this function.
|
|
|
|
func stripComments(line string) string {
|
|
|
|
// string is already trimmed at this point
|
|
|
|
if TOKEN_COMMENT.MatchString(line) {
|
|
|
|
return TOKEN_COMMENT.ReplaceAllString(line, "")
|
|
|
|
}
|
|
|
|
|
|
|
|
return line
|
|
|
|
}
|