• Stars
    star
    893
  • Rank 49,145 (Top 1.0 %)
  • Language
    Haskell
  • License
    Other
  • Created almost 9 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Industrial-strength monadic parser combinator library

Megaparsec

License FreeBSD Hackage Stackage Nightly Stackage LTS CI

This is an industrial-strength monadic parser combinator library. Megaparsec is a feature-rich package that tries to find a nice balance between speed, flexibility, and quality of parse errors.

Features

The project provides flexible solutions to satisfy common parsing needs. The section describes them shortly. If you're looking for comprehensive documentation, see the section about documentation.

Core features

The package is built around MonadParsec, an MTL-style monad transformer. Most features work with all instances of MonadParsec. One can achieve various effects combining monad transformers, i.e. building a monadic stack. Since the common monad transformers like WriterT, StateT, ReaderT and others are instances of the MonadParsec type class, one can also wrap ParsecT in these monads, achieving, for example, backtracking state.

On the other hand ParsecT is an instance of many type classes as well. The most useful ones are Monad, Applicative, Alternative, and MonadParsec.

Megaparsec includes all functionality that is typically available in Parsec-like libraries and also features some special combinators:

  • parseError allows us to end parsing and report an arbitrary parse error.
  • withRecovery can be used to recover from parse errors “on-the-fly” and continue parsing. Once parsing is finished, several parse errors may be reported or ignored altogether.
  • observing makes it possible to “observe” parse errors without ending parsing.

