-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpathname.go
297 lines (246 loc) · 5.8 KB
/
pathname.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
package pathname
import (
"fmt"
"io"
"io/fs"
"math/rand"
"os"
"path"
"path/filepath"
)
// Pathname is convenient tool to manipulate filepath
// inspired by Ruby's Pathname
type Pathname struct {
filePath string
}
func New(pathString string) Pathname {
return Pathname{filePath: path.Clean(pathString)}
}
// Raw create demo Pathname without any modification
func Raw(pathString string) Pathname {
return Pathname{filePath: pathString}
}
// -- path string manipulation (without interaction with filesystem)
// return the string representation
func (o Pathname) String() string {
return o.filePath
}
func (o Pathname) Cleaned() Pathname {
return Raw(filepath.Clean(o.filePath))
}
func (o Pathname) Append(path string) Pathname {
return Raw(filepath.Join(o.filePath, path))
}
func (o Pathname) Parent() Pathname {
return Raw(filepath.Dir(o.filePath))
}
func (o Pathname) Basename() string {
return filepath.Base(o.filePath)
}
func (o Pathname) Extension() string {
return filepath.Ext(o.filePath)
}
func (o Pathname) IsAbsolute() bool {
return filepath.IsAbs(o.filePath)
}
// -- fs tree
// AbsolutePath returns an absolute representation of path.
// If the path is not absolute it will be joined with the current
func (o Pathname) AbsolutePath() Pathname {
var path, _ = filepath.Abs(o.filePath)
return Raw(path)
}
func (o Pathname) Children() ([]Pathname, error) {
files, err := os.ReadDir(o.filePath)
if err != nil {
return nil, err
}
var paths = make([]Pathname, len(files))
for i, file := range files {
var p = filepath.Join(o.filePath, file.Name())
paths[i] = Raw(p)
}
return paths, nil
}
// Walk is just a wrapper of filepath.WalkDir
func (o Pathname) Walk(block func(path Pathname, entry fs.DirEntry, err error) error) error {
return filepath.WalkDir(o.filePath, func(path string, info fs.DirEntry, err error) error {
return block(Raw(path), info, err)
})
}
func (o Pathname) ChildrenNames() []string {
files, err := os.ReadDir(o.filePath)
if err != nil {
return nil
}
var paths = make([]string, len(files))
for i, file := range files {
paths[i] = file.Name()
}
return paths
}
func (o Pathname) Mkpath() error {
return os.MkdirAll(o.filePath, 0755)
}
func (o Pathname) Mkpath2(perm uint32) error {
return os.MkdirAll(o.filePath, os.FileMode(perm))
}
func (o Pathname) Rmtree() error {
return os.RemoveAll(o.filePath)
}
// Glob is the shell style glob
// Doesn't support '**' as any nested path
func (o Pathname) Glob(pattern string) []Pathname {
var fullPattern = filepath.Join(o.filePath, pattern)
var m, _ = filepath.Glob(fullPattern)
var paths = make([]Pathname, len(m))
for i, s := range m {
paths[i] = Raw(s)
}
return paths
}
func (o Pathname) AppendRandom() Pathname {
var name = fmt.Sprintf("%8x", rand.Int())
var t = o.Append(name)
if t.Exist() {
return o.AppendRandom()
}
return t
}
// -- file manipulation
func (o Pathname) Exist() bool {
var _, err = os.Stat(o.filePath)
if err == nil {
return true
} else {
return false
}
}
func (o Pathname) IsDirectory() bool {
fileInfo, err := os.Stat(o.filePath)
if err != nil {
return false
}
return fileInfo.IsDir()
}
func (o Pathname) IsFile() bool {
fileInfo, err := os.Stat(o.filePath)
if err != nil {
return false
}
return !fileInfo.IsDir()
}
func (o Pathname) IsRegularFile() bool {
fileInfo, err := os.Lstat(o.filePath)
if err != nil {
return false
}
return fileInfo.Mode().IsRegular()
}
func (o Pathname) IsSymlink() bool {
fileInfo, err := os.Lstat(o.filePath)
if err != nil {
return false
}
return fileInfo.Mode()&os.ModeSymlink != 0
}
func (o Pathname) Write(text string) error {
var bytes = []byte(text)
return os.WriteFile(o.filePath, bytes, 0644)
}
func (o Pathname) Read() (string, error) {
var data, err = os.ReadFile(o.filePath)
if err != nil {
return "", err
}
var text = string(data)
return text, err
}
func (o Pathname) MoveTo(path Pathname) error {
return os.Rename(o.filePath, path.filePath)
}
func (o Pathname) CopyTo(toPath Pathname) error {
if toPath.IsDirectory() {
return o.CopyDirTo(toPath)
} else {
return o.CopyFileTo(toPath)
}
}
func (o Pathname) CopyFileTo(toPath Pathname) error {
fileInfo, err := os.Stat(o.filePath)
if err != nil {
return err
}
if !fileInfo.Mode().IsRegular() {
if fileInfo.IsDir() {
return fmt.Errorf("source is dir (not a file)")
} else {
return fmt.Errorf("source not a regular file")
}
}
if toPath.Exist() {
return fmt.Errorf("target already exist")
}
source, err := os.Open(o.filePath)
if err != nil {
return err
}
defer source.Close()
destination, err := os.OpenFile(toPath.filePath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, fileInfo.Mode().Perm())
if err != nil {
return err
}
defer destination.Close()
_, err = io.Copy(destination, source)
return err
}
func (o Pathname) SymlinkTo(toPath Pathname) error {
return os.Symlink(toPath.filePath, o.filePath)
}
func (o Pathname) Perm() uint32 {
fileInfo, err := os.Stat(o.filePath)
if err != nil {
return 0
}
return uint32(fileInfo.Mode().Perm())
}
func (o Pathname) Chmod(perm uint32) error {
return os.Chmod(o.filePath, os.FileMode(perm))
}
func (o Pathname) Chown(uid int) error {
return os.Chown(o.filePath, uid, -1)
}
// -- change working path
func Current() Pathname {
var path, _ = os.Getwd()
return New(path)
}
func TempDir() Pathname {
return Raw(os.TempDir())
}
func HomeDir() Pathname {
var path, _ = os.UserHomeDir()
return Raw(path)
}
func (o Pathname) Chdir() error {
return os.Chdir(o.filePath)
}
func (o Pathname) ChdirWithin(block func(path Pathname)) error {
var oldDir = Current()
var error = os.Chdir(o.filePath)
if error != nil {
return error
}
block(o)
return os.Chdir(oldDir.filePath)
}
// --- others
func ErrIgnore[T any](a T, err error) T {
return a
}
func ErrDie[T any](a T, err error) T {
if err != nil {
panic(err)
}
return a
}