mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-23 03:29:42 +01:00
minor tweaks to withPermission
This commit is contained in:
parent
a0a14dd7d8
commit
ca1d5a7205
1 changed files with 8 additions and 15 deletions
|
@ -15,8 +15,6 @@ import qualified Network.GRPC.Unsafe as C
|
|||
import qualified Network.GRPC.Unsafe.Constants as C
|
||||
import qualified Network.GRPC.Unsafe.Time as C
|
||||
|
||||
import Debug.Trace
|
||||
|
||||
-- NOTE: the concurrency requirements for a CompletionQueue are a little
|
||||
-- complicated. There are two read operations: next and pluck. We can either
|
||||
-- call next on a CQ or call pluck up to 'maxCompletionQueuePluckers' times
|
||||
|
@ -82,22 +80,17 @@ withPermission :: CQOpType
|
|||
-> CompletionQueue
|
||||
-> IO (Either GRPCIOError a)
|
||||
-> IO (Either GRPCIOError a)
|
||||
withPermission op cq act = bracket acquire release doOp
|
||||
withPermission op cq act = bracket acquire release $ \gotResource ->
|
||||
if gotResource then act else return (Left GRPCIOShutdown)
|
||||
where
|
||||
acquire = atomically $ do
|
||||
isShuttingDown <- readTVar (shuttingDown cq)
|
||||
if isShuttingDown
|
||||
then return False
|
||||
else do currCount <- readTVar (getCount op cq)
|
||||
unless isShuttingDown $ do
|
||||
currCount <- readTVar (getCount op cq)
|
||||
if currCount < getLimit op
|
||||
then do
|
||||
writeTVar (getCount op cq) (currCount+1)
|
||||
return True
|
||||
then writeTVar (getCount op cq) (currCount + 1)
|
||||
else retry
|
||||
|
||||
doOp gotResource =
|
||||
if gotResource then act else return (Left GRPCIOShutdown)
|
||||
|
||||
return (not isShuttingDown)
|
||||
release gotResource = when gotResource $
|
||||
atomically $ modifyTVar' (getCount op cq) (subtract 1)
|
||||
|
||||
|
|
Loading…
Reference in a new issue