Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created December 2, 2014 17:00
Show Gist options
  • Save codedmart/0e49e1f0e71094fc1272 to your computer and use it in GitHub Desktop.
Save codedmart/0e49e1f0e71094fc1272 to your computer and use it in GitHub Desktop.
addMBox :: RethinkDBHandle -> Token -> Term -> IO (TVar Response)
addMBox h tok term = do
chan <- newChan
-- TVar doesn't have an empty state?
mbox <- newTVarIO $ ResponseSingle Nothing Null
weak <- mkWeakTVar mbox $ do
closeToken h tok -- TODO: don't close if already closed
atomicModifyIORef' (rdbWait h) $ \mboxes ->
(M.delete tok mboxes, ())
atomicModifyIORef' (rdbWait h) $ \mboxes ->
(M.insert tok (chan, term, finalize weak) mboxes, ())
_ <- forkIO $ fix $ \loop -> do
response <- readChan chan
-- This prints the proper response
putStrLn "Response"
print response
-- Doesn't seem to get written at the right time or something because I get null in the repl when testing.
atomically $ writeTVar mbox response
when (not $ isLastResponse response) $ do
nextResponse response
loop
return mbox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment