2012-03-26 2 views
1

In Snap-Quelle setzen Snap.Internal.Http.Server.TimeoutManagerTimeoutManager verwendet tryPutMVar nichts

------------------------------------------------------------------------------ 
-- | Register a new connection with the TimeoutManager. 
register :: IO()    --^action to run when the timeout deadline is 
           -- exceeded. 
     -> TimeoutManager  --^manager to register with. 
     -> IO TimeoutHandle 
register killAction tm = do 
    now <- getTime 
    let !state = Deadline $ now + toEnum defaultTimeout 
    stateRef <- newIORef state 

    let !h = TimeoutHandle killAction stateRef getTime 
    atomicModifyIORef connections $ \x -> (h:x,()) 

    inact <- readIORef inactivity 
    when inact $ do 
     -- wake up manager thread 
     writeIORef inactivity False 
     _ <- tryPutMVar morePlease() 
     return() 
    return h 

    where 
    getTime  = _getTime tm 
    inactivity  = _inactivity tm 
    morePlease  = _morePlease tm 
    connections = _connections tm 
    defaultTimeout = _defaultTimeout tm 

Warum es _morePlease Feld ist?
Was macht _ <- tryPutMVar morePlease()?

+0

In irC#haskell, Shachaf und edwardk sagen 'MVar()' wird normalerweise zum Blockieren Zweck verwendet – wenlong

Antwort

1
managerThread :: TimeoutManager -> IO() 
managerThread tm = loop `finally` (readIORef connections >>= destroyAll) 
    where 
    -------------------------------------------------------------------------- 
    connections = _connections tm 
    getTime  = _getTime tm 
    inactivity = _inactivity tm 
    morePlease = _morePlease tm 
    waitABit = threadDelay 5000000 

    -------------------------------------------------------------------------- 
    loop = do 
     waitABit 
     handles <- atomicModifyIORef connections (\x -> ([],x)) 

     if null handles 
      then do 
      -- we're inactive, go to sleep until we get new threads 
      writeIORef inactivity True 
      takeMVar morePlease 
      else do 
      now <- getTime 
      dlist <- processHandles now handles id 
      atomicModifyIORef connections (\x -> (dlist x,())) 

     loop 

    -------------------------------------------------------------------------- 
    processHandles !now handles initDlist = go handles initDlist 
     where 
     go [] !dlist = return dlist 

     go (x:xs) !dlist = do 
      state <- readIORef $ _state x 
      !dlist' <- case state of 
         Canceled -> return dlist 
         Deadline t -> if t <= now 
             then do 
              _killAction x 
              return dlist 
             else return (dlist . (x:)) 
      go xs dlist' 

    -------------------------------------------------------------------------- 
    destroyAll = mapM_ diediedie 

    -------------------------------------------------------------------------- 
    diediedie x = do 
     state <- readIORef $ _state x 
     case state of 
      Canceled -> return() 
      _  -> _killAction x 

Wenn es keine Griffe bearbeitet werden soll, wird managerThread von takeMVar morePlease blockiert werden. _ <- tryPutMVar morePlease() weckt ihn auf.