definition: |
main :: IO () main = do args <- getArgs case args of ["serve"] -> cpnsStart ["start"] -> startServerIfNecessary ["stop"] -> stopServer ["status"] -> cpnsStatus ["log"] -> do logfile <- getLogFile readFile logfile >>= putStr _ -> putErrLn $ "ERROR: Illegal arguments: " ++ unwords args ++ "\n" ++ "Allowed arguments: start | stop | serve | status | log" |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Main function for CPNS demon. Check arguments and execute command. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> _} |
name: |
main |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |