forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 4
/
env.go
89 lines (69 loc) · 1.79 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
Copyright 2017 - Greg Haskins <gregory.haskins@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package golang
import (
"os"
"path/filepath"
"strings"
"time"
)
type Env map[string]string
func getEnv() Env {
env := make(Env)
for _, entry := range os.Environ() {
tokens := strings.SplitN(entry, "=", 2)
if len(tokens) > 1 {
env[tokens[0]] = tokens[1]
}
}
return env
}
func getGoEnv() (Env, error) {
env := getEnv()
goenvbytes, err := runProgram(env, 10*time.Second, "go", "env")
if err != nil {
return nil, err
}
goenv := make(Env)
envout := strings.Split(string(goenvbytes), "\n")
for _, entry := range envout {
tokens := strings.SplitN(entry, "=", 2)
if len(tokens) > 1 {
goenv[tokens[0]] = strings.Trim(tokens[1], "\"")
}
}
return goenv, nil
}
func flattenEnv(env Env) []string {
result := make([]string, 0)
for k, v := range env {
result = append(result, k+"="+v)
}
return result
}
type Paths map[string]bool
func splitEnvPaths(value string) Paths {
_paths := filepath.SplitList(value)
paths := make(Paths)
for _, path := range _paths {
paths[path] = true
}
return paths
}
func flattenEnvPaths(paths Paths) string {
_paths := make([]string, 0)
for path, _ := range paths {
_paths = append(_paths, path)
}
return strings.Join(_paths, string(os.PathListSeparator))
}