Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created December 2, 2014 19:23
Show Gist options
  • Save codedmart/505b4808ef81a1413fd0 to your computer and use it in GitHub Desktop.
Save codedmart/505b4808ef81a1413fd0 to your computer and use it in GitHub Desktop.
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)
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