Type level string (Symbol
) parser combinators. A Parsec-like
for Symbol
s; thus, Symparsec! With many of the features you'd expect:
- define parsers compositionally, largely as you would on the term level
- pretty, detailed parse errors
- decent performance (for simple parsers)
Parsers may also be reified and used at runtime with guaranteed identical behaviour via a healthy dose of singletons.
Requires GHC >= 9.6.
Define a type-level parser:
import Symparsec
type PExample = Skip 1 :*>: Isolate 2 NatHex :<*>: (Literal "_" :*>: TakeRest)
Use it to parse a type-level string (in a GHCi session):
ghci> :k! Run PExample "xFF_etc"
Run ...
= Right '( '(255, "etc"), "")
Use it to parse a different, term-level string:
ghci> import Singleraeh.Demote ( demote )
ghci> run' @PExample demote "abc_123"
Right ((188,"123"),"")
Via GHC.Generics
, we may inspect Haskell data types on the type level.
Constructor names are Symbols
. Ever reify these, then perform some sort of
checking or parsing on the term level? Symparsec does the parsing on the type
level instead. Catch bugs earlier, get faster runtime.
Also type-level Haskell authors deserve fun libraries too!!
A parser is a 3-tuple of:
- a character parser; given a character and a state, returns
Cont s
: keep going, here's the next states
Done r
: parse successful with valuer
, do not consume characterErr E
: parse error, details in theE
(a structured error)
- an end handler, which takes only a state, and can only return
Done
orErr
- an initial state
Running such a parser is very simple:
- initialize state
- parse character by character until end of input, or
Done
/Err
Parsers may not communicate with the runner any other way. This means no backtracking, chunking etc. This is a conscious decision, made for simplicity. We're still able to implement a good handful of parser combinators regardless, including a limited form of backtracking.
This is a rough overview. See the code & Haddocks for precise details.
I would gladly accept further combinators or other suggestions. Please add an issue or pull request, or contact me via email or whatever (I'm raehik everywhere).
Provided under the MIT license. See LICENSE
for license text.