definition:
|
warnIfRepositoryOld :: Config -> ErrorLogger ()
warnIfRepositoryOld cfg = do
logDebug "Check last update time of repository index..."
let updatefile = repositoryDir cfg </> "README.md"
updexists <- liftIOEL $ doesFileExist updatefile
if updexists
then do
utime <- liftIOEL $ getModificationTime updatefile
ctime <- liftIOEL $ getClockTime
let warntime = addDays 10 utime
when (compareClockTime ctime warntime == GT) $ do
-- we assume that clock time is measured in seconds
let timediff = clockTimeToInt ctime - clockTimeToInt utime
days = timediff `div` (60*60*24)
logInfo $ "Warning: your repository index is older than " ++
show days ++ " days.\n" ++ useUpdateHelp
else do
logError $ "It seems that the repository of CPM is not initialized.\n" ++
useUpdateHelp
liftIOEL $ exitWith 1
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Prints a warning if the repository index is older than 10 days.
--- Abort with an error message if the repository index is not initialized
--- (e.g., by the command `cypm update`).
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
warnIfRepositoryOld
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CPM.Config.Config -> CPM.ErrorLogger.ErrorLogger ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|