pinch-gen

Package maintainers For package maintainers and hackage trustees Candidates pinch aims to provide an alternative implementation of Apache Thrift for Haskell. The pinch library itself acts only as a serialization library. Types specify their Thrift encoding by defining instances of the Pinchable typeclass, which may be done by hand or automatically with the use of Generics. Haddock documentation for this package is avilable on Hackage. Converts a Thrift file into Haskell code for the pinch library. Usage: The --hashable-vec-mod argument should be set to a module providing a Hashable instance for Vector. This is required as a Vector may become part of a key of a map, but neither the vector nor the hashable package provide an instance. For some background, see https://github.com/haskell/vector/pull/102 .The simplest solution is to depend on the vector-instances package and pass --hashable-vec-mod Data.Vector.Instances to pinch-gen. Let us use this simple Thrift service as an example: To generate the corresponding Haskell code we can call pinch-gen: This will create the appropriate datatypes for all struct, union and exception types: For the server, a record-style encoding of all functions is used. Given an implementation of these functions, a Pinch.Server.ThriftServer for use with the pinch library can be created: For the client, functions creating a Pinch.Client.ThriftCall for use with the pinch library are generated. You can use Pinch.Client.call if you want to explicitly match on the success result/thrown exceptions as defined in the Thrift file. Alternatively, you may use Pinch.Client.callOrThrow to directly access the result. In case the rqeuest failed, callOrThrow will throw an exception using throwIO. The generated code is currently not formatted very nicely.

OTHER License

Downloads
624
Stars
5
Committers
4

Commit Statistics

Past Year

All Time

Total Commits
51
Total Committers
6
Avg. Commits Per Committer
8.5
Bot Commits
0

Issue Statistics

Past Year

All Time

Total Pull Requests
3
9
Merged Pull Requests
3
8
Total Issues
1
6
Time to Close Issues
N/A
about 18 hours