definition:
|
readRepository :: Config -> Bool -> ErrorLogger Repository
readRepository cfg large = do
warnIfRepositoryOld cfg
mbrepo <- readRepositoryCache cfg large
case mbrepo of
Nothing -> do
repo <- readRepositoryFrom (repositoryDir cfg)
logInfo $ "Writing " ++ (if large then "large" else "base") ++
" repository cache..."
liftIOEL $ writeRepositoryCache cfg large repo
return repo
Just repo -> return repo
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
--- Reads all package specifications from the default repository.
--- Uses the cache if it is present or update the cache after reading.
--- If some errors occur, show them and terminate with error exit status.
---
--- @param cfg - the configuration to use
--- @param large - if true reads the larger cache with more package information
--- (e.g., for searching all packages)
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
readRepository
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
CPM.Config.Config -> Prelude.Bool
-> CPM.ErrorLogger.ErrorLogger CPM.Repository.Repository
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|