Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stereobooster/powderizer
parsing with zippers
https://github.com/stereobooster/powderizer
parser parser-combinators parsing parsing-with-zippers zipper
Last synced: 15 days ago
JSON representation
parsing with zippers
- Host: GitHub
- URL: https://github.com/stereobooster/powderizer
- Owner: stereobooster
- Created: 2024-08-31T18:38:39.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-05T11:10:41.000Z (2 months ago)
- Last Synced: 2024-10-07T15:45:56.064Z (about 1 month ago)
- Topics: parser, parser-combinators, parsing, parsing-with-zippers, zipper
- Language: TypeScript
- Homepage: https://powderizer.stereobooster.com/
- Size: 174 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# PoWderiZer: parsing with zippers
This is yet another parser, but with some unique features.
1. **The core algorithm is about 200 lines of code** (excluding extensions and type signatures). Which makes it suitable for learning about parsing and easy to extend (which I did). It is directly taken from the [Parsing with Zippers (Functional Pearl)](https://dl.acm.org/doi/pdf/10.1145/3408990). I recommend to read it - it is quite short and explains algorithm pretty well. Or watch [this video](https://www.youtube.com/watch?v=6Wi-Kc6LDhc).
2. It can handle **left recursion** and **ambiguous grammars**. Which makes it easier to use for newbies. One doesn't need to bend their grammar in order to fit restrictions of an algorithm.
3. Extensions to the core algorithm add ability to **express shape of the desired tree** without need to massage it after parsing. Which makes it trully portable grammar - where is other parsers may need additional augmentation (A in ABNF) in hosting language.
4. Can work with lexer (array of tokens as input) and without (array of chars, or string), so called scannerless parser.As of now this is rather proof of concept of the idea. Parser works, but it speed is probably not the best.
## Backstory
I was looking for approachable parser. I read couple of papers about parsing and it is quite hard to understand what is happening there.
Then I found [Parsing with Derivatives (A Functional Pearl)](https://matt.might.net/papers/might2011derivatives.pdf). This algorithm was easy to follow. I managed to write [my first parser](https://github.com/stereobooster/parsing-with-derivalives). I learned a lot about parsers and formal grammars. Unfortunately algorithm is quite slow and doesn't produce tree in the shape that I want. I left it there
Later I found another paper [Parsing with Zippers (Functional Pearl)](https://dl.acm.org/doi/pdf/10.1145/3408990), which is the twist to the first paper. It promised to be more performant and I figured I can manipulate tree shape.
So I [started my implementation](https://github.com/stereobooster/zipper). I wanted to build it from the ground up - to make sure I understand every bit. I implemented zippers, I implemented vizualization. Then I started experimenting with different extensions, like Kleene star, negative lookahed, ordered choice. I got carried away a bit.
After all I created small [digital garden about parsing](https://parsing.stereobooster.com/). See:
- [Zipper explanation](https://parsing.stereobooster.com/zipper/)
- [Parsing with zipper playground](https://parsing.stereobooster.com/playground/)I had an idea about tree shape manipulation and adding PEG operators (negative lookahead, ordered choice) when I was implementing first version of PwZ (back in 2023). But recently I discovered [Instaparse](https://github.com/Engelberg/instaparse) - which has all the same ideas. So I [tried to compile it to JS](https://github.com/stereobooster/instaparsejs). It works. But due to clojure runtime library weight is more than 200kb.
Fast forward to the present day. I decided to write cleaner version from scratch, omit the bits I'm not sure about and publish as a library.
## Grammar
The parser itslef is in the category of interpreters (oposite to parser generators). It's API is based on parser combinators (traditional for functional language parsers). Though DSL (parser combinators) has some caveats - that is why they are not exposed and instead one needs to write grammar to use parser.
Grammar itself is variation of [regular extensions to BNF](https://matt.might.net/articles/grammars-bnf-ebnf/). Or you can call it Chomsky CFG with regular extensions.
Classical BNF (Backus–Naur form):
```
::= "a" | ""
```Chomsky CFG (context free grammar):
```
S -> S "a" | ""
```Grammar used by this library:
```
S = S "a" | ""
```- ` ` (space) - concatenation
- `|` - unordered choice
- `"a"` - token aka string, terminal, character, lexeme
- `S` - symbol aka variable, non-terminalAnd regular extensions (extensions comming from regular expressions)
- `a*` - Kleene star. Any number of `a`
- `a+` - Kleene "plus". One or more `a`
- `a?` - Kleene "question". Zero or one `a`
- `a{...}` - [quantifiers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Quantifier#description)
- `#"[a-z]"` - regular expressionAnd tree manipulation extension
## Tree-shape manipulation
Simplest example. Grammar: `S = "a"`. Input: `a`
![](./examples/1.svg)
It produces exactly one node with tag `S` and value `a`.
Now let's try sequences (fixed length). Input `aaa`
| `S = "a" "a" "a"` | `S = A A A; A = "a"` | `S = A A A; = "a"` |
| --------------------------------------- | ----------------------- | ----------------------- |
| ![](./examples/2_1.svg) | ![](./examples/2_2.svg) | ![](./examples/2_3.svg) |
| Pay attention there are no tags on `a`s | | |Sequences unlimited length. Input `aaa`
| `S = S "a" \| ""` | `S = "a" S \| ""` | `S = "a"*` |
| ----------------------- | ----------------------- | ----------------------- |
| ![](./examples/3_1.svg) | ![](./examples/3_2.svg) | ![](./examples/3_3.svg) |### Delimited list
For example, list of arguments in function call `foo(a,a,a)`. Input: `a,a,a`
| `S = A ("," A)*; A = "a"` | `S = A (<","> A)*; A = "a"` | `S = (A (<","> A)*)?; A = "a"` |
| ------------------------- | --------------------------- | ------------------------------ |
| ![](./examples/4_1.svg) | ![](./examples/4_2.svg) | ![](./examples/4_2.svg) |
| | | Allows zero items in the list |Pay attention how `*` and `<>` allows precisely recreate tree structure without need to explicitly remove some nodes or flatten tree.
### Quoted string
Quite primitive implementation - doesn't support escape characters, like `\"`, `\\`, etc.
| `string = <"\""> (#"[^\"]")* <"\"">` | `string = [<"\""> (#"[^\"]")* <"\"">]` |
| ------------------------------------ | -------------------------------------- |
| ![](./examples/5_1.svg) | ![](./examples/5_2.svg) |### JSON example
Full JSON grammar except string (it is not according [spec](https://www.json.org/json-en.html))
```
= ws value ws
= null | true | false | array | object | number | string
null = <"null">
true = <"true">
false = <"false">
array = <"["> ws (value (ws <","> ws value)*)? ws <"]">
object = <"{"> ws (member (ws <","> ws member)*)? ws <"}">
member = string ws <":"> ws value
number = [integer fraction? exponent?]
onenine = #"[1-9]"
digit = "0" | onenine
integer = "-"? ("0" | onenine digit*)
fraction = "." digit+
exponent = ("E" | "e") ("+" | "-")? digit+
string = <"\""> [#"[^\"]"*] <"\"">
= <#"\\s"*>
```Parse tree for `{"i": 1, "s": "a", "a": [], "f": -0.1E+1, "o": {}}`
![](./examples/6.svg)
## Issues and future improvements
1. There is no reporting for syntax errors. It either can parse or can't, it doesn't give a clue why it can't parse. Which is the biggest pain point right now
2. I want to investigate idea of macros (or functions), like in [Rosie](https://gitlab.com/rosie-pattern-language/rosie/-/blob/master/doc/rpl.md)
3. I wonder if it is possible to implement other operators, like negative lookahead, ordered choice, backreferences, limited negation.
4. What about disambiguation filters?## Packages
- [powderizer](/packages/powderizer/) - main package ![NPM Version](https://img.shields.io/npm/v/powderizer)
- [demo](/packages/demo/) - demo [![Netlify Status](https://api.netlify.com/api/v1/badges/9b635404-cb4b-45f1-805e-3ba6e5171f9d/deploy-status)](https://app.netlify.com/sites/radiant-torte-4c446b/deploys)