In addition to that, Megaparsec features high-performance combinators similar to those found in Attoparsec:

  • tokens makes it easy to parse several tokens in a row (string and string' are built on top of this primitive). This is about 100 times faster than matching a string token by token. tokens returns “chunk” of original input, meaning that if you parse Text, it'll return Text without repacking.
  • takeWhile and takeWhile1 are about 150 times faster than approaches involving many, manyTill and other similar combinators.
  • takeP allows us to grab n tokens from the stream and returns them as a “chunk” of the stream.

Megaparsec is about as fast as Attoparsec if you write your parser carefully (see also the section about performance).

The library can currently work with the following types of input stream out-of-the-box:

  • String = [Char]
  • ByteString (strict and lazy)
  • Text (strict and lazy)

It's also possible to make it work with custom token streams by making them an instance of the Stream type class.

Error messages

  • Megaparsec has typed error messages and the ability to signal custom parse errors that better suit the user's domain of interest.

  • Since version 8, the location of parse errors can independent of current offset in the input stream. It is useful when you want a parse error to point to a particular position after performing some checks.

  • Instead of a single parse error Megaparsec produces so-called ParseErrorBundle data type that helps to manage multi-error messages and pretty-print them. Since version 8, reporting multiple parse errors at once has become easier.

External lexers

Megaparsec works well with streams of tokens produced by tools like Alex. The design of the Stream type class has been changed significantly in the recent versions, but user can still work with custom streams of tokens.

Character and binary parsing

Megaparsec has decent support for Unicode-aware character parsing. Functions for character parsing live in the Text.Megaparsec.Char module. Similarly, there is Text.Megaparsec.Byte module for parsing streams of bytes.

Lexer

Text.Megaparsec.Char.Lexer is a module that should help you write your lexer. If you have used Parsec in the past, this module “fixes” its particularly inflexible Text.Parsec.Token.

Text.Megaparsec.Char.Lexer is intended to be imported using a qualified import, it's not included in Text.Megaparsec. The module doesn't impose how you should write your parser, but certain approaches may be more elegant than others. An especially important theme is parsing of white space, comments, and indentation.

The design of the module allows one quickly solve simple tasks and doesn't get in the way when the need to implement something less standard arises.

Text.Megaparsec.Byte.Lexer is also available for users who wish to parse binary data.

Documentation

Megaparsec is well-documented. See the current version of Megaparsec documentation on Hackage.

Tutorials

You can find the most complete Megaparsec tutorial here. It should provide sufficient guidance to help you start with your parsing tasks.

Performance

Despite being flexible, Megaparsec is also fast. Here is how Megaparsec compares to Attoparsec (the fastest widely used parsing library in the Haskell ecosystem):

Test case Execution time Allocated Max residency
CSV (Attoparsec) 76.50 μs 397,784 10,544
CSV (Megaparsec) 64.69 μs 352,408 9,104
Log (Attoparsec) 302.8 μs 1,150,032 10,912
Log (Megaparsec) 337.8 μs 1,246,496 10,912
JSON (Attoparsec) 18.20 μs 128,368 9,032
JSON (Megaparsec) 25.45 μs 203,824 9,176

You can run the benchmarks yourself by executing:

$ nix-build -A benches.parsers-bench
$ cd result/bench
$ ./bench-memory
$ ./bench-speed

More information about benchmarking and development can be found here.

Comparison with other solutions

There are quite a few libraries that can be used for parsing in Haskell, let's compare Megaparsec with some of them.

Megaparsec vs Attoparsec

Attoparsec is another prominent Haskell library for parsing. Although both libraries deal with parsing, it's usually easy to decide which you will need in particular project:

  • Attoparsec is sometimes faster but not that feature-rich. It should be used when you want to process large amounts of data where performance matters more than quality of error messages.

  • Megaparsec is good for parsing of source code or other human-readable texts. It has better error messages and it's implemented as a monad transformer.

So, if you work with something human-readable where the size of input data is moderate, it makes sense to go with Megaparsec, otherwise Attoparsec may be a better choice.

Megaparsec vs Parsec

Since Megaparsec is a fork of Parsec, we are bound to list the main differences between the two libraries:

  • Better error messages. Megaparsec has typed error messages and custom error messages, it can also report multiple parse errors at once.

  • Megaparsec can show the line on which parse error happened as part of parse error. This makes it a lot easier to figure out where the error happened.

  • Some quirks and bugs of Parsec are fixed.

  • Better support for Unicode parsing in Text.Megaparsec.Char.

  • Megaparsec has more powerful combinators and can parse languages where indentation matters.

  • Better documentation.

  • Megaparsec can recover from parse errors “on the fly” and continue parsing.

  • Megaparsec allows us to conditionally process parse errors inside a running parser. In particular, it's possible to define regions in which parse errors, should they happen, will get a “context tag”, e.g. we could build a context stack like “in function definition foo”, “in expression x”, etc.

  • Megaparsec is faster and supports efficient operations tokens, takeWhileP, takeWhile1P, takeP, like Attoparsec.

If you want to see a detailed change log, CHANGELOG.md may be helpful. Also see this original announcement for another comparison.

Megaparsec vs Trifecta

Trifecta is another Haskell library featuring good error messages. These are the common reasons why Trifecta may be problematic to use:

  • Complicated, doesn't have any tutorials available, and documentation doesn't help much.

  • Trifecta can parse String and ByteString natively, but not Text.

  • Depends on lens, which is a very heavy dependency. If you're not into lens, you may not like the API.

Idris has switched from Trifecta to Megaparsec which allowed it to have better error messages and fewer dependencies.

Megaparsec vs Earley

Earley is a newer library that allows us to safely parse context-free grammars (CFG). Megaparsec is a lower-level library compared to Earley, but there are still enough reasons to choose it:

  • Megaparsec is faster.

  • Your grammar may be not context-free or you may want introduce some sort of state to the parsing process. Almost all non-trivial parsers require state. Even if your grammar is context-free, state may allow for additional niceties. Earley does not support that.

  • Megaparsec's error messages are more flexible allowing to include arbitrary data in them, return multiple error messages, mark regions that affect any error that happens in those regions, etc.

In other words, Megaparsec is less safe but also more powerful.

Related packages

The following packages are designed to be used with Megaparsec (open a PR if you want to add something to the list):

Prominent projects that use Megaparsec

Some prominent projects that use Megaparsec:

  • Idris—a general-purpose functional programming language with dependent types
  • Dhall—an advanced configuration language
  • hnix—re-implementation of the Nix language in Haskell
  • Hledger—an accounting tool
  • MMark—strict markdown processor for writers

Links to announcements and blog posts

Here are some blog posts mainly announcing new features of the project and describing what sort of things are now possible:

Contribution

Issues (bugs, feature requests or otherwise feedback) may be reported in the GitHub issue tracker for this project.

Pull requests are also welcome. If you would like to contribute to the project, you may find this document helpful.

License

Copyright © 2015–present Megaparsec contributors
Copyright © 2007 Paolo Martini
Copyright © 1999–2000 Daan Leijen

Distributed under FreeBSD license.

More Repositories

1

req

An HTTP client library
Haskell
336
star
2

modalka

Modal editing your way
Emacs Lisp
271
star
3

zip

Efficient library for manipulating zip archives
Haskell
80
star
4

ace-popup-menu

Replace GUI popup menu in Emacs with something more efficient
Emacs Lisp
80
star
5

modern-uri

Modern library for working with URIs
Haskell
68
star
6

typit

Typing game for Emacs similar to the tests on 10 fast fingers
Emacs Lisp
64
star
7

ghc-syntax-highlighter

Syntax highlighter for Haskell using the lexer of GHC
Haskell
59
star
8

facts

Refined types
Haskell
58
star
9

parser-combinators

Lightweight package providing commonly useful parser combinators
Haskell
51
star
10

common-lisp-snippets

Yasnippets for Common Lisp
YASnippet
42
star
11

text-metrics

Calculate various string metrics efficiently in Haskell
Haskell
42
star
12

lpnes

Learn Prolog Now! Proper and elegant exercise solutions
Prolog
41
star
13

fix-word

Transform words in Emacs (upcase, downcase, capitalize, etc.)
Emacs Lisp
40
star
14

nushell-mode

Emacs major mode for Nushell scripts
Emacs Lisp
38
star
15

forma

Parse and validate forms in JSON format
Haskell
38
star
16

path-io

Operations on files and directories with typed paths
Haskell
30
star
17

cyphejor

Shorten major mode names by using a set of user-defined rules
Emacs Lisp
29
star
18

ebal

*DEPRECATED* Emacs interface to Cabal and Stack
Emacs Lisp
29
star
19

kill-or-bury-alive

Precise control over buffer killing in Emacs
Emacs Lisp
26
star
20

flac

Complete high-level Haskell binding to libFLAC
Haskell
25
star
21

zzz-to-char

Fancy replacement for zap-to-char in Emacs
Emacs Lisp
24
star
22

dot-emacs

Emacs configuration
Emacs Lisp
23
star
23

char-menu

Create a menu for fast insertion of arbitrary symbols
Emacs Lisp
22
star
24

htaglib

Haskell bindings for TagLib, an audio meta-data library
Haskell
21
star
25

avy-menu

An Avy-powered popup menu
Emacs Lisp
18
star
26

hspec-megaparsec

Utility functions for testing Megaparsec parsers with Hspec
Haskell
16
star
27

markkarpov.com

My personal web site
Haskell
16
star
28

mmt

Missing macro tools for Emacs Lisp
Emacs Lisp
16
star
29

identicon

Flexible generation of identicons in Haskell
Haskell
16
star
30

mupdf-page

Script to remember page when you quit MUPDF
Shell
16
star
31

JuicyPixels-extra

Efficiently scale, crop, flip images with JuicyPixels
Haskell
13
star
32

pagination

Framework-agnostic pagination boilerplate
Haskell
11
star
33

nixos-config

My NixOS configurations
Emacs Lisp
9
star
34

fix-input

Make input methods play nicely with alternative keyboard layouts on OS level
Emacs Lisp
8
star
35

wave

Work with WAVE and RF64 files in Haskell
Haskell
8
star
36

slug

*DEPRECATED* Type-safe slugs for Yesod ecosystem
Haskell
7
star
37

req-conduit

Conduit utilities that work with the Req HTTP client library
Haskell
6
star
38

tagged-identity

Trivial monad transformer that allows identical monad stacks have different types
Haskell
6
star
39

alga

*DEPRECATED* Algorithmic automation for various DAWs (Ardour, Cubase)
Haskell
5
star
40

para

*DEVELOPMENT SUSPENDED* Fast and stateless package to deal with pairs
Emacs Lisp
5
star
41

lame

A high-level Haskell binding to the LAME encoder
Haskell
5
star
42

emacs-package-flake

A Nix library that facilitates definition of flakes for Emacs packages
Nix
5
star
43

mida

*DEPRECATED* Minimalistic language for algorithmic generation of MIDI files
Haskell
5
star
44

plan-b

*DEPRECATED* Failure-tolerant file and directory editing for Haskell
Haskell
5
star
45

mkm3u

Playlist generator (m3u)
Python
4
star
46

openmw-automation

Ansible playbook to build, install, and setup OpenMW just the way I like it
4
star
47

cue-sheet

Support for construction, rendering, and parsing of CUE sheets
Haskell
4
star
48

flac-picture

Support for writing pictures into FLAC metadata blocks with JuicyPixels
Haskell
4
star
49

parsers-bench

Real-life parsers implemented in Attoparsec and Megaparsec with performance comparisons
Haskell
4
star
50

imprint

*DEPRECATED* Serialization of arbitrary Haskell expressions
Haskell
4
star
51

megaparsec-site

*DEPRECATED* Site of Megaparsec project that provides educational materials
Haskell
4
star
52

modern-path

Type-safe path and file system operations with batteries included
Haskell
3
star
53

html-entity-map-gen

A tool to generate code for the html-entity-map library
Haskell
3
star
54

lsa

List properties of audio files
C
3
star
55

snake

Classic snake game in Clojure
Clojure
3
star
56

html-entity-map

Map from HTML5 entity names to the corresponding Unicode text
Haskell
3
star
57

data-check

*DEPRECATED* Library for checking and normalization of data (e.g. from web forms)
Haskell
2
star
58

lightning

*SUSPENDED* A rewrite of Megaparsec using backpack
Haskell
2
star
59

haskell-docker

A generic docker image for Haskell (CircleCI, etc.)
Dockerfile
2
star
60

mk-abbrev

*DEPRECATED* Peculiar way to use Emacs abbrevs
Emacs Lisp
2
star
61

liaison

Nix as a configuration language
Haskell
2
star
62

http-client-blowup

A complete repro that causes http-client hang and leak memory indefinitely
Haskell
2
star
63

mrkkrp.github.io

*DEPRECATED* My blog with random stuff
Haskell
2
star
64

arch-workstation

*DEPRECATED* Ansbile playbooks and installation instructions to recreate my Arch Linux workstation
Shell
2
star
65

glass

Minimalistic forum written in Python using Django
Python
1
star
66

painting-notes

My notes about painting
1
star
67

github-actions-issue

A repo to reproduce an issue with GitHub workflows
1
star
68

containers-bug

It looks like I found a bug in containers-0.6.0.1
Haskell
1
star
69

ion

*DEPRECATED* Interface of Nature
Pascal
1
star
70

wav2

*DEPRECATED* Smart converter from WAV to FLAC and/or MP3 format
Python
1
star
71

flacize

Convert any audio files into properly tagged CDDA quality FLAC tracks
Python
1
star
72

md-bench

Comparison of various markdown libraries in Haskell (speed and memory usage)
Haskell
1
star
73

chemin

Well typed file paths and associated operations
Haskell
1
star
74

mk-dvorak-russian

*DEPRECATED* Type Russian in Emacs with Dvorak layout on system level
Emacs Lisp
1
star
75

project-jumper

A utility for jumping to local project directories
Haskell
1
star
76

spit-haskell-rules

Generate dummy rules for rules_haskell with the aim of using them for profiling
Haskell
1
star
77

playing-with-servant

This repository is for me to play with Servant framework as I go through the tutorial
Haskell
1
star
78

shtookovina-config

My own Шτookωвiнα configuration files
NewLisp
1
star