mu-rpc-0.1.0.0: src/Mu/Server.hs
{-# language ConstraintKinds #-}
{-# language DataKinds #-}
{-# language ExistentialQuantification #-}
{-# language FlexibleContexts #-}
{-# language FlexibleInstances #-}
{-# language GADTs #-}
{-# language MultiParamTypeClasses #-}
{-# language PolyKinds #-}
{-# language RankNTypes #-}
{-# language TypeFamilies #-}
{-# language TypeOperators #-}
{-# language UndecidableInstances #-}
{-|
Description : Protocol-independent declaration of servers.
A server (represented by 'ServerT') is a sequence
of handlers (represented by 'HandlersT'), one for each
operation in the corresponding Mu service declaration.
In general, you should declare a server as:
> server :: MonadServer m => ServerT w MyService m _
> server = Server (h1 :<|>: h2 :<|>: ... :<|>: H0)
where each of @h1@, @h2@, ... handles each method in
@MyService@ /in the order they were declared/.
The @_@ in the type allows GHC to fill in the boring
and long type you would need to write there otherwise.
/Implementation note/: exceptions raised in handlers
produce an error to be sent as response to the client.
We recommend you to catch exceptions and return custom
'ServerError's instead.
-}
module Mu.Server (
-- * Servers and handlers
MonadServer, ServerT(..), HandlersT(..)
-- ** Simple servers using only IO
, ServerErrorIO, ServerIO
-- * Errors which might be raised
, serverError, ServerError(..), ServerErrorCode(..)
-- ** Useful when you do not want to deal with errors
, alwaysOk
) where
import Control.Monad.Except
import Data.Conduit
import Data.Kind
import Mu.Rpc
import Mu.Schema
-- | Constraint for monads that can be used as servers
type MonadServer m = (MonadError ServerError m, MonadIO m)
-- | Simplest monad which satisfies 'MonadServer'.
type ServerErrorIO = ExceptT ServerError IO
-- | Simple 'ServerT' which uses only 'IO' and errors.
type ServerIO w srv = ServerT w srv ServerErrorIO
-- | Stop the current handler,
-- returning an error to the client.
serverError :: (MonadError ServerError m)
=> ServerError -> m a
serverError = throwError
-- | Wrapper for handlers which do not use errors.
-- Remember that any exception raised in 'IO'
-- is propagated to the client.
alwaysOk :: (MonadIO m)
=> IO a -> m a
alwaysOk = liftIO
-- | Errors raised in a handler.
data ServerError
= ServerError ServerErrorCode String
-- | Possible types of errors.
-- Some of these are handled in a special way
-- by different transpoprt layers.
data ServerErrorCode
= Unknown
| Unavailable
| Unimplemented
| Unauthenticated
| Internal
| Invalid
| NotFound
deriving (Eq, Show)
-- | Definition of a complete server for a service.
data ServerT (w :: Type -> Type) (s :: Service snm mnm) (m :: Type -> Type) (hs :: [Type]) where
Server :: HandlersT w methods m hs -> ServerT w ('Service sname anns methods) m hs
infixr 5 :<|>:
-- | 'HandlersT' is a sequence of handlers.
-- Note that the handlers for your service
-- must appear __in the same order__ as they
-- are defined.
--
-- In general you can choose any type you want
-- for your handlers, due to the following restrictions:
--
-- * Haskell types must be convertible to the
-- corresponding schema type. In other words,
-- they must implement 'FromSchema' if they are
-- inputs, and 'ToSchema' if they are outputs.
-- * Normal returns are represented by returning
-- the corresponding Haskell type.
-- * Input streams turn into @Conduit () t m ()@,
-- where @t@ is the Haskell type for that schema type.
-- * Output streams turn into an __additional argument__
-- of type @Conduit t Void m ()@. This stream should
-- be connected to a source to get the elements.
data HandlersT (w :: Type -> Type) (methods :: [Method mnm]) (m :: Type -> Type) (hs :: [Type]) where
H0 :: HandlersT w '[] m '[]
(:<|>:) :: Handles w args ret m h => h -> HandlersT w ms m hs
-> HandlersT w ('Method name anns args ret ': ms) m (h ': hs)
-- Define a relation for handling
class Handles (w :: Type -> Type) (args :: [Argument]) (ret :: Return)
(m :: Type -> Type) (h :: Type)
class ToRef (w :: Type -> Type) (ref :: TypeRef) (t :: Type)
class FromRef (w :: Type -> Type) (ref :: TypeRef) (t :: Type)
-- Type references
instance ToSchema w sch sty t => ToRef w ('ViaSchema sch sty) t
instance ToRef w ('ViaRegistry subject t last) t
instance FromSchema w sch sty t => FromRef w ('ViaSchema sch sty) t
instance FromRef w ('ViaRegistry subject t last) t
-- Arguments
instance (FromRef w ref t, Handles w args ret m h,
handler ~ (t -> h))
=> Handles w ('ArgSingle ref ': args) ret m handler
instance (MonadError ServerError m, FromRef w ref t, Handles w args ret m h,
handler ~ (ConduitT () t m () -> h))
=> Handles w ('ArgStream ref ': args) ret m handler
-- Result with exception
instance (MonadError ServerError m, handler ~ m ())
=> Handles w '[] 'RetNothing m handler
instance (MonadError ServerError m, ToRef w eref e, ToRef w vref v, handler ~ m (Either e v))
=> Handles w '[] ('RetThrows eref vref) m handler
instance (MonadError ServerError m, ToRef w ref v, handler ~ m v)
=> Handles w '[] ('RetSingle ref) m handler
instance (MonadError ServerError m, ToRef w ref v, handler ~ (ConduitT v Void m () -> m ()))
=> Handles w '[] ('RetStream ref) m handler