Thrift is a serialization and remote procedure call (RPC) framework used for cross-service communication. Most services at Facebook communicate via Thrift because it provides a simple, language-agnostic protocol for communicating with structured data. Thrift can already be used in programming languages such as C++, Python, and Java using fbthrift.
The hsthrift project includes the full collection of tools and libraries for using Thrift in your own Haskell projects. The Haskell Thrift compiler generates the Haskell code needed to communicate with other Thrift services, and the included libraries allow you to build both Thrift clients and servers in Haskell. Haskell Thrift is fully compatible with all other fbthrift languages, so your Haskell project can freely communicate with other services no matter what language they are implemented in.
Note: hsthrift
is compatible with fbthrift
but not Apache
Thrift clients and servers.
hsthrift
is licensed under a standard BSD license.
Build instructions are below.
To use Thrift, see Getting Started with Thrift in Haskell.
The repository contains the following packages:
- mangle, a library for mangling C++ function prototypes into symbol names, useful for using C++ code via the Haskell FFI.
- fb-util, a collection of utilities
- thrift-compiler, the Haskell Thrift compiler
- thrift-lib, libraries for Thrift clients
- thrift-tests, a test suite
- thrift-http, Thrift client and server transport (using HTTP)
- thrift-cpp-channel, libraries for Thrift clients (using fbthrift)
- thrift-server, libraries for Thrift servers (using fbthrift)
The following instructions assume you want to use fbthrift
. To omit
the fbthrift
dependency and use only the HTTP transport, follow the
extra instructions marked with "[no fbthrift]".
First install all dependencies (see Dependencies section below).
Note that hsthrift
requires Cabal version 3.6 or later.
We use the C++ thrift compiler to generate some files needed to build the Haskell thrift compiler.
[no fbthrift] Omit this step.
$ make thrift-cpp
[no fbthrift] Edit cabal.project
to remove thrift-cpp-channel
and add
package thrift-tests
flags: -fbthrift
Next build the Haskell Thrift compiler:
$ cabal build exe:thrift-compiler
At this point, you should have a working thrift-compiler
. You can
check that this is indeed the case by running the following
command to process many .thrift
files used by tests of various
packages in this repository with your freshly built compiler:
$ make thrift-hs
Finally, we can issue any cabal build
/cabal run
/cabal test
command to build/run/test a specific component or entire package.
For instance, we could test all the packages with:
$ cabal test all
# or, if there's no IPv6 configured on your machine (see below),
# you can borrow the ci configuration or derive your own:
$ cabal test --project-file=ci.cabal.project all
A simple
$ cabal sdist <package name>
# or, to generate all sdists
$ cabal sdist all
will generate source distribution archives under
dist-newstyle/sdist/
, all named following the fairly common
<pkg>-<version>.tar.gz
template.
The Github CI actions make use of these commands to build and test the packages from source distributions.
Some tests bring up thrift clients and servers on localhost, but
designate the said localhost differently depending on whether the
code is built to use ::1
(IPv6) or 127.0.0.1
(IPv4). This is
determined by a tests_use_ipv4
cabal flag in thrift-lib
and
thrift-server
. The Github CI actions turn those flags on as can
be seen in the .cabal.project
files at the root of this repository,
because the Docker environment in which CI actions get executed does
not have IPv6 configured.
sudo apt install
libgoogle-glog-dev
libgflags-dev
bison
flex
ninja-build
cmake
libzstd-dev
(TODO: this list is probably incomplete, please file an issue if you encounter something missing)
sudo yum install \
openssl-devel \
libevent-devel \
double-conversion-devel \
boost-devel \
cmake \
ninja-build \
glog-devel \
gflags-devel \
gmock-devel \
bison \
flex \
libatomic \
libsodium \
libzstd-devel \
pcre-devel \
ncurses-devel \
fmt-devel \
gmp-devel
Also you may need:
export LD_LIBRARY_PATH=/usr/local/lib:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
hsthrift also depends on some other C++ libraries that are not
typically packaged for Linux. We've provided a script to fetch them
from github, and build and install them locally. Run the following
commands to clone the repos and build and install the dependencies
(pass e.g. --threads 8
to build in parallel. Default is 4):
./new_install_deps.sh
[no fbthrift] Instead use:
./new_install_deps.sh --no-fbthrift
The dependencies are:
- folly, a library of general C++ utilities
- libfmt v8
- fbthrift, Facebook's Thrift compiler and support libraries.
- Other C++ libraries required by fbthrift: rsocket-cpp, fizz, wangle.
After running new_install_deps.sh
, set your env variables to pick up the new libraries and binaries:
export LD_LIBRARY_PATH=$HOME/.hsthrift/lib:
export PKG_CONFIG_PATH=$HOME/.hsthrift/lib/pkgconfig
export PATH=$PATH:$HOME/.hsthrift/bin
make all
and test the installation with:
cabal test all