scanner

Fast non-backtracking incremental combinator parsing for bytestrings

https://github.com/Yuras/scanner

Version on this page:0.2
LTS Haskell 22.13:0.3.1
Stackage Nightly 2024-03-14:0.3.1
Latest on Hackage:0.3.1

See all snapshots scanner appears in

BSD-3-Clause licensed by Yuras Shumovich
Maintained by [email protected]
This version can be pinned in stack with:scanner-0.2@sha256:2ac8ce1bbd865a1b89e56f3ab492520f17efd3f1db0de32ead9f0c1baca09eda,1840

Module documentation for 0.2

Depends on 2 packages(full list with versions):
Used by 1 package in nightly-2017-10-28(full list with versions):

scanner

Fast non-backtracking incremental combinator parsing for bytestrings

Build Status

On hackage: http://hackage.haskell.org/package/scanner

It is often convinient to use backtracking to parse some sophisticated input. Unfortunately it kills performance, so usually you should avoid backtracking.

Often (actually always, but it could be too hard sometimes) you can implement your parser without any backtracking. It that case all the bookkeeping usuall parser combinators do becomes unnecessary. The scanner library is designed for such cases. It is often 2 times faster then attoparsec.

As an example, please checkout redis protocol parser included into the repo, both using attoparsec and scanner libraries: https://github.com/Yuras/scanner/tree/master/examples/Redis

Benchmark results:

Bechmark results

But if you really really really need backtracking, then you can just inject attoparsec parser into a scanner: http://hackage.haskell.org/package/scanner-attoparsec

Changes

0.2

0.1

  • initial release