Created
December 2, 2014 17:00
-
-
Save codedmart/0e49e1f0e71094fc1272 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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