|
1 |
| -# pears |
| 1 | +# Pears - A parser combinator library for Gleam |
2 | 2 |
|
3 | 3 | [](https://hex.pm/packages/pears)
|
4 | 4 | [](https://hexdocs.pm/pears/)
|
5 | 5 |
|
| 6 | +🚧️ **This library is in early development. Expect breaking changes.** 🚧 |
| 7 | + |
| 8 | +## Installation |
| 9 | + |
6 | 10 | ```sh
|
7 | 11 | gleam add pears
|
8 | 12 | ```
|
9 | 13 |
|
| 14 | +## Usage |
| 15 | + |
10 | 16 | ```gleam
|
11 |
| -import pears |
| 17 | +import pears.{type Parser, Parsed} |
| 18 | +import pears/chars.{type Char, number} |
| 19 | +import pears/combinators.{alt, between, just, lazy, map, sep_by0} |
| 20 | +
|
| 21 | +pub type Tree(a) { |
| 22 | + Leaf(a) |
| 23 | + Node(List(Tree(a))) |
| 24 | +} |
| 25 | +
|
| 26 | +fn tree_parser(p: Parser(Char, a)) -> Parser(Char, Tree(a)) { |
| 27 | + let tree = lazy(fn() { tree_parser(p) }) |
| 28 | + let leaf = map(p, Leaf) |
| 29 | + let node = |
| 30 | + tree |
| 31 | + |> sep_by0(just(",")) |
| 32 | + |> between(just("["), just("]")) |
| 33 | + |> map(Node) |
| 34 | + alt(leaf, node) |
| 35 | +} |
12 | 36 |
|
13 | 37 | pub fn main() {
|
14 |
| - // TODO: An example of the project in use |
| 38 | + let parse_result = |
| 39 | + "[1,[2,3],4]" |
| 40 | + |> chars.input() |
| 41 | + |> tree_parser(number()) |
| 42 | +
|
| 43 | + let assert Ok(Parsed([], Node([Leaf(1), Node([Leaf(2), Leaf(3)]), Leaf(4)]))) = |
| 44 | + parse_result |
15 | 45 | }
|
16 | 46 | ```
|
17 | 47 |
|
18 |
| -Further documentation can be found at <https://hexdocs.pm/pears>. |
| 48 | +Further documentation can be found at [https://hexdocs.pm/pears](https://hexdocs.pm/pears/pears.html). |
| 49 | + |
| 50 | +See the [test](./test) directory for more examples. |
| 51 | + |
| 52 | +## What's missing? |
| 53 | + |
| 54 | +- Proper error handling |
| 55 | +- Test helpers |
| 56 | +- ... |
19 | 57 |
|
20 | 58 | ## Development
|
21 | 59 |
|
22 | 60 | ```sh
|
23 |
| -gleam run # Run the project |
24 | 61 | gleam test # Run the tests
|
25 | 62 | gleam shell # Run an Erlang shell
|
26 | 63 | ```
|
0 commit comments