2017-10-20 22:53:47 +02:00
|
|
|
{-# LANGUAGE GADTs #-}
|
|
|
|
{-# LANGUAGE OverloadedLists #-}
|
2017-05-01 00:38:29 +02:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
2017-10-20 22:53:47 +02:00
|
|
|
{-# LANGUAGE RecordWildCards #-}
|
2017-05-01 00:38:29 +02:00
|
|
|
|
2017-10-20 22:53:47 +02:00
|
|
|
import Arithmetic
|
|
|
|
import Network.GRPC.HighLevel.Generated
|
2017-05-01 00:38:29 +02:00
|
|
|
|
|
|
|
clientConfig :: ClientConfig
|
|
|
|
clientConfig = ClientConfig { clientServerHost = "localhost"
|
|
|
|
, clientServerPort = 50051
|
|
|
|
, clientArgs = []
|
|
|
|
, clientSSLConfig = Nothing
|
2018-10-15 00:52:59 +02:00
|
|
|
, clientAuthority = Nothing
|
2017-05-01 00:38:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
main :: IO ()
|
|
|
|
main = withGRPCClient clientConfig $ \client -> do
|
2017-10-20 22:53:47 +02:00
|
|
|
Arithmetic{..} <- arithmeticClient client
|
2017-05-01 00:38:29 +02:00
|
|
|
|
|
|
|
-- Request for the Add RPC
|
|
|
|
ClientNormalResponse (OneInt x) _meta1 _meta2 _status _details
|
|
|
|
<- arithmeticAdd (ClientNormalRequest (TwoInts 2 2) 1 [])
|
|
|
|
putStrLn ("2 + 2 = " ++ show x)
|
|
|
|
|
|
|
|
-- Request for the RunningSum RPC
|
|
|
|
ClientWriterResponse reply _streamMeta1 _streamMeta2 streamStatus streamDtls
|
|
|
|
<- arithmeticRunningSum $ ClientWriterRequest 1 [] $ \send -> do
|
|
|
|
eithers <- mapM send [OneInt 1, OneInt 2, OneInt 3]
|
|
|
|
:: IO [Either GRPCIOError ()]
|
|
|
|
case sequence eithers of
|
|
|
|
Left err -> error ("Error while streaming: " ++ show err)
|
2017-10-20 22:53:47 +02:00
|
|
|
Right _ -> return ()
|
2017-05-01 00:38:29 +02:00
|
|
|
|
|
|
|
case reply of
|
|
|
|
Just (OneInt y) -> print ("1 + 2 + 3 = " ++ show y)
|
|
|
|
Nothing -> putStrLn ("Client stream failed with status "
|
|
|
|
++ show streamStatus
|
|
|
|
++ " and details "
|
|
|
|
++ show streamDtls)
|
|
|
|
return ()
|