-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileio.go
161 lines (145 loc) · 4.72 KB
/
fileio.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
package cmd_toolkit
import (
"errors"
"fmt"
"io"
"io/fs"
"os"
"path/filepath"
"time"
"github.com/majohn-r/output"
"github.com/spf13/afero"
)
const (
// StdFilePermissions is the standard mode constant for plain files; it sets up the file
// to be read/write for its owner, read only for everyone else
StdFilePermissions = 0o644
// StdDirPermissions is the standard mode constant for directory files; it sets up the
// directory to be read/write/executable for its owner, read/executable for everyone else;
StdDirPermissions = 0o755 // -rwxr-xr-x
)
var (
fileSystem = afero.NewOsFs()
)
// FileSystem returns the current afero.Fs instance
func FileSystem() afero.Fs {
return fileSystem
}
// AssignFileSystem sets the current afero.Fs instance and returns the original
// pre-assignment value
func AssignFileSystem(newFileSystem afero.Fs) afero.Fs {
originalFs := fileSystem
fileSystem = newFileSystem
return originalFs
}
// CopyFile copies a file. Adapted from
// https://github.com/cleversoap/go-cp/blob/master/cp.go
func CopyFile(src, destination string) error {
absSrc, _ := filepath.Abs(src)
absDestination, _ := filepath.Abs(destination)
if absSrc == absDestination {
return fmt.Errorf("cannot copy file %q to itself", absSrc)
}
openedSrc, srcOpenErr := fileSystem.Open(src)
if srcOpenErr != nil {
return srcOpenErr
}
defer func() {
_ = openedSrc.Close()
}()
if destinationIsDir, _ := afero.IsDir(fileSystem, destination); destinationIsDir {
return fmt.Errorf("cannot overwrite a directory")
}
openedDestination, destinationOpenErr := fileSystem.Create(destination)
if destinationOpenErr != nil {
return destinationOpenErr
}
defer func() {
_ = openedDestination.Close()
}()
_, _ = io.Copy(openedDestination, openedSrc)
return nil
}
// DirExists returns whether the specified file exists as a directory
func DirExists(path string) bool {
pathIsDir, _ := afero.IsDir(fileSystem, path)
return pathIsDir
}
// LogFileDeletionFailure logs errors when a file cannot be deleted; does not
// write anything to the error output because that typically needs additional
// context
func LogFileDeletionFailure(o output.Bus, s string, e error) {
o.Log(output.Error, "cannot delete file", map[string]any{
"fileName": s,
"error": e,
})
}
// logUnreadableDirectory logs errors when a directory cannot be read; does not
// write anything to the error output because that typically needs additional
// context
func logUnreadableDirectory(o output.Bus, s string, e error) {
o.Log(output.Error, "cannot read directory", map[string]any{
"directory": s,
"error": e,
})
}
// Mkdir makes the specified directory; succeeds if the directory already
// exists. Fails if a plain file exists with the specified path.
func Mkdir(path string) error {
pathIsDir, err := afero.IsDir(fileSystem, path)
if pathIsDir || (err != nil && !errors.Is(err, afero.ErrFileNotFound)) {
return err
}
if PlainFileExists(path) {
return fmt.Errorf("file exists and is not a directory")
}
parentIsDir, _ := afero.IsDir(fileSystem, filepath.Dir(path))
if !parentIsDir {
return fmt.Errorf("parent directory is not a directory")
}
return fileSystem.Mkdir(path, StdDirPermissions)
}
// ModificationTime returns a file's modification time. An error return indicates that
// there was a problem reading the file and a modification time is not available.
// This function addresses https://github.com/majohn-r/cmd-toolkit/issues/47
func ModificationTime(fileName string) (time.Time, error) {
var modifiedTime time.Time
file, err := os.Stat(fileName)
if err != nil {
return modifiedTime, err
}
modifiedTime = file.ModTime()
return modifiedTime, nil
}
// PlainFileExists returns whether the specified file exists as a plain file
// (i.e., not a directory)
func PlainFileExists(path string) bool {
f, err := fileSystem.Stat(path)
if err != nil {
return false
}
return !f.IsDir()
}
// ReadDirectory returns the contents of a specified directory
func ReadDirectory(o output.Bus, dir string) ([]fs.FileInfo, bool) {
files, fileErr := afero.ReadDir(fileSystem, dir)
if fileErr == nil {
return files, true
}
logUnreadableDirectory(o, dir, fileErr)
o.ErrorPrintf("The directory %q cannot be read: %s.\n", dir, ErrorToString(fileErr))
return nil, false
}
// ReportFileCreationFailure reports an error creating a file to error output
// and to the log
func ReportFileCreationFailure(o output.Bus, cmd, file string, e error) {
o.ErrorPrintf("The file %q cannot be created: %s.\n", file, ErrorToString(e))
o.Log(output.Error, "cannot create file", map[string]any{
"command": cmd,
"fileName": file,
"error": e,
})
}
func writeDirectoryCreationError(o output.Bus, d string, e error) {
o.ErrorPrintf("The directory %q cannot be created: %s.\n", d, ErrorToString(e))
}