Created
December 2, 2014 19:23
-
-
Save codedmart/505b4808ef81a1413fd0 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
responseProfile :: IO Response -> IO (Response, Maybe Profile) | |
responseProfile r = r >>= \r' -> case r' of | |
ResponseSingle profile _ -> return (r', profile) | |
ResponseError _ -> return (r', Nothing) | |
ResponseBatch _ profile _ -> return (r', profile) | |
instance FromDatum a => Result (Cursor a) where | |
convertResult v = do | |
(r, p) <- responseProfile v | |
c <- makeCursor $ return r | |
return (c { cursorMap = unsafeFromDatum }, p) |
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
makeCursor :: IO Response -> IO (Cursor Datum) | |
makeCursor cursorMBox = do | |
cursorBuffer <- newMVar (Right ([], Nothing, False)) | |
return Cursor{..} | |
where cursorMap = return . id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment