git-annex/Utility/Env.hs

64 lines
1.4 KiB
Haskell
Raw Normal View History

{- portable environment variables
-
- Copyright 2013 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
{-# LANGUAGE CPP #-}
module Utility.Env 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
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
{- Returns True if it could successfully set the environment variable.
-
- There is, apparently, no way to do this in Windows. Instead,
- environment varuables must be provided when running a new process. -}
2013-05-11 21:27:21 +00:00
setEnv :: String -> String -> Bool -> IO Bool
2013-05-12 17:24:46 +00:00
#ifndef mingw32_HOST_OS
2013-05-11 21:27:21 +00:00
setEnv var val overwrite = do
2013-05-11 22:23:41 +00:00
PE.setEnv var val overwrite
return True
#else
2013-05-11 21:27:21 +00:00
setEnv _ _ _ = return False
#endif
2013-05-11 22:23:41 +00:00
{- Returns True if it could successfully unset the environment variable. -}
unsetEnv :: String -> IO Bool
2013-05-12 17:24:46 +00:00
#ifndef mingw32_HOST_OS
2013-05-11 22:23:41 +00:00
unsetEnv var = do
PE.unsetEnv var
return True
#else
2013-05-12 17:24:46 +00:00
unsetEnv _ = return False
2013-05-11 22:23:41 +00:00
#endif