-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reporters.go
184 lines (167 loc) · 3.04 KB
/
reporters.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
package gosl
import (
"os"
"strings"
)
// ContainsCaseInsensitive reports if substr is within s string using built-in
// "strings" package with strings.Contains. Case-insensitive for input values by
// default.
//
// If s and/or substr have a zero-value, returns false for bool.
//
// Example:
//
// package main
//
// import (
// "fmt"
//
// "github.com/koddr/gosl"
// )
//
// func main() {
// s := "this is my string"
// substr := "my"
//
// b := gosl.ContainsCaseInsensitive(s, substr)
//
// fmt.Println(b)
// }
func ContainsCaseInsensitive(s, substr string) bool {
if s == "" || substr == "" {
return false
}
return strings.Contains(strings.ToLower(s), strings.ToLower(substr))
}
// ContainsInSlice reports if value T is within slice []T.
//
// If s has a zero-value, returns false for bool.
//
// Example:
//
// package main
//
// import (
// "fmt"
//
// "github.com/koddr/gosl"
// )
//
// func main() {
// s := []string{"one", "two", "three"}
// value := "two"
//
// b := gosl.ContainsInSlice(s, value)
//
// fmt.Println(b)
// }
func ContainsInSlice[T comparable](s []T, value T) bool {
if s == nil {
return false
}
for _, elem := range s {
if elem == value {
return true
}
}
return false
}
// ContainsInMap reports if key T is within map[T]K.
//
// If m has a zero-value, returns false for bool.
//
// Example:
//
// package main
//
// import (
// "fmt"
//
// "github.com/koddr/gosl"
// )
//
// func main() {
// m := map[string]int{"one": 1, "two": 2, "three": 3}
// key := "two"
//
// b := gosl.ContainsInMap(m, key)
//
// fmt.Println(b)
// }
func ContainsInMap[T any, K comparable](m map[K]T, key K) bool {
if m == nil {
return false
}
if _, exists := m[key]; exists {
return true
}
return false
}
// IsFileExist reports whether a file exists on the specified path.
//
// If path has a zero-value or is dir, returns false for bool.
//
// Example:
//
// package main
//
// import (
// "fmt"
//
// "github.com/koddr/gosl"
// )
//
// func main() {
// p := filepath.Clean("~/Downloads/file.csv")
//
// b := gosl.IsFileExist(p)
//
// fmt.Println(b)
// }
func IsFileExist(path string) bool {
// Check, if the specified path has a zero-value.
if path == "" {
return false
}
// Get stat of the specified path or error.
fileInfo, err := os.Stat(path)
// Check, if file is not dir.
if fileInfo.IsDir() {
return false
}
return err == nil || !os.IsNotExist(err)
}
// IsDirExist reports whether a dir exists on the specified path.
//
// If path has a zero-value or is file, returns false for bool.
//
// Example:
//
// package main
//
// import (
// "fmt"
//
// "github.com/koddr/gosl"
// )
//
// func main() {
// p := filepath.Clean("~/Downloads/my-folder")
//
// b := gosl.IsDirExist(p)
//
// fmt.Println(b)
// }
func IsDirExist(path string) bool {
// Check, if the specified path has a zero-value.
if path == "" {
return false
}
// Get stat of the specified path or error.
dirInfo, err := os.Stat(path)
// Check, if dir is not file.
if !dirInfo.IsDir() {
return false
}
return err == nil || !os.IsNotExist(err)
}