This library implements a rather complete and efficient monadic parser combinator library similar to the Parsec library for Haskell by Daan Leijen and the FParsec library for FSharp by Stephan Tolksdorf.
See LICENSE.txt for copying conditions (LGPL with static linking exception).
Home page: https://github.com/murmour/mparser.
MParser used to be a part of ocaml-base, a collection of useful OCaml libraries by Holger Arnold [1].
The monadic interface of MParser is compatible with pa_monad [2].
To build this package, you need:
- OCaml (>= 4.02).
- Dune (>= 1.11) [3].
- Findlib [4].
- Optionally:
re[5] formparser-re. - Optionally:
pcre-ocaml[6] formparser-pcre.
Either use OPAM [7] or build manually with Dune [3].
Installing from OPAM: opam install [sub-library name].
To build manually, cd to this folder and run dune build -p [sub-library name]. Add @install for installation. Add @doc to produce API reference in _build/default/_doc/_html. Consult Dune manual for more options.
Available sub-libraries:
mparser: base library;mparser-re: a plugin that adds support for regular expressions based onre[5] (MParser_REmodule,mparser-refindlib package);mparser-pcre: a plugin that adds support for regular expressions based onpcre-ocaml[6] (MParser_PCREmodule,mparser-pcrefindlib package).
Let's implement a simple expression evaluator.
To save the typing effort, it is often handy to open the MParser module:
open MParserFirst, we define a parsing combinator expr, which handles expression
parsing, taking care of the operator precedence issues:
let infix p op =
Infix (p |>> (fun _ a b -> (`Binop (op, a, b))), Assoc_left)
let operators =
[
[
infix (char '*') `Mul;
infix (char '/') `Div;
];
[
infix (char '+') `Add;
infix (char '-') `Sub;
];
]
let decimal =
many1_chars digit |>> int_of_string
let expr =
expression operators (decimal |>> fun i -> `Int i)Next, we implement an interpreter for our expression tree:
let rec calc = function
| `Int i -> i
| `Binop (op, a, b) ->
match op with
| `Add -> calc a + calc b
| `Sub -> calc a - calc b
| `Mul -> calc a * calc b
| `Div -> calc a / calc bThe evaluator function:
let eval (s: string) : int =
match MParser.parse_string expr s () with
| Success e ->
calc e
| Failed (msg, e) ->
failwith msgUsing it:
eval "4*4+10/2" -> 21Have fun!
| [1] | http://www.holgerarnold.net/software |
| [2] | https://www.cas.mcmaster.ca/~carette/pa_monad |
| [3] | (1, 2) https://github.com/ocaml/dune |
| [4] | http://projects.camlcity.org/projects/findlib.html |
| [5] | (1, 2) https://github.com/ocaml/ocaml-re |
| [6] | (1, 2) https://mmottl.github.io/pcre-ocaml |
| [7] | https://opam.ocaml.org |