CurryInfo: cass-4.1.0 / CASS.ServerFunctions.masterLoop

definition:
masterLoop :: CConfig -> [Handle] -> [Handle] -> String -> String
           -> [(String,[String])] -> [String] -> IO (Maybe String)
masterLoop cc _ [] _ _ [] [] = do
  debugMessage (debugLevel cc) 2 "Master loop: terminated"
  return Nothing

masterLoop cc _ (b:busyWorker) ananame mainModule [] [] = do
  debugMessage dl 2 "Master loop: waiting for worker result"
  inputHandle <- hWaitForInputs (b:busyWorker) waitTime
  if inputHandle/=0
    then return (Just "No input from any worker received")
    else do
      let handle =  b
      input <- hGetLine handle
      debugMessage dl 2 ("Master loop: got message: "++input)
      let Task ananame2 moduleName2 = read input
      if ananame == ananame2 && moduleName2 == mainModule
        then return Nothing
        else return (Just "Received analysis does not match requested analysis")
 where dl = debugLevel cc

masterLoop cc idleWorker busyWorker ananame mainModule
           modulesToDo@(_:_) [] = do
  debugMessage dl 3 ("Master loop: modules to do: " ++ show modulesToDo)
  let modulesToDo2 = filter ((not . null) . snd) modulesToDo
      waitList     = map fst (filter (null . snd) modulesToDo)
  if null waitList
    then do
      debugMessage dl 2 "Master loop: waiting for workers to finish"
      inputHandle <- hWaitForInputs busyWorker waitTime
      if inputHandle<0
        then return (Just "No input from any worker received")
        else do
          let handle =  busyWorker !! inputHandle
          input <- hGetLine handle
          debugMessage dl 2 ("Master loop: got message: " ++ input)
          let Task ananame2 moduleName2 = read input
          if ananame==ananame2
            then do
              let modulesToDo3 = reduceDependencies modulesToDo2 [moduleName2]
                  busyWorker2= deleteIndex inputHandle busyWorker
              masterLoop cc (handle:idleWorker) busyWorker2 ananame
                         mainModule modulesToDo3 waitList
            else
             return
              (Just "Received analysis does not match requested analysis type")
    else masterLoop cc idleWorker busyWorker ananame mainModule modulesToDo2
                    waitList
 where dl = debugLevel cc

masterLoop cc (handle:idleWorker) busyWorker ananame mainModule modulesToDo
           (modName:waitList) = do
  debugMessage dl 2 "Master loop: worker available, send task to a worker..."
  let newTask = show (Task ananame modName)
  hPutStrLn handle newTask
  hFlush handle
  debugMessage dl 2 ("Master loop: send message: "++newTask)
  masterLoop cc idleWorker (handle:busyWorker) ananame mainModule
             modulesToDo waitList
 where dl = debugLevel cc

masterLoop cc [] busyWorker ananame mainModule modulesToDo
           waits@(modName:waitList) = do
  debugMessage dl 2 $ "Waiting for worker to analyze modules: "++show waits
  inputHandle <- hWaitForInputs busyWorker waitTime
  if inputHandle < 0
    then return (Just "No input from any worker received")
    else do
      let handle = busyWorker !! inputHandle
      input <- hGetLine handle
      debugMessage dl 2 ("Master loop: got message: "++input)
      let Task _ finishedmodule = read input
          newTask = show (Task ananame modName)
      hPutStrLn handle newTask
      hFlush handle
      debugMessage dl 2 ("Master loop: send message: "++newTask)
      let modulesToDo2 = reduceDependencies modulesToDo [finishedmodule]
      masterLoop cc [] busyWorker ananame mainModule modulesToDo2 waitList
 where dl = debugLevel cc
demand:
argument 7
deterministic:
deterministic operation
documentation:
-- Master loop for communication with workers
-- Argument 1: handles for workers that are currently free
-- Argument 2: handles for workers that are currently busy
-- Argument 3: the analysis name
-- Argument 4: the name of the main module
-- Argument 5: the modules to be analyzed (with their dependencies)
-- Argument 6: names of modules that are ready be to analyzed (since their
--             imports are already analyzed)
-- Result: Nothing (in case of successful work) or (Just <error>)
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,{[]},_,_,{[]},{[]}) |-> _ || (_,_,{:},_,_,{[]},{[]}) |-> _ || (_,_,_,_,_,{:},{[]}) |-> _ || (_,{:},_,_,_,_,{:}) |-> _ || (_,{[]},_,_,_,_,{:}) |-> _}
name:
masterLoop
precedence:
no precedence defined
result-values:
_
signature:
CASS.Configuration.CConfig -> [System.IO.Handle] -> [System.IO.Handle] -> String
-> String -> [(String, [String])] -> [String]
-> Prelude.IO (Prelude.Maybe String)
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term