language-thrift: Parser and pretty printer for the Thrift IDL format.

[ bsd3, language, library ] [ Propose Tags ]

This package provides a parser and pretty printer for the Thrift IDL format.


[Skip to Readme]

Modules

[Index]

  • Language
    • Thrift
      • Language.Thrift.Parser
        • Language.Thrift.Parser.Trifecta
      • Language.Thrift.Pretty
        • Language.Thrift.Pretty.ANSI
      • Language.Thrift.Types

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.2.0.0, 0.3.0.0, 0.4.0.0, 0.5.0.0, 0.6.0.0, 0.6.0.1, 0.6.1.0, 0.6.2.0, 0.7.0.0, 0.7.0.1, 0.8.0.0, 0.8.0.1, 0.8.0.2, 0.9.0.0, 0.9.0.1, 0.9.0.2, 0.10.0.0, 0.11.0.0, 0.12.0.0, 0.12.0.1, 0.13.0.0 (info)
Change log CHANGES.md
Dependencies ansi-wl-pprint (>=0.6 && <0.7), base (>=4.7 && <4.9), lens (>=4.0 && <5.0), parsers (>=0.12 && <0.13), template-haskell, text (>=1.2), transformers, trifecta (>=1.5 && <1.6), wl-pprint (>=1.1) [details]
License BSD-3-Clause
Author Abhinav Gupta
Maintainer Abhinav Gupta <mail@abhinavg.net>
Category Language
Home page https://github.com/abhinav/language-thrift
Source repo head: git clone git://github.com/abhinav/language-thrift.git
Uploaded by abhinav at 2016-01-15T08:04:37Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 10317 total (70 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for language-thrift-0.7.0.0

[back to package description]

build-status

language-thrift provides a parser and pretty printer for the Thrift IDL format. In addition to parsing the IDL, it keeps track of Javadoc-style comments (/** ... */) and attaches them to the type, service, function, or field, above which they were added. These are retained when the document is sent through the pretty printer.

The parser uses parsers to allow plugging in the underlying parser. A default trifecta based parser is provided.

The pretty printer supports both, wl-pprint and ansi-wl-pprint. The ansi-wl-pprint-based pretty printer produces colored output.

Haddock-generated docs are available on Hackage and here.