1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE DefaultSignatures #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE FlexibleInstances #-}
module Network.KRPC.Manager
( MonadKRPC (..)
, Manager
, newManager
, closeManager
, withManager
, query
, Handler
, handler
, listener
, listen
) where
import Control.Applicative
import Control.Arrow
import Control.Concurrent
import Control.Concurrent.Lifted (fork)
import Control.Exception hiding (Handler)
import Control.Exception.Lifted as Lifted (catch)
import Control.Monad
import Control.Monad.Reader
import Control.Monad.Trans.Control
import Data.BEncode as BE
import Data.ByteString.Char8 as BC
import Data.ByteString.Lazy as BL
import Data.IORef
import Data.List as L
import Data.Map as M
import Data.Tuple
import Network.KRPC.Message
import Network.KRPC.Method
import Network.Socket hiding (listen)
import Network.Socket.ByteString as BS
import System.Timeout
type KResult = Either KError KResponse
type TransactionCounter = IORef Int
type CallId = (TransactionId, SockAddr)
type CallRes = MVar KResult
type PendingCalls = IORef (Map CallId CallRes)
type HandlerBody h = SockAddr -> BValue -> h (BE.Result BValue)
-- | Handler is a function which will be invoked then some /remote/
-- node querying /this/ node.
type Handler h = (MethodName, HandlerBody h)
-- | Keep track pending queries made by /this/ node and handle queries
-- made by /remote/ nodes.
data Manager h = Manager
{ sock :: !Socket
, queryTimeout :: !Int -- ^ in seconds
, listenerThread :: !(MVar ThreadId)
, transactionCounter :: {-# UNPACK #-} !TransactionCounter
, pendingCalls :: {-# UNPACK #-} !PendingCalls
, handlers :: [Handler h]
}
-- | A monad which can perform or handle queries.
class (MonadBaseControl IO m, MonadIO m) => MonadKRPC h m | m -> h where
-- | Ask for manager.
getManager :: m (Manager h)
default getManager :: MonadReader (Manager h) m => m (Manager h)
getManager = ask
-- | Can be used to add logging for instance.
liftHandler :: h a -> m a
default liftHandler :: m a -> m a
liftHandler = id
instance (MonadBaseControl IO h, MonadIO h)
=> MonadKRPC h (ReaderT (Manager h) h) where
liftHandler = lift
sockAddrFamily :: SockAddr -> Family
sockAddrFamily (SockAddrInet _ _ ) = AF_INET
sockAddrFamily (SockAddrInet6 _ _ _ _) = AF_INET6
sockAddrFamily (SockAddrUnix _ ) = AF_UNIX
seedTransaction :: Int
seedTransaction = 0
defaultQueryTimeout :: Int
defaultQueryTimeout = 120
-- | Bind socket to the specified address. To enable query handling
-- run 'listen'.
newManager :: SockAddr -- ^ address to listen on;
-> [Handler h] -- ^ handlers to run on incoming queries.
-> IO (Manager h) -- ^ new manager.
newManager servAddr handlers = do
sock <- bindServ
tref <- newEmptyMVar
tran <- newIORef seedTransaction
calls <- newIORef M.empty
return $ Manager sock defaultQueryTimeout tref tran calls handlers
where
bindServ = do
let family = sockAddrFamily servAddr
sock <- socket family Datagram defaultProtocol
when (family == AF_INET6) $ do
setSocketOption sock IPv6Only 0
bindSocket sock servAddr
return sock
-- | Unblock all pending calls and close socket.
closeManager :: Manager m -> IO ()
closeManager Manager {..} = do
maybe (return ()) killThread =<< tryTakeMVar listenerThread
-- TODO unblock calls
close sock
-- | Normally you should use Control.Monad.Trans.Resource.allocate
-- function.
withManager :: SockAddr -> [Handler h] -> (Manager h -> IO a) -> IO a
withManager addr hs = bracket (newManager addr hs) closeManager
{-----------------------------------------------------------------------
-- Client
-----------------------------------------------------------------------}
sendMessage :: MonadIO m => BEncode a => Socket -> SockAddr -> a -> m ()
sendMessage sock addr a = do
liftIO $ sendManyTo sock (BL.toChunks (BE.encode a)) addr
genTransactionId :: TransactionCounter -> IO TransactionId
genTransactionId ref = do
cur <- atomicModifyIORef' ref $ \ cur -> (succ cur, cur)
return $ BC.pack (show cur)
registerQuery :: CallId -> PendingCalls -> IO CallRes
registerQuery cid ref = do
ares <- newEmptyMVar
atomicModifyIORef' ref $ \ m -> (M.insert cid ares m, ())
return ares
-- simultaneous M.lookup and M.delete guarantees that we never get two
-- or more responses to the same query
unregisterQuery :: CallId -> PendingCalls -> IO (Maybe CallRes)
unregisterQuery cid ref = do
atomicModifyIORef' ref $ swap .
M.updateLookupWithKey (const (const Nothing)) cid
queryResponse :: BEncode a => CallRes -> IO a
queryResponse ares = do
res <- readMVar ares
KResponse {..} <- either throwIO pure res
case fromBEncode respVals of
Right r -> pure r
Left e -> throwIO $ decodeError e respId
-- | Enqueue query to the given node.
--
-- This function will throw exception if quered node respond with
-- @error@ message or timeout expires.
--
query :: forall h m a b. (MonadKRPC h m, KRPC a b) => SockAddr -> a -> m b
query addr params = do
Manager {..} <- getManager
liftIO $ do
tid <- genTransactionId transactionCounter
let Method name = method :: Method a b
let q = KQuery (toBEncode params) name tid
ares <- registerQuery (tid, addr) pendingCalls
sendMessage sock addr q
`onException` unregisterQuery (tid, addr) pendingCalls
mres <- timeout (queryTimeout * 10 ^ (6 :: Int)) $ do
queryResponse ares
case mres of
Just res -> return res
Nothing -> do
_ <- unregisterQuery (tid, addr) pendingCalls
throwIO $ timeoutExpired tid
{-----------------------------------------------------------------------
-- Handlers
-----------------------------------------------------------------------}
-- | Make handler from handler function. Any thrown exception will be
-- supressed and send over the wire back to the querying node.
handler :: forall h a b. (KRPC a b, Monad h)
=> (SockAddr -> a -> h b) -> Handler h
handler body = (name, wrapper)
where
Method name = method :: Method a b
wrapper addr args =
case fromBEncode args of
Left e -> return $ Left e
Right a -> do
r <- body addr a
return $ Right $ toBEncode r
runHandler :: MonadKRPC h m => HandlerBody h -> SockAddr -> KQuery -> m KResult
runHandler h addr KQuery {..} = wrapper `Lifted.catch` failback
where
wrapper = ((`decodeError` queryId) +++ (`KResponse` queryId))
<$> liftHandler (h addr queryArgs)
failback e = return $ Left $ serverError e queryId
dispatchHandler :: MonadKRPC h m => KQuery -> SockAddr -> m KResult
dispatchHandler q @ KQuery {..} addr = do
Manager {..} <- getManager
case L.lookup queryMethod handlers of
Nothing -> return $ Left $ unknownMethod queryMethod queryId
Just h -> runHandler h addr q
{-----------------------------------------------------------------------
-- Listener
-----------------------------------------------------------------------}
handleQuery :: MonadKRPC h m => KQuery -> SockAddr -> m ()
handleQuery q addr = void $ fork $ do
Manager {..} <- getManager
res <- dispatchHandler q addr
sendMessage sock addr $ either toBEncode toBEncode res
handleResponse :: MonadKRPC h m => KResult -> SockAddr -> m ()
handleResponse result addr = do
Manager {..} <- getManager
liftIO $ do
let resultId = either errorId respId result
mcall <- unregisterQuery (resultId, addr) pendingCalls
case mcall of
Nothing -> return ()
Just ares -> putMVar ares result
handleMessage :: MonadKRPC h m => KMessage -> SockAddr -> m ()
handleMessage (Q q) = handleQuery q
handleMessage (R r) = handleResponse (Right r)
handleMessage (E e) = handleResponse (Left e)
maxMsgSize :: Int
maxMsgSize = 64 * 1024
listener :: MonadKRPC h m => m ()
listener = do
Manager {..} <- getManager
forever $ do
(bs, addr) <- liftIO $ BS.recvFrom sock maxMsgSize
case BE.decode bs of
Left e -> liftIO $ sendMessage sock addr $ unknownMessage e
Right m -> handleMessage m addr
-- | Should be run before any 'query', otherwise they will never
-- succeed.
listen :: MonadKRPC h m => m ()
listen = do
Manager {..} <- getManager
tid <- fork $ listener
liftIO $ putMVar listenerThread tid
|