-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.go
102 lines (78 loc) · 1.68 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
package main
import (
"bufio"
"fmt"
"os"
"os/exec"
"os/signal"
"strings"
"github.com/fatih/color"
"github.com/mattn/go-runewidth"
"github.com/rodaine/table"
)
func HandleKeyboardInterrupt(cond func()) {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
go func() {
<-c
cond()
}()
}
func RunShellCommand(path string, args []string) (out string, err error) {
cmd := exec.Command(path, args...)
var b []byte
b, err = cmd.CombinedOutput()
out = string(b)
return
}
func Filter[T comparable](arr []T, cond func(T) bool) (result []T) {
for i := range arr {
if cond(arr[i]) {
result = append(result, arr[i])
}
}
return
}
func Map[T comparable, Y comparable](arr []T, cond func(T) Y) (result []Y) {
for i := range arr {
result = append(result, cond(arr[i]))
}
return
}
func Contains[T comparable](arr []T, e T) bool {
for _, v := range arr {
if v == e {
return true
}
}
return false
}
func Log(a ...any) {
fmt.Println(a...)
}
func CheckGitFolder(cond func()) {
_, err := os.Stat(".git/")
if os.IsNotExist(err) {
cond()
}
}
func PrintTable(tbl table.Table) {
headerFmt := color.New(color.FgGreen, color.Underline).SprintfFunc()
columnFmt := color.New(color.FgYellow).SprintfFunc()
tbl.WithHeaderFormatter(headerFmt).WithFirstColumnFormatter(columnFmt)
tbl.WithWidthFunc(func(s string) int {
return runewidth.StringWidth(s)
})
tbl.Print()
}
func GetUserInput(s string) (input string) {
fmt.Print(s)
reader := bufio.NewReader(os.Stdin)
input, err := reader.ReadString('\n')
if err != nil {
fmt.Println("An error occurred while reading input. Please try again", err)
os.Exit(1)
}
input = strings.TrimSuffix(input, "\n")
return
}