definition: |
setCurryPathIfNecessary :: IO () setCurryPathIfNecessary = do cp <- getEnv "CURRYPATH" when (null cp) $ do cdir <- getCurrentDirectory getPackageSpecPath cdir >>= maybe setCurryPathByCPM loadCurryPathFromCache where loadCurryPathFromCache specdir = do let cachefile = specdir </> ".cpm" </> "CURRYPATH_CACHE" excache <- doesFileExist cachefile if excache then do cftime <- getModificationTime cachefile pftime <- getModificationTime (specdir </> packageSpecFile) if cftime > pftime then do cnt <- readCompleteFile cachefile let cpath = head (lines cnt) setEnv "CURRYPATH" cpath else setCurryPathByCPM else setCurryPathByCPM setCurryPathByCPM = setCurryPath True "" |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- If the environment variable `CURRYPATH` is not already set --- (i.e., not null), set it to the value stored in CPM's `CURRYPATH_CACHE` --- file or set it by `System.CurryPath.setCurryPath` --- (which uses `cypm deps --path` to compute its value). |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> _} |
name: |
setCurryPathIfNecessary |
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 |