Skip to content

Commit 2c7bab2

Browse files
author
Vic Shóstak
committed
Add new features: IsFileExist, IsDirExist
1 parent d75038c commit 2c7bab2

File tree

5 files changed

+226
-40
lines changed

5 files changed

+226
-40
lines changed

README.md

+45-31
Original file line numberDiff line numberDiff line change
@@ -85,25 +85,45 @@ task with the smallest possible allocation of your machine's resources.
8585

8686
### Concat
8787

88-
Concatenate strings `s` to the one string:
88+
Concatenates strings `s` to the one string:
8989

9090
```go
9191
s1 := "this "
9292
s2 := "is "
9393
s3 := "my string"
9494

95-
s := gosl.Concat(s1, s2, s3)
95+
s := gosl.Concat(s1, s2, s3) // "this is my string"
9696
```
9797

9898
### ContainsCaseInsensitive
9999

100-
Report if string `substr` is within string `s` (case-insensitive by default):
100+
Reports if string `substr` is within string `s` (case-insensitive by default):
101101

102102
```go
103103
s := "Hello, WORLD!"
104104
substr := "r"
105105

106-
b := gosl.ContainsCaseInsensitive(s, substr)
106+
b := gosl.ContainsCaseInsensitive(s, substr) // true
107+
```
108+
109+
### IsFileExist
110+
111+
Reports whether a file exists on the specified `path`:
112+
113+
```go
114+
p := filepath.Clean("~/Downloads/file.csv")
115+
116+
b := gosl.IsFileExist(p) // true|false
117+
```
118+
119+
### IsDirExist
120+
121+
Reports whether a dir exists on the specified `path`:
122+
123+
```go
124+
p := filepath.Clean("~/Downloads/my-folder")
125+
126+
b := gosl.IsDirExist(p) // true|false
107127
```
108128

109129
### RandomString
@@ -113,7 +133,7 @@ Generates a (**really**) random string with a given size:
113133
```go
114134
size := 8
115135

116-
s, err := gosl.RandomString(size)
136+
s, err := gosl.RandomString(size) // string, like "34f4ey7e"
117137
if err != nil {
118138
log.Fatal(err)
119139
}
@@ -126,33 +146,33 @@ Renders a styled string with a given `lipgloss.Style` template:
126146
```go
127147
tmpl := lipgloss.NewStyle().Foreground(lipgloss.Color("42")).Margin(1)
128148

129-
s := gosl.RenderStyled("This is a styled text", tmpl)
149+
s := gosl.RenderStyled("This is a styled text", tmpl) // styled string
130150
```
131151

132152
This function is a more comfortable wrapper for the
133153
[charmbracelet/lipgloss][charmbracelet_lipgloss_url] library.
134154

135155
### ToString
136156

137-
Convert byte slice `b` to string or error:
157+
Converts byte slice `b` to string or error:
138158

139159
```go
140160
b := []byte("Hello, World!")
141161

142-
s, err := gosl.ToString(b)
162+
s, err := gosl.ToString(b) // "Hello, World!"
143163
if err != nil {
144164
log.Fatal(err)
145165
}
146166
```
147167

148168
### ToBytes
149169

150-
Convert string `s` to byte slice or error:
170+
Converts string `s` to byte slice or error:
151171

152172
```go
153173
s := "Hello, World!"
154174

155-
b, err := gosl.ToBytes(s)
175+
b, err := gosl.ToBytes(s) // [48 65 6c ...]
156176
if err != nil {
157177
log.Fatal(err)
158178
}
@@ -171,46 +191,46 @@ resources, but can be applied to a huge number of user types.
171191
172192
### Equals
173193

174-
Compare two values of type `T`, return `true` if they are equal:
194+
Compares two values of type `T`, return `true` if they are equal:
175195

176196
```go
177197
s1 := "hello"
178198
s2 := "hello"
179199

180-
b := gosl.Equals(s1, s2)
200+
b := gosl.Equals(s1, s2) // true
181201
```
182202

183203
### NotEquals
184204

185-
Compare two values of type `T`, return `true` if they are **not** equal:
205+
Compares two values of type `T`, return `true` if they are **not** equal:
186206

187207
```go
188208
s1 := 42
189209
s2 := 64
190210

191-
b := gosl.NotEquals(s1, s2)
211+
b := gosl.NotEquals(s1, s2) // true
192212
```
193213

194214
### ContainsInSlice
195215

196-
Report if value `v` is within slice `s`:
216+
Reports if value `v` is within slice `s`:
197217

198218
```go
199219
s := []string{"one", "two", "three"}
200220
v := "two"
201221

202-
b := gosl.ContainsInSlice(s, v)
222+
b := gosl.ContainsInSlice(s, v) // true
203223
```
204224

205225
### ContainsInMap
206226

207-
Report if key `k` is within map `m`:
227+
Reports if key `k` is within map `m`:
208228

209229
```go
210230
m := map[string]int{"one": 1, "two": 2, "three": 3}
211231
k := "two"
212232

213-
b := gosl.ContainsInMap(m, k)
233+
b := gosl.ContainsInMap(m, k) // true
214234
```
215235

216236
### Marshal
@@ -225,7 +245,7 @@ type user struct {
225245

226246
u := &user{}
227247

228-
j, err := gosl.Marshal(u)
248+
j, err := gosl.Marshal(u) // {"id": 0, "name": ""}
229249
if err != nil {
230250
log.Fatal(err)
231251
}
@@ -247,7 +267,7 @@ type user struct {
247267
j := []byte(`{"id":1,"name":"Viktor"}`)
248268
m := &user{}
249269

250-
u, err := gosl.Unmarshal(j, m)
270+
u, err := gosl.Unmarshal(j, m) // [id:1 name:Viktor]
251271
if err != nil {
252272
log.Fatal(err)
253273
}
@@ -300,6 +320,10 @@ BenchmarkContainsCaseInsensitive_LoremIpsum-8 1827114 656.4 ns/op
300320
BenchmarkContainsInSlice-8 122999034 9.758 ns/op 0 B/op 0 allocs/op
301321

302322
BenchmarkContainsInMap-8 19123504 62.61 ns/op 0 B/op 0 allocs/op
323+
324+
BenchmarkIsFileExist-8 395916 2941 ns/op 240 B/op 2 allocs/op
325+
326+
BenchmarkIsDirExist-8 437505 2696 ns/op 224 B/op 2 allocs/op
303327
```
304328

305329
## 💡 Motivation
@@ -335,29 +359,19 @@ Your PRs & issues are welcome! Thank you 😘
335359
and robots by [Vic Shóstak][author].
336360

337361
[go_version_img]: https://img.shields.io/badge/Go-1.20+-00ADD8?style=for-the-badge&logo=go
338-
339362
[go_report_img]: https://img.shields.io/badge/Go_report-A+-success?style=for-the-badge&logo=none
340-
341363
[go_report_url]: https://goreportcard.com/report/github.com/koddr/gosl
342364

343365
[go_dev_url]: https://pkg.go.dev/github.com/koddr/gosl
344366

345-
[code_coverage_img]: https://img.shields.io/badge/code_coverage-98%25-success?style=for-the-badge&logo=none
367+
[code_coverage_img]: https://img.shields.io/badge/code_coverage-99%25-success?style=for-the-badge&logo=none
346368

347369
[license_img]: https://img.shields.io/badge/license-Apache_2.0-red?style=for-the-badge&logo=none
348-
349370
[license_url]: https://github.com/koddr/gosl/blob/main/LICENSE
350-
351371
[repo_url]: https://github.com/koddr/gosl
352-
353372
[repo_issues_url]: https://github.com/koddr/gosl/issues
354-
355373
[repo_pull_request_url]: https://github.com/koddr/gosl/pulls
356-
357374
[encoding_json_url]: https://pkg.go.dev/encoding/json
358-
359375
[charmbracelet_lipgloss_url]: https://github.com/charmbracelet/lipgloss
360-
361376
[benchmarks]: https://github.com/koddr/gosl/tree/main#%EF%B8%8F-benchmarks
362-
363377
[author]: https://github.com/koddr

gosl.go

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Package gosl provides a snippet collection for working with routine
2-
// operations in your Go programs with a super user-friendly API and the most
3-
// efficient performance.
1+
// Package gosl provides a snippet collection for working with routine operations
2+
// in your Go programs with a super user-friendly API and the most efficient
3+
// performance.
44
package gosl
55

66
import "github.com/charmbracelet/lipgloss"
@@ -29,6 +29,16 @@ func (u *Utility) ContainsCaseInsensitive(s, substr string) bool {
2929
return ContainsCaseInsensitive(s, substr)
3030
}
3131

32+
// IsFileExist reports whether a file exists on the specified path.
33+
func (u *Utility) IsFileExist(path string) bool {
34+
return IsFileExist(path)
35+
}
36+
37+
// IsDirExist reports whether a dir exists on the specified path.
38+
func (u *Utility) IsDirExist(path string) bool {
39+
return IsDirExist(path)
40+
}
41+
3242
// RandomString generates a random string with a given size using built-in
3343
// "crypto/rand" and "encoding/hex" packages.
3444
//

renders_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ import (
77
"github.com/stretchr/testify/assert"
88
)
99

10-
var resultPrinters string
10+
var resultRenders string
1111

1212
func BenchmarkRenderStyled(b *testing.B) {
1313
var r string
1414
for i := 0; i < b.N; i++ {
1515
r = RenderStyled("Hello, World!", lipgloss.NewStyle().Foreground(lipgloss.Color("42")))
1616
}
17-
resultGenerators = r
17+
resultRenders = r
1818
}
1919

2020
func TestRenderStyled(t *testing.T) {

reporters.go

+83-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
package gosl
22

3-
import "strings"
3+
import (
4+
"os"
5+
"strings"
6+
)
47

58
// ContainsCaseInsensitive reports if substr is within s string using built-in
69
// "strings" package with strings.Contains. Case-insensitive for input values by
710
// default.
811
//
9-
// If s and/or substr have an "" (empty) value returns false for a bool.
12+
// If s and/or substr have a zero-value, returns false for bool.
1013
//
1114
// Example:
1215
//
@@ -36,7 +39,7 @@ func ContainsCaseInsensitive(s, substr string) bool {
3639

3740
// ContainsInSlice reports if value T is within slice []T.
3841
//
39-
// If s have a zero-value returns false for a bool.
42+
// If s has a zero-value, returns false for bool.
4043
//
4144
// Example:
4245
//
@@ -72,7 +75,7 @@ func ContainsInSlice[T comparable](s []T, value T) bool {
7275

7376
// ContainsInMap reports if key T is within map[T]K.
7477
//
75-
// If m have a zero-value returns false for a bool.
78+
// If m has a zero-value, returns false for bool.
7679
//
7780
// Example:
7881
//
@@ -103,3 +106,79 @@ func ContainsInMap[T any, K comparable](m map[K]T, key K) bool {
103106

104107
return false
105108
}
109+
110+
// IsFileExist reports whether a file exists on the specified path.
111+
//
112+
// If path has a zero-value or is dir, returns false for bool.
113+
//
114+
// Example:
115+
//
116+
// package main
117+
//
118+
// import (
119+
// "fmt"
120+
//
121+
// "github.com/koddr/gosl"
122+
// )
123+
//
124+
// func main() {
125+
// p := filepath.Clean("~/Downloads/file.csv")
126+
//
127+
// b := gosl.IsFileExist(p)
128+
//
129+
// fmt.Println(b)
130+
// }
131+
func IsFileExist(path string) bool {
132+
// Check, if the specified path has a zero-value.
133+
if path == "" {
134+
return false
135+
}
136+
137+
// Get stat of the specified path or error.
138+
file, err := os.Stat(path)
139+
140+
// Check, if file is not dir.
141+
if file.IsDir() {
142+
return false
143+
}
144+
145+
return err == nil || !os.IsNotExist(err)
146+
}
147+
148+
// IsDirExist reports whether a dir exists on the specified path.
149+
//
150+
// If path has a zero-value or is file, returns false for bool.
151+
//
152+
// Example:
153+
//
154+
// package main
155+
//
156+
// import (
157+
// "fmt"
158+
//
159+
// "github.com/koddr/gosl"
160+
// )
161+
//
162+
// func main() {
163+
// p := filepath.Clean("~/Downloads/my-folder")
164+
//
165+
// b := gosl.IsDirExist(p)
166+
//
167+
// fmt.Println(b)
168+
// }
169+
func IsDirExist(path string) bool {
170+
// Check, if the specified path has a zero-value.
171+
if path == "" {
172+
return false
173+
}
174+
175+
// Get stat of the specified path or error.
176+
dir, err := os.Stat(path)
177+
178+
// Check, if dir is not file.
179+
if !dir.IsDir() {
180+
return false
181+
}
182+
183+
return err == nil || !os.IsNotExist(err)
184+
}

0 commit comments

Comments
 (0)