mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
dockerscript: support '#' line comments
Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
This commit is contained in:
parent
e1c8dbba97
commit
ffe19414b1
1 changed files with 19 additions and 5 deletions
|
@ -12,8 +12,13 @@ type Command struct {
|
|||
Children []*Command
|
||||
}
|
||||
|
||||
type Scanner struct {
|
||||
scanner.Scanner
|
||||
commentLine bool
|
||||
}
|
||||
|
||||
func Parse(src io.Reader) ([]*Command, error) {
|
||||
s := &scanner.Scanner{}
|
||||
s := &Scanner{}
|
||||
s.Init(src)
|
||||
s.Whitespace = 1<<'\t' | 1<<' '
|
||||
s.Mode = scanner.ScanStrings | scanner.ScanRawStrings | scanner.ScanIdents
|
||||
|
@ -45,7 +50,7 @@ func (cmd *Command) String() string {
|
|||
return cmd.subString(0)
|
||||
}
|
||||
|
||||
func parseArgs(s *scanner.Scanner) ([]string, rune, error) {
|
||||
func parseArgs(s *Scanner) ([]string, rune, error) {
|
||||
var parseError error
|
||||
// FIXME: we overwrite previously set error
|
||||
s.Error = func(s *scanner.Scanner, msg string) {
|
||||
|
@ -59,16 +64,25 @@ func parseArgs(s *scanner.Scanner) ([]string, rune, error) {
|
|||
return args, tok, parseError
|
||||
}
|
||||
text := s.TokenText()
|
||||
// Toggle line comment
|
||||
if strings.HasPrefix(text, "#") {
|
||||
s.commentLine = true
|
||||
} else if text == "\n" || text == "\r" {
|
||||
s.commentLine = false
|
||||
return args, tok, nil
|
||||
}
|
||||
if !s.commentLine {
|
||||
if text == "{" || text == "}" || text == "\n" || text == "\r" || text == ";" {
|
||||
return args, tok, nil
|
||||
}
|
||||
args = append(args, text)
|
||||
}
|
||||
tok = s.Scan()
|
||||
}
|
||||
return args, tok, nil
|
||||
}
|
||||
|
||||
func parse(s *scanner.Scanner, opener string) (expr []*Command, err error) {
|
||||
func parse(s *Scanner, opener string) (expr []*Command, err error) {
|
||||
/*
|
||||
defer func() {
|
||||
fmt.Printf("parse() returned %d commands:\n", len(expr))
|
||||
|
|
Loading…
Reference in a new issue