-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.go
104 lines (92 loc) · 1.68 KB
/
util.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
package ops
import (
"fmt"
"regexp"
"time"
)
var (
ch chan string
vb bool
logging bool
postLogs []string
printChecksum bool
versionRegex = regexp.MustCompile(`1\.\d+-pre\d+|1\.\d+\.\d+[-_]pre\d+|1\.\d+-rc\d+|1\.\d+\.\d+-rc\d+|1\.\d+.\d+|1\.\d+`)
)
func StartLog(verbose bool, sum bool) {
logging = true
vb = verbose
if !vb {
ch = AsyncSpinner()
}
printChecksum = sum
}
func EndLog(things ...any) {
if !vb {
str := fmt.Sprintln(things...)
ch <- str[:len(str)-1]
close(ch)
time.Sleep(time.Millisecond)
} else {
fmt.Println(things...)
}
for i := range postLogs {
fmt.Println(postLogs[i])
}
}
func log(things ...any) {
if !logging {
return
}
if vb {
fmt.Println(things...)
}
}
func slog(things ...any) {
if !logging {
return
}
if !vb {
str := fmt.Sprintln(things...)
ch <- str[:len(str)-1]
} else {
fmt.Println(things...)
}
}
func post(things ...any) {
if !logging {
return
}
str := "** " + fmt.Sprintln(things...)
postLogs = append(postLogs, str[:len(str)-1])
}
func AsyncSpinner() chan string {
ch := make(chan string)
// because for some fucking reason syscall.Stdout is a different type on windows and idgaf to fix it
//if !terminal.IsTerminal(syscall.Stdout) {
// close(ch)
//}
go func() {
chars := []string{"|", "/", "-", "\\"}
var title string
i := 0
for {
if i+1 < len(chars) {
i++
} else {
i = 0
}
fmt.Printf("\033[2K\n\033[1A%v %v", chars[i], title)
select {
case rx, open := <-ch:
if open {
title = rx
continue
}
fmt.Printf("\033[2K\n\033[1A%v %v\n", "✓", title)
return
case <-time.After(150 * time.Millisecond):
}
}
}()
return ch
}