vote up 5 vote down star
3

Hi, I'm looking for a good ocaml parsing library that isn't a derivative of flex/bison. Ideally, I'd like a monadic combinator library along the lines of parsec, but I can't find anything.

I would use haskell, but making llvm bindings for haskell is proving more tiresome than I originally thought.

Cheers,

Duane

flag
Do you want a parser for OCaml as an input language, or a parser generator with OCaml as an implementation language/ – Chris Conway Nov 21 '08 at 3:57
hi duane, as someone interested in the same thing, i would like to know if you found a decent library in the end, and how it worked out for you. – Martin DeMello Nov 1 at 10:10

2 Answers

vote up 4 vote down check

Here's one library, via Google. (Which also brought up this and this, which lists several more relevant-sounding libraries.)

When I wrote a combinator parser in ML, it turned out rather cumbersome to use because of the value restriction and eager evaluation, which forced you to eta-expand your grammar rules. Ocaml is said to be more relaxed about the value restriction, though -- maybe you'll be spared some of that pain.

link|flag
I'm a parser combinator newbie, but in seems that FParsec doesn't force you to eta-expand (and F# has value restriction and eager evaluation). Please correct me if I'm wrong. Thanks. – Mauricio Scheffer Jan 19 at 1:55
IIRC this came up with recursive or mutually-recursive productions. Not everything's naturally expressed in a Kleene star. It's been over a decade since I did this, though -- hard to remember the problems. – Darius Bacon Jan 19 at 3:26
vote up 3 vote down

In the OCaml world, stream-based parsers and Camlp4 are the next two most common alternatives. Both have been described in detail in previous OCaml Journal articles.

Monadic parser combinators are comparatively rare in OCaml, largely because there are several higher-level and vastly more efficient libraries available.

link|flag
I'm learning about parser combinators. When you say "several higher-level and vastly more efficient libraries available", which ones do you mean? Thanks. – Mauricio Scheffer Jan 19 at 1:47
Also, how would they compare to FParsec? – Mauricio Scheffer Jan 19 at 1:48
I'm referring to camlp4, ocamllex, ulex, ocamlyacc, dpygen, menhir, ocfgc, aurochs and others. I found that ocamllex and ocamlyacc were generally several times faster at parsing than anything available for F# such as fslex, fsyacc and FParsec. – Jon Harrop Sep 7 at 21:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.