forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.go
61 lines (53 loc) · 1.42 KB
/
env.go
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
package util
import (
"fmt"
"os"
"regexp"
"strconv"
)
func EnvInt(key string, defaultValue int32, minValue int32) int32 {
value, err := strconv.ParseInt(Env(key, fmt.Sprintf("%d", defaultValue)), 10, 32)
if err != nil || int32(value) < minValue {
return defaultValue
}
return int32(value)
}
// Env returns an environment variable or a default value if not specified.
func Env(key string, defaultValue string) string {
val := os.Getenv(key)
if len(val) == 0 {
return defaultValue
}
return val
}
// GetEnv returns an environment value if specified
func GetEnv(key string) (string, bool) {
val := os.Getenv(key)
if len(val) == 0 {
return "", false
}
return val, true
}
type Environment map[string]string
var argumentEnvironment = regexp.MustCompile("^([\\w\\-_]+)\\=(.*)$")
func IsEnvironmentArgument(s string) bool {
return argumentEnvironment.MatchString(s)
}
func ParseEnvironmentArguments(s []string) (Environment, []string, []error) {
errs := []error{}
duplicates := []string{}
env := make(Environment)
for _, s := range s {
switch matches := argumentEnvironment.FindStringSubmatch(s); len(matches) {
case 3:
k, v := matches[1], matches[2]
if exist, ok := env[k]; ok {
duplicates = append(duplicates, fmt.Sprintf("%s=%s", k, exist))
}
env[k] = v
default:
errs = append(errs, fmt.Errorf("environment variables must be of the form key=value: %s", s))
}
}
return env, duplicates, errs
}