gRPC-haskell/README.md

60 lines
2.0 KiB
Markdown
Raw Normal View History

2016-07-26 01:37:06 +02:00
Running the tests
-----------------
In order to run the tests, you will need to have the `grpcio`, `gevent`, and
`grpcio-tools` python packages installed. You can install them using
`pip`. It is recommended that you use a python virtualenv to do this.
```
$ virtualenv path/to/virtualenv # to create a virtualenv
$ . path/to/virtualenv/bin/activate # to use an existing virtualenv
2016-07-26 01:37:06 +02:00
$ pip install grpcio-tools gevent
$ pip install grpcio # Need to install grpcio-tools first to avoid a versioning problem
```
2016-07-26 21:05:56 +02:00
Building GRPC
-------------
In order to compile this project, and anything which depends on it, you will need a working installation
2016-08-09 20:03:19 +02:00
of the GRPC C core libraries. This library currently uses the 0.15 version range, so checkout an appropriate revision
2016-07-26 21:05:56 +02:00
of the repository, and install as follows:
```sh
git clone https://github.com/grpc/grpc.git
2016-08-09 20:02:46 +02:00
git checkout release-0_15_1
2016-07-26 21:05:56 +02:00
cd grpc
git submodule update --init
make
sudo make install
```
Alternatively, using Nix, pass the following expression to `nix-build` and point Stack to the build products in the Nix store:
```nix
let pkgs = import <nixpkgs> {};
in pkgs.stdenv.mkDerivation rec
{ name = "grpc";
src = pkgs.fetchgit
{ url = "https://github.com/grpc/grpc.git";
2016-08-09 20:02:46 +02:00
rev = "674b30373e2d6a1e26425952805179f8d52a8c00";
sha256 = "05vj48w4h7bn6xyf1wyg2l6psl38h4yz6j1cl0yd2p5h7f5hb3s7";
2016-07-26 21:05:56 +02:00
};
preInstall = "export prefix";
buildInputs =
[ pkgs.darwin.cctools
pkgs.autoconf
pkgs.automake
pkgs.libtool
pkgs.which
pkgs.zlib
pkgs.openssl
];
}
```
2016-08-02 23:37:56 +02:00
Using the Library
-----------------
You must compile with `-threaded`, because we rely on being able to execute Haskell while blocking on foreign calls to the gRPC library. If not using code generation, the recommended place to start is in the `Network.GRPC.HighLevel.Server.Unregistered` module, where `serverLoop` provides a handler loop.