forked from singnet/platform-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.go
219 lines (168 loc) · 3.97 KB
/
utils.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package main
import (
"bufio"
"errors"
"io/ioutil"
"log"
"os"
"os/exec"
"strconv"
"strings"
"time"
)
type checkWithTimeoutType func() (bool, error)
// ExecCommand is used to run command from command line
type ExecCommand struct {
Command string
Directory string
Env []string
Input []string
OutputFile string
Args []string
}
var envHome string
var envSingnetRepos string
var envGoPath string
var logPath string
func init() {
envHome = os.Getenv("HOME")
envSingnetRepos = os.Getenv("SINGNET_REPOS")
envGoPath = os.Getenv("GOPATH")
logPath = envGoPath + "/log"
log.Printf("SINGNET_REPOS=%s\n", envSingnetRepos)
}
func readFile(file string) (string, error) {
buf, err := ioutil.ReadFile(file)
if err != nil {
return "", err
}
return string(buf), nil
}
func fileExists(fileName string) bool {
_, err := os.Stat(fileName)
return !os.IsNotExist(err)
}
func writeToFile(fileName string, content string) error {
file, err := os.Create(fileName)
if err != nil {
return err
}
defer file.Close()
_, err = file.WriteString(content)
return err
}
func appendToFile(fileName string, content string) error {
file, err := os.OpenFile(fileName, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0600)
if err != nil {
return err
}
defer file.Close()
_, err = file.WriteString(content)
return err
}
func linkFile(fileFrom string, fileTo string) error {
if fileExists(fileTo) {
return nil
}
return os.Symlink(fileFrom, fileTo)
}
func getPropertyFromFile(path string, property string) (string, error) {
return getPropertyWithIndexFromFile(path, property, 0)
}
func getPropertyWithIndexFromFile(path string, property string, index int) (string, error) {
f, err := os.Open(path)
if err != nil {
return "", err
}
defer f.Close()
scanner := bufio.NewScanner(f)
scanner.Split(bufio.ScanWords)
found := false
for scanner.Scan() {
if found {
value := scanner.Text()
if err := scanner.Err(); err != nil {
return "", err
}
return value, nil
}
if strings.Contains(scanner.Text(), property) {
if index == 0 {
found = true
} else {
index--
}
}
}
if err := scanner.Err(); err != nil {
return "", err
}
return "", errors.New("Property: " + property + " not found in file: " + path)
}
func runCommand(execCommad ExecCommand) error {
log.Printf("[run_command] dir: '%s', command: '%s', args: '%s'\n",
execCommad.Directory, execCommad.Command, strings.Join(execCommad.Args, ","))
cmd, err := getCmd(execCommad)
if err != nil {
return err
}
return cmd.Run()
}
func runCommandAsync(execCommad ExecCommand) error {
log.Printf("[run_command_async] dir: '%s', command: '%s', args: '%s'\n",
execCommad.Directory, execCommad.Command, strings.Join(execCommad.Args, ","))
cmd, err := getCmd(execCommad)
if err != nil {
return err
}
return cmd.Start()
}
func getCmd(execCommad ExecCommand) (*exec.Cmd, error) {
cmd := exec.Command(execCommad.Command, execCommad.Args...)
cmd.Dir = execCommad.Directory
if execCommad.OutputFile != "" {
stdOut, err := os.Create(execCommad.OutputFile)
if err != nil {
return nil, err
}
cmd.Stdout = stdOut
cmd.Stderr = stdOut
} else {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
}
if len(execCommad.Input) > 0 {
cmd.Stdin = strings.NewReader(strings.Join(execCommad.Input, "\n"))
}
cmd.Env = os.Environ()
env := execCommad.Env
if env != nil && len(env) > 0 {
for _, e := range env {
cmd.Env = append(cmd.Env, e)
}
}
return cmd, nil
}
// timeout and tick are measurd in milliseconds units
func checkWithTimeout(timeout time.Duration,
tick time.Duration,
f checkWithTimeoutType) (bool, error) {
_timeout := time.After(timeout * time.Millisecond)
_tick := time.Tick(tick * time.Millisecond)
for {
select {
case <-_timeout:
return false, errors.New("timed out")
case <-_tick:
ok, err := f()
if err != nil {
return false, err
} else if ok {
return true, nil
}
}
}
}
func toString(value int) string {
return strconv.Itoa(value)
}