goparsify [![CircleCI](https://circleci.com/gh/Vektah/goparsify/tree/master.svg?style=shield)](https://circleci.com/gh/Vektah/goparsify/tree/master) [![godoc](http://b.repl.ca/v1/godoc-reference-blue.png)](https://godoc.org/github.com/Vektah/goparsify) [![Go Report Card](https://goreportcard.com/badge/github.com/vektah/goparsify)](https://goreportcard.com/report/github.com/vektah/goparsify) ========= A parser-combinator library for building easy to test, read and maintain parsers using functional composition. Everything should be unicode safe by default, but you can opt out of unicode whitespace for a decent ~20% performance boost. ```go Run(parser, input, ASCIIWhitespace) ``` ### benchmarks I dont have many benchmarks set up yet, but the json parser keeps up with the stdlib for raw speed: ``` $ go test -bench=. -benchtime=2s -benchmem ./json BenchmarkUnmarshalParsec-8 50000 66012 ns/op 50462 B/op 1318 allocs/op BenchmarkUnmarshalParsify-8 100000 46713 ns/op 44543 B/op 332 allocs/op BenchmarkUnmarshalStdlib-8 100000 46967 ns/op 13952 B/op 262 allocs/op PASS ok github.com/vektah/goparsify/json 14.424s ``` ### debugging parsers When a parser isnt working as you intended you can build with debugging and enable logging to get a detailed log of exactly what the parser is doing. 1. First build with debug using `-tags debug` 2. enable logging by calling `EnableLogging(os.Stdout)` in your code This works great with tests, eg in the goparsify source tree ``` $ cd html $ go test -tags debug -parselogs html.go:50 | hello

hello

hello

hello

hello

hello

hello

| > html.go:26 | hello

| < | < html.go:20 | color="blue">w | p | identifier html.go:35 | color="blue">w | | attrs html.go:34 | color="blue">w | | attr html.go:20 | ="blue">worldworld

world

world

world

| > html.go:26 | world

| world | text html.go:25 |

| | element html.go:21 |

| fail | text html.go:50 |

| | tag html.go:45 |

| | tstart html.go:45 | /p> | < | < html.go:20 | /p> | fail | identifier html.go:46 |

| | tend html.go:46 | p> | | p | identifier html.go:46 | | > | > html.go:25 | | | element html.go:21 | | fail | text html.go:50 | | | tag html.go:45 | | | tstart html.go:45 | /body> | < | < html.go:20 | /body> | fail | identifier html.go:46 | | | tend html.go:46 | body> | | body | identifier html.go:46 | | > | > PASS ok github.com/vektah/goparsify/html 0.118s ``` ### debugging performance If you build the parser with -tags debug it will instrument each parser and a call to DumpDebugStats() will show stats: | var name | matches | total time | self time | calls | errors | location | -------------------- | -------------------- | --------------- | --------------- | ---------- | ---------- | ---------- | _value | Any() | 5.0685431s | 34.0131ms | 878801 | 0 | json.go:36 | _object | Seq() | 3.7513821s | 10.5038ms | 161616 | 40403 | json.go:24 | _properties | Some() | 3.6863512s | 5.5028ms | 121213 | 0 | json.go:14 | _properties | Seq() | 3.4912614s | 46.0229ms | 818185 | 0 | json.go:14 | _array | Seq() | 931.4679ms | 3.5014ms | 65660 | 55558 | json.go:16 | _array | Some() | 911.4597ms | 0s | 10102 | 0 | json.go:16 | _properties | string literal | 126.0662ms | 44.5201ms | 818185 | 0 | json.go:14 | _string | string literal | 67.033ms | 26.0126ms | 671723 | 136369 | json.go:12 | _properties | : | 50.0238ms | 45.0205ms | 818185 | 0 | json.go:14 | _properties | , | 48.5189ms | 36.0146ms | 818185 | 121213 | json.go:14 | _number | number literal | 28.5159ms | 10.5062ms | 287886 | 106066 | json.go:13 | _true | true | 17.5086ms | 12.5069ms | 252537 | 232332 | json.go:10 | _null | null | 14.5082ms | 11.007ms | 252538 | 252535 | json.go:9 | _object | } | 10.5051ms | 10.5033ms | 121213 | 0 | json.go:24 | _false | false | 10.5049ms | 5.0019ms | 232333 | 222229 | json.go:11 | _object | { | 10.0046ms | 5.0052ms | 161616 | 40403 | json.go:24 | _array | , | 4.5024ms | 4.0018ms | 50509 | 10102 | json.go:16 | _array | [ | 4.5014ms | 2.0006ms | 65660 | 55558 | json.go:16 | _array | ] | 0s | 0s | 10102 | 0 | json.go:16 All times are cumulative, it would be nice to break this down into a parse tree with relative times. This is a nice addition to pprof as it will break down the parsers based on where they are used instead of grouping them all by type. This is **free** when the debug tag isnt used. ### example calculator Lets say we wanted to build a calculator that could take an expression and calculate the result. Lets start with test: ```go func TestNumbers(t *testing.T) { result, err := Calc(`1`) require.NoError(t, err) require.EqualValues(t, 1, result) } ``` Then define a parser for numbers ```go var number = NumberLit().Map(func(n Result) Result { switch i := n.Result.(type) { case int64: return Result{Result: float64(i)} case float64: return Result{Result: i} default: panic(fmt.Errorf("unknown value %#v", i)) } }) func Calc(input string) (float64, error) { result, err := Run(y, input) if err != nil { return 0, err } return result.(float64), nil } ``` This parser will return numbers either as float64 or int depending on the literal, for this calculator we only want floats so we Map the results and type cast. Run the tests and make sure everything is ok. Time to add addition ```go func TestAddition(t *testing.T) { result, err := Calc(`1+1`) require.NoError(t, err) require.EqualValues(t, 2, result) } var sumOp = Chars("+-", 1, 1) sum = Seq(number, Some(And(sumOp, number))).Map(func(n Result) Result { i := n.Child[0].Result.(float64) for _, op := range n.Child[1].Child { switch op.Child[0].Token { case "+": i += op.Child[1].Result.(float64) case "-": i -= op.Child[1].Result.(float64) } } return Result{Result: i} }) // and update Calc to point to the new root parser -> `result, err := ParseString(sum, input)` ``` This parser will match number ([+-] number)+, then map its to be the sum. See how the Child map directly to the positions in the parsers? n is the result of the and, `n.Child[0]` is its first argument, `n.Child[1]` is the result of the Some parser, `n.Child[1].Child[0]` is the result of the first And and so fourth. Given how closely tied the parser and the Map are it is good to keep the two together. You can continue like this and add multiplication and parenthesis fairly easily. Eventually if you keep adding parsers you will end up with a loop, and go will give you a handy error message like: ``` typechecking loop involving value = goparsify.Any(number, groupExpr) ``` we need to break the loop using a pointer, then set its value in init ```go var ( value Parser prod = Seq(&value, Some(And(prodOp, &value))) ) func init() { value = Any(number, groupExpr) } ``` Take a look at [calc](calc/calc.go) for a full example. ### preventing backtracking with cuts A cut is a marker that prevents backtracking past the point it was set. This greatly improves error messages when used correctly: ```go alpha := Chars("a-z") // without a cut if the close tag is left out the parser will backtrack and ignore the rest of the string nocut := Many(Any(Seq("<", alpha, ">"), alpha)) _, err := Run(nocut, "asdf "), alpha)) _, err = Run(cut, "asdf ``` ### prior art Inspired by https://github.com/prataprc/goparsec