-
-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial version, started off from a fairly modified copy of syntax's code that parses [[ expressions. From that, we had to remove handling of some tokens like (, &&, and =~. Also had to rework the logic a bit to merge p.tok into p.val, since we only have strings here. Need to add more tests for parse errors. Updates #97.
- Loading branch information
Showing
3 changed files
with
252 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
// Copyright (c) 2017, Daniel Martí <mvdan@mvdan.cc> | ||
// See LICENSE for licensing information | ||
|
||
package interp | ||
|
||
import ( | ||
"github.com/mvdan/sh/syntax" | ||
) | ||
|
||
const illegalTok = 0 | ||
|
||
type testParser struct { | ||
eof bool | ||
val string | ||
rem []string | ||
|
||
err func(format string, a ...interface{}) | ||
} | ||
|
||
func (p *testParser) next() { | ||
if p.eof || len(p.rem) == 0 { | ||
p.eof = true | ||
return | ||
} | ||
p.val = p.rem[0] | ||
p.rem = p.rem[1:] | ||
} | ||
|
||
func (p *testParser) followWord(fval string) *syntax.Word { | ||
if p.eof { | ||
p.err("%s must be followed by a word", fval) | ||
} | ||
p.next() | ||
return &syntax.Word{Parts: []syntax.WordPart{ | ||
&syntax.Lit{Value: p.val}, | ||
}} | ||
} | ||
|
||
func (p *testParser) classicTest(fval string, level int) syntax.TestExpr { | ||
var left syntax.TestExpr | ||
if level > 1 { | ||
left = p.testExprBase(fval) | ||
} else { | ||
left = p.classicTest(fval, level+1) | ||
} | ||
if left == nil || p.eof { | ||
return left | ||
} | ||
op := testBinaryOp(p.val) | ||
var newLevel int | ||
switch op { | ||
case illegalTok: | ||
p.err("not a valid test operator: %s", p.val) | ||
case syntax.AndTest, syntax.OrTest: | ||
default: | ||
newLevel = 1 | ||
} | ||
if newLevel < level { | ||
return left | ||
} | ||
b := &syntax.BinaryTest{ | ||
Op: op, | ||
X: left, | ||
} | ||
switch b.Op { | ||
case syntax.AndTest, syntax.OrTest: | ||
p.next() | ||
if b.Y = p.classicTest(b.Op.String(), newLevel); b.Y == nil { | ||
//p.followErrExp(b.OpPos, b.Op.String()) | ||
} | ||
default: | ||
p.next() | ||
b.Y = p.followWord(b.Op.String()) | ||
} | ||
return b | ||
} | ||
|
||
func (p *testParser) testExprBase(fval string) syntax.TestExpr { | ||
if p.eof { | ||
return nil | ||
} | ||
op := testUnaryOp(p.val) | ||
switch op { | ||
case syntax.TsNot: | ||
u := &syntax.UnaryTest{Op: op} | ||
p.next() | ||
u.X = p.classicTest(op.String(), 0) | ||
return u | ||
case illegalTok: | ||
return p.followWord(fval) | ||
default: | ||
u := &syntax.UnaryTest{Op: op} | ||
p.next() | ||
u.X = p.followWord(fval) | ||
return u | ||
} | ||
} | ||
|
||
// testUnaryOp is an exact copy of syntax's. | ||
func testUnaryOp(val string) syntax.UnTestOperator { | ||
switch val { | ||
case "!": | ||
return syntax.TsNot | ||
case "-e", "-a": | ||
return syntax.TsExists | ||
case "-f": | ||
return syntax.TsRegFile | ||
case "-d": | ||
return syntax.TsDirect | ||
case "-c": | ||
return syntax.TsCharSp | ||
case "-b": | ||
return syntax.TsBlckSp | ||
case "-p": | ||
return syntax.TsNmPipe | ||
case "-S": | ||
return syntax.TsSocket | ||
case "-L", "-h": | ||
return syntax.TsSmbLink | ||
case "-k": | ||
return syntax.TsSticky | ||
case "-g": | ||
return syntax.TsGIDSet | ||
case "-u": | ||
return syntax.TsUIDSet | ||
case "-G": | ||
return syntax.TsGrpOwn | ||
case "-O": | ||
return syntax.TsUsrOwn | ||
case "-N": | ||
return syntax.TsModif | ||
case "-r": | ||
return syntax.TsRead | ||
case "-w": | ||
return syntax.TsWrite | ||
case "-x": | ||
return syntax.TsExec | ||
case "-s": | ||
return syntax.TsNoEmpty | ||
case "-t": | ||
return syntax.TsFdTerm | ||
case "-z": | ||
return syntax.TsEmpStr | ||
case "-n": | ||
return syntax.TsNempStr | ||
case "-o": | ||
return syntax.TsOptSet | ||
case "-v": | ||
return syntax.TsVarSet | ||
case "-R": | ||
return syntax.TsRefVar | ||
default: | ||
return illegalTok | ||
} | ||
} | ||
|
||
// testBinaryOp is like syntax's, but with -a and -o, and without =~. | ||
func testBinaryOp(val string) syntax.BinTestOperator { | ||
switch val { | ||
case "-a": | ||
return syntax.AndTest | ||
case "-o": | ||
return syntax.OrTest | ||
case "==", "=": | ||
return syntax.TsMatch | ||
case "!=": | ||
return syntax.TsNoMatch | ||
case "-nt": | ||
return syntax.TsNewer | ||
case "-ot": | ||
return syntax.TsOlder | ||
case "-ef": | ||
return syntax.TsDevIno | ||
case "-eq": | ||
return syntax.TsEql | ||
case "-ne": | ||
return syntax.TsNeq | ||
case "-le": | ||
return syntax.TsLeq | ||
case "-ge": | ||
return syntax.TsGeq | ||
case "-lt": | ||
return syntax.TsLss | ||
case "-gt": | ||
return syntax.TsGtr | ||
default: | ||
return illegalTok | ||
} | ||
} |