1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
------------------------------------------------------------------------------
--- Library to access parts of the system environment.
---
--- @author Michael Hanus, Bernd Brassel, Bjoern Peemoeller
--- @version November 2020
--- @category general
------------------------------------------------------------------------------

module System.Environment
  ( getArgs, getEnv, setEnv, unsetEnv, getProgName
  , getHostname, isPosix, isWindows
  ) where

--- Returns the list of the program's command line arguments.
--- The program name is not included.

getArgs :: IO [String]
getArgs external

--- Returns the value of an environment variable.
--- The empty string is returned for undefined environment variables.

getEnv :: String -> IO String
getEnv evar = prim_getEnviron $## evar

prim_getEnviron :: String -> IO String
prim_getEnviron external

--- Set an environment variable to a value.
--- The new value will be passed to subsequent shell commands
--- (see <code>system</code>) and visible to subsequent calls to
--- <code>getEnv</code> (but it is not visible in the environment
--- of the process that started the program execution).

setEnv :: String -> String -> IO ()
setEnv evar val = (prim_setEnviron $## evar) $## val

prim_setEnviron :: String -> String -> IO ()
prim_setEnviron external

--- Removes an environment variable that has been set by
--- <code>setEnv</code>.

unsetEnv :: String -> IO ()
unsetEnv evar = prim_unsetEnviron $## evar

prim_unsetEnviron :: String -> IO ()
prim_unsetEnviron external

--- Returns the hostname of the machine running this process.

getHostname :: IO String
getHostname external

--- Returns the name of the current program, i.e., the name of the
--- main module currently executed.

getProgName :: IO String
getProgName external

--- Is the underlying operating system a POSIX system (unix, MacOS)?
isPosix :: Bool
isPosix = not isWindows

--- Is the underlying operating system a Windows system?
isWindows :: Bool
isWindows external