git-annex/Utility/Env.hs

68 lines
1.5 KiB
Haskell
Raw Normal View History

{- portable environment variables
-
- Copyright 2013 Joey Hess <id@joeyh.name>
-
- License: BSD-2-clause
-}
{-# LANGUAGE CPP #-}
{-# OPTIONS_GHC -fno-warn-tabs #-}
module Utility.Env (
getEnv,
getEnvDefault,
getEnvironment,
addEntry,
addEntries,
delEntry,
) where
2013-05-12 17:24:46 +00:00
#ifdef mingw32_HOST_OS
import Utility.Exception
2013-05-12 17:24:46 +00:00
import Control.Applicative
import Data.Maybe
import Prelude
2013-05-11 22:23:41 +00:00
import qualified System.Environment as E
#else
2013-05-11 22:23:41 +00:00
import qualified System.Posix.Env as PE
#endif
getEnv :: String -> IO (Maybe String)
2013-05-12 17:24:46 +00:00
#ifndef mingw32_HOST_OS
2013-05-11 22:23:41 +00:00
getEnv = PE.getEnv
#else
getEnv = catchMaybeIO . E.getEnv
#endif
2013-05-11 21:27:21 +00:00
getEnvDefault :: String -> String -> IO String
2013-05-12 17:24:46 +00:00
#ifndef mingw32_HOST_OS
2013-05-11 22:23:41 +00:00
getEnvDefault = PE.getEnvDefault
2013-05-11 21:27:21 +00:00
#else
getEnvDefault var fallback = fromMaybe fallback <$> getEnv var
#endif
2013-05-11 22:23:41 +00:00
getEnvironment :: IO [(String, String)]
2013-05-12 17:24:46 +00:00
#ifndef mingw32_HOST_OS
2013-05-11 22:23:41 +00:00
getEnvironment = PE.getEnvironment
#else
getEnvironment = E.getEnvironment
#endif
{- Adds the environment variable to the input environment. If already
- present in the list, removes the old value.
-
- This does not really belong here, but Data.AssocList is for some reason
- buried inside hxt.
-}
addEntry :: Eq k => k -> v -> [(k, v)] -> [(k, v)]
addEntry k v l = ( (k,v) : ) $! delEntry k l
addEntries :: Eq k => [(k, v)] -> [(k, v)] -> [(k, v)]
addEntries = foldr (.) id . map (uncurry addEntry) . reverse
delEntry :: Eq k => k -> [(k, v)] -> [(k, v)]
delEntry _ [] = []
delEntry k (x@(k1,_) : rest)
| k == k1 = rest
| otherwise = ( x : ) $! delEntry k rest