mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-15 23:59:42 +01:00
2ad0465df6
* grpc_server_request_call * basic slice functionality * rename function to emphasize side effects * add docs * ByteBuffer function bindings * replace unsafeCoerce with more specific function, add docs, tests. * add newtypes for Tag and Reserved void pointers * manually fix request_registered_call binding * use nocode keyword to fix Ptr () problems * decouple copying Slice from freeing slice * Add time ops * remove nocode decls * Start Op module, fix c2hs preprocessing order * metadata manipulation operations * metadata free function, test * helper functions for constructing ops of each type * bindings for op creation functions * finish up Op creation functions, implement Op destruction, add docs. * tweak documentation * rework Op creation functions to work with an array of ops, for ease of use with grpc_call_start_batch * forgot to change return types * wrap hook lines, fix types to op creation functions * implement part of the payload test * hideous, but working, end to end test * bindings for connectivity state checks, split test into two threads * various cleanup * rename Core to Unsafe for emphasis, clean up tests more * begin safe low-level facilities * begin completion queue and server stuff * Finish server start/stop, cq start/stop, add tests * facilities for safely executing op batches * reorganize LowLevel modules, begin explicit export list * client functionality, stub payload test, various refactors * tweak cabal file, add test * add more documentation * doc tweaks * begin refactor to improve CompletionQueue safety * export only thread-safe CQ functions, add registered call creation and other CQ utilities * begin refactor to use GRPCIO monad, fix missing push semaphore, fix mem leak in server calls * switch to explicit Either where needed * add crashing tests, continue fleshing out serverHandleNormalCall * fix haddock error, finish first draft of request handling function * reduce GHC warnings * non-registered client request helpers * initial request/response test working * don't pass tags around; generate where needed * server call bracket functions * correct order of semaphore acquisition and shutdown check * simple debug flag logging, simplify Call type * fix various registered method issues (but still not working) * cleanup * delete old code * remove old todo * use MetadataMap synonym pervasively * more comments * update TODOs * tweak safety caveat * docs tweaks * improve haddocks * add casts to eliminate clang warnings, remove unused function * update options to eliminate cabal warnings * remove outdated todo * remove unneeded exports from CompletionQueue * rename to GRPCIOCallError, re-add create/shutdown exports (needed for Server module) * newtypes for hosts and method names * more newtypes * more debug logging * Fix flag name collision * instrument uses of free * more debug * switch to STM for completion queue stuff * reduce warnings * more debugging, create/destroy call tests * refactor, fix failure cleanup for server call creation. More tests passing. * formatting tweaks
88 lines
2.3 KiB
Text
88 lines
2.3 KiB
Text
name: grpc-haskell
|
|
version: 0.0.0.0
|
|
synopsis: Haskell implementation of gRPC layered on shared C library.
|
|
-- description:
|
|
homepage: http://github.com/aloiscochard/grpc-haskell
|
|
license: Apache-2.0
|
|
license-file: LICENSE
|
|
author: Alois Cochard
|
|
maintainer: alois.cochard@gmail.com
|
|
copyright: Copyright 2015 Alois Cochard
|
|
category: Network
|
|
build-type: Simple
|
|
cabal-version: >=1.10
|
|
extra-source-files: cbits, include
|
|
|
|
Flag Debug
|
|
Description: Adds debug logging.
|
|
Manual: True
|
|
Default: False
|
|
|
|
library
|
|
build-depends:
|
|
base ==4.8.*
|
|
, clock ==0.6.*
|
|
, bytestring ==0.10.*
|
|
, stm == 2.4.*
|
|
, containers ==0.5.*
|
|
c-sources:
|
|
cbits/grpc_haskell.c
|
|
exposed-modules:
|
|
-- NOTE: the order of these matters to c2hs.
|
|
Network.GRPC.Unsafe.Constants
|
|
Network.GRPC.Unsafe.Time
|
|
Network.GRPC.Unsafe.Slice
|
|
Network.GRPC.Unsafe.ByteBuffer
|
|
Network.GRPC.Unsafe.Metadata
|
|
Network.GRPC.Unsafe.Op
|
|
Network.GRPC.Unsafe
|
|
Network.GRPC.LowLevel
|
|
other-modules:
|
|
Network.GRPC.LowLevel.CompletionQueue
|
|
Network.GRPC.LowLevel.GRPC
|
|
Network.GRPC.LowLevel.Op
|
|
Network.GRPC.LowLevel.Server
|
|
Network.GRPC.LowLevel.Call
|
|
Network.GRPC.LowLevel.Client
|
|
extra-libraries:
|
|
grpc
|
|
includes:
|
|
include/grpc_haskell.h
|
|
, grpc/grpc.h
|
|
, grpc/status.h
|
|
, grpc/support/time.h
|
|
, grpc/impl/codegen/compression_types.h
|
|
, grpc/impl/codegen/slice_buffer.h
|
|
, grpc/impl/codegen/slice.h
|
|
build-tools: c2hs
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -fwarn-incomplete-patterns
|
|
include-dirs: include
|
|
hs-source-dirs: src
|
|
default-extensions: CPP
|
|
|
|
if flag(debug)
|
|
CPP-Options: -DDEBUG
|
|
CC-Options: -DGRPC_HASKELL_DEBUG
|
|
|
|
test-suite test
|
|
build-depends:
|
|
base ==4.8.*
|
|
, grpc-haskell
|
|
, bytestring ==0.10.*
|
|
, unix
|
|
, time
|
|
, async
|
|
, tasty >= 0.11 && <0.12
|
|
, tasty-hunit >= 0.9 && <0.10
|
|
, containers ==0.5.*
|
|
other-modules: LowLevelTests
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -fwarn-incomplete-patterns -g -threaded
|
|
hs-source-dirs: tests
|
|
main-is: Properties.hs
|
|
type: exitcode-stdio-1.0
|
|
extensions: CPP
|
|
|
|
if flag(debug)
|
|
GHC-Options: -DDEBUG
|