-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgnsys.go
More file actions
275 lines (239 loc) · 5.34 KB
/
gnsys.go
File metadata and controls
275 lines (239 loc) · 5.34 KB
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
package gnsys
import (
"bufio"
"bytes"
"io"
"os"
"path/filepath"
"strings"
"unicode"
)
// DirState represents the state of a directory.
type DirState int
const (
Unknown DirState = iota
NotDir
DirAbsent
DirEmpty
DirNotEmpty
)
// String returns a string representation of the DirState.
func (d DirState) String() string {
switch d {
case NotDir:
return "NotDir"
case DirAbsent:
return "DirAbsent"
case DirEmpty:
return "DirEmpty"
case DirNotEmpty:
return "DirNotEmpty"
}
return "Unknown"
}
// GetDirState returns the state of a directory.
func GetDirState(dir string) DirState {
st, err := os.Stat(dir)
if os.IsNotExist(err) {
return DirAbsent
}
if st == nil {
return NotDir
}
if !st.Mode().IsDir() {
return NotDir
}
d, err := os.Open(dir)
if err != nil {
return Unknown
}
defer d.Close()
_, err = d.Readdirnames(1)
if err == io.EOF {
return DirEmpty
} else if err != nil {
return Unknown
}
return DirNotEmpty
}
// MakeDir a directory out of a given unless it already exists.
func MakeDir(dir string) error {
var err error
dir, err = ConvertTilda(dir)
if err != nil {
return err
}
path, err := os.Stat(dir)
if os.IsNotExist(err) {
return os.MkdirAll(dir, 0755)
}
if path == nil {
return nil
}
if path.Mode().IsRegular() {
return &ErrNotDir{Path: path.Name()}
}
return nil
}
// FileExists checks if a file exists, and that it is a regular file.
func FileExists(f string) (bool, error) {
path, err := os.Stat(f)
if os.IsNotExist(err) {
return false, nil
}
if path == nil {
return false, nil
}
if !path.Mode().IsRegular() {
return false, &ErrNotFile{Path: f}
}
return true, nil
}
// DirExists checks if directory exists and if it is empty
func DirExists(path string) (exists bool, empty bool, err error) {
st, err := os.Stat(path)
if os.IsNotExist(err) || st.Mode().IsRegular() {
return false, false, err
}
d, err := os.Open(path)
if err != nil {
return false, false, err
}
defer d.Close()
_, err = d.Readdirnames(1)
if err == io.EOF {
return true, true, nil
} else if err != nil {
return false, false, err
}
return true, false, nil
}
func IsFile(path string) bool {
res, _ := FileExists(path)
return res
}
func IsTextFile(path string) (bool, error) {
file, err := os.Open(path)
if err != nil {
return false, err
}
defer file.Close()
scanner := bufio.NewScanner(file)
const maxCapacity = 4096
buf := make([]byte, maxCapacity)
scanner.Buffer(buf, maxCapacity)
lineCount := 0
for scanner.Scan() {
line := scanner.Bytes()
lineCount++
// Check for null bytes (common in binary files).
if bytes.Contains(line, []byte{0}) {
return false, nil
}
// Check for a high percentage of non-printable characters.
nonPrintableCount := 0
for _, b := range line {
if !unicode.IsPrint(rune(b)) && !unicode.IsSpace(rune(b)) {
nonPrintableCount++
}
}
if float64(nonPrintableCount)/float64(len(line)) > 0.3 && len(line) > 0 {
return false, nil
}
// Check for extremely long lines without newlines (common in some binary formats).
if len(line) > 1000 && !strings.Contains(string(line), "\n") &&
!strings.Contains(string(line), "\r") {
return false, nil
}
if lineCount > 20 { //check only the first 20 lines.
break
}
}
if err := scanner.Err(); err != nil {
return false, err
}
return true, nil
}
func IsDir(path string) bool {
res, _, _ := DirExists(path)
return res
}
// CleanDir removes all files from a directory or creates the directory if
// it is absent.
func CleanDir(dir string) error {
exists, _, err := DirExists(dir)
if err != nil {
return err
}
if !exists {
return MakeDir(dir)
}
d, err := os.Open(dir)
if err != nil {
return err
}
defer d.Close()
names, err := d.Readdirnames(-1)
if err != nil {
return err
}
for _, name := range names {
err = os.RemoveAll(filepath.Join(dir, name))
if err != nil {
return err
}
}
return nil
}
// ConvertTilda expands paths with `~/` to an actual home directory.
func ConvertTilda(path string) (string, error) {
if strings.HasPrefix(path, "~/") || strings.HasPrefix(path, "~\\") {
home, err := os.UserHomeDir()
if err != nil {
return "", err
}
path = filepath.Join(home, path[2:])
}
return path, nil
}
// SplitPath breaks path into directory, file name and extension.
func SplitPath(path string) (dir, base, ext string) {
if len(path) < 2 {
return path, "", ""
}
e := path[len(path)-1]
if e == '/' {
return path[:len(path)-1], "", ""
}
dir = filepath.Dir(path)
base = filepath.Base(path)
ext = filepath.Ext(path)
base = base[:len(base)-len(ext)] // Remove extension from base
return
}
// CopyFile copies a file from src to dst. If dst does not exist, it is created.
// If dst already exists, its contents are truncated.
func CopyFile(src, dst string) (int64, error) {
sourceFile, err := os.Open(src)
if err != nil {
return 0, err
}
defer sourceFile.Close() // Ensure the source file is closed
destinationFile, err := os.Create(dst)
if err != nil {
return 0, err
}
defer destinationFile.Close() // Ensure the destination file is closed
// Copy the contents from source to destination
// io.Copy handles buffering efficiently.
bytesCopied, err := io.Copy(destinationFile, sourceFile)
if err != nil {
return 0, err
}
// Ensure all writes are flushed to disk
err = destinationFile.Sync()
if err != nil {
return 0, err
}
return bytesCopied, nil
}