-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagefile_helpers.go
231 lines (189 loc) · 4.87 KB
/
magefile_helpers.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
220
221
222
223
224
225
226
227
228
229
230
231
//go:build mage
// +build mage
package main
import (
"archive/zip"
"errors"
"fmt"
"io"
"os"
"os/exec"
"runtime"
"strings"
"sync"
"time"
"github.com/fatih/color"
"github.com/magefile/mage/sh"
)
const (
MODULE_NAME = "github.com/hmerritt/adrift-native" // go.mod module name
LOG_LEVEL = 4 // 5 = debug, 4 = info, 3 = warn, 2 = error
)
// ----------------------------------------------------------------------------
// Runtime
// ----------------------------------------------------------------------------
// Runs multiple cmd commands one-by-one
func RunSync(commands [][]string) error {
for _, cmd := range commands {
if len(cmd) == 0 {
continue
}
if err := sh.Run(cmd[0], cmd[1:]...); err != nil {
return err
}
}
return nil
}
// Runs multiple commands in parallel
func RunParallel(commands [][]string) error {
var wg sync.WaitGroup
var errCatch error = nil
// Launch a goroutine for each command.
for _, cmd := range commands {
if len(cmd) == 0 {
continue
}
wg.Add(1)
go func(cmd []string) {
defer wg.Done()
if err := sh.Run(cmd[0], cmd[1:]...); err != nil {
errCatch = err
}
}(cmd)
}
// Wait for all the goroutines to finish.
wg.Wait()
// If any of the commands failed, return the first error.
if errCatch != nil {
return errCatch
}
return nil
}
// ----------------------------------------------------------------------------
// CLI
// ----------------------------------------------------------------------------
type Logger struct {
// The logging level the logger should log at. This is typically (and defaults
// to) `Info`, which allows Info(), Warn(), Error() and Fatal() to be logged.
Level uint32
// Name of the function Logger was initiated from.
FnInitName string
// Timestamp of Logger initiation.
InitTimestamp time.Time
// Timestamp of the most recent log. Used to calculate and show the time in
// milliseconds since last log.
PrevTimestamp time.Time
}
func NewLogger() *Logger {
// Function name
pc, _, _, _ := runtime.Caller(1)
funcName := runtime.FuncForPC(pc).Name()
funcName = funcName[strings.LastIndex(funcName, ".")+1:] // Removes package name
return &Logger{
Level: LOG_LEVEL,
FnInitName: funcName,
InitTimestamp: time.Now(),
PrevTimestamp: time.Now(),
}
}
func (l *Logger) log(level uint32, a ...interface{}) {
if l.Level < level {
return
}
currentTime := time.Now()
formattedTime := currentTime.Format("2006-01-02 15:04:05")
toLog := fmt.Sprintf("%s (%s) +%7s => ", formattedTime, l.FnInitName, DurationSince(l.PrevTimestamp))
messages := make([]interface{}, 0)
messages = append(messages, toLog)
messages = append(messages, a...)
fmt.Println(messages...)
l.PrevTimestamp = currentTime
}
func (l *Logger) SetLevel(level uint32) {
l.Level = level
}
func (l *Logger) Error(messages ...interface{}) error {
color.Set(color.FgRed)
defer color.Unset()
l.log(2, messages...)
return errors.New(strings.Trim(strings.Join(strings.Fields(fmt.Sprint(messages)), " "), "[]"))
}
func (l *Logger) Warn(messages ...interface{}) {
color.Set(color.FgYellow)
defer color.Unset()
l.log(3, messages...)
}
func (l *Logger) Info(messages ...interface{}) {
l.log(4, messages...)
}
func (l *Logger) Debug(messages ...interface{}) {
l.log(5, messages...)
}
func (l *Logger) End() {
color.Set(color.FgCyan)
defer color.Unset()
l.log(4, fmt.Sprintf("took %s", DurationSince(l.InitTimestamp)))
}
func DurationSince(since time.Time) string {
ms := time.Now().Sub(since).Milliseconds()
if ms < 1000 {
return fmt.Sprintf("%.2fms", float64(ms))
}
if ms < 60000 {
s := float64(ms) / 1000
return fmt.Sprintf("%.2fs", s)
}
m := float64(ms) / 60000
return fmt.Sprintf("%.2fm", m)
}
// ----------------------------------------------------------------------------
// MISC
// ----------------------------------------------------------------------------
// Checks if an executable exists in PATH
func ExecExists(e string) bool {
_, err := exec.LookPath(e)
return err == nil
}
// Get ENV, or use fallback value
func GetEnv(key, fallback string) string {
if value, ok := os.LookupEnv(key); ok {
return value
}
return fallback
}
// Zip one or more files
func ZipFiles(zipPath string, files ...string) error {
zipFile, err := os.Create(zipPath)
if err != nil {
return err
}
defer zipFile.Close()
zipWriter := zip.NewWriter(zipFile)
defer zipWriter.Close()
// Add the files to the ZIP archive
for _, file := range files {
fileToZip, err := os.Open(file)
if err != nil {
return err
}
defer fileToZip.Close()
info, err := fileToZip.Stat()
if err != nil {
return err
}
header, err := zip.FileInfoHeader(info)
if err != nil {
return err
}
header.Method = zip.Deflate
writer, err := zipWriter.CreateHeader(header)
if err != nil {
return err
}
_, err = io.Copy(writer, fileToZip)
if err != nil {
return err
}
}
return nil
}