- 
      
- 
        Save caiorss/e873bc54266ee554cb313e04b30d0d95 to your computer and use it in GitHub Desktop. 
    Timer, setInterval in Haskell
  
        
  
    
      This file contains hidden or 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
    
  
  
    
  | import Control.Concurrent | |
| import Control.Exception | |
| setInterval :: Int -> a -> (a -> IO a) -> IO () | |
| setInterval microsecs a action = do | |
| mvar <- newEmptyMVar | |
| _ <- setInterval' microsecs a mvar action | |
| takeMVar mvar | |
| setInterval' :: Int -> a -> MVar () -> (a -> IO a) -> IO ThreadId | |
| setInterval' microsecs a mvar action = | |
| forkIO (loop a `finally` putMVar mvar ()) | |
| where | |
| loop i = do | |
| threadDelay microsecs | |
| j <- action i | |
| loop j | |
| main :: IO () | |
| main = setInterval 1000000 (1, 1) | |
| (\ (x, y) -> do | |
| print $ "fib " ++ show x | |
| return (y, x + y) | |
| ) | 
  
    
      This file contains hidden or 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
    
  
  
    
  | import Control.Monad.State | |
| import Control.Concurrent | |
| import Control.Exception | |
| setInterval :: Int -> a -> StateT a IO () -> IO () | |
| setInterval microsecs a action = do | |
| mvar <- newEmptyMVar | |
| _ <- evalStateT (setInterval' microsecs mvar action) a | |
| takeMVar mvar | |
| setInterval' :: Int -> MVar () -> StateT a IO () -> StateT a IO ThreadId | |
| setInterval' microsecs mvar action = do | |
| i <- get | |
| lift $ forkIO (evalStateT loop i `finally` putMVar mvar ()) | |
| where | |
| loop = do | |
| action | |
| lift $ threadDelay microsecs | |
| loop | |
| main :: IO () | |
| main = setInterval 1000000 (1, 1) | |
| (do | |
| (x, y) <- get | |
| lift $ print $ "fib " ++ show x | |
| put (y, x + y) | |
| ) | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment