-
Notifications
You must be signed in to change notification settings - Fork 0
/
file.go
284 lines (242 loc) · 6.33 KB
/
file.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
package main
// import (
// "errors"
// "fmt"
// "io"
// "io/ioutil"
// "os"
// "path"
// "path/filepath"
// "strings"
// "github.com/gobuffalo/packr/v2"
// )
// // CopyBox is to copy the contents of packr.Box to dst, except for the ignores list.
// func CopyBox(dst io.Writer, box *packr.Box, ignores []string, format ...string) (int64, error) {
// files := box.List()
// var count int64
// for _, f := range files {
// isBreak := false
// for _, ig := range ignores {
// if f == ig {
// isBreak = true
// break
// }
// }
// if isBreak {
// continue
// }
// i, err := CopyBoxFile(dst, box, f, format...)
// if err != nil {
// return count, err
// }
// count += i
// }
// return count, nil
// }
// // CopyBoxFile copies the content of the specified name in packr.Box to dst.
// func CopyBoxFile(dst io.Writer, box *packr.Box, name string, format ...string) (int64, error) {
// bs, err := box.Find(name)
// if err != nil {
// return 0, err
// }
// if 1 == len(format) {
// _, fullname := filepath.Split(name)
// var extension = filepath.Ext(fullname)
// var filename = fullname[0 : len(fullname)-len(extension)]
// bs = []byte(fmt.Sprintf(format[0], fullname, filename, string(bs)))
// } else if 1 < len(format) {
// return 0, errors.New("invaild format")
// }
// count, err := dst.Write(bs)
// return int64(count), err
// }
// // AppendFile append src file to dst
// func AppendFile(src, dst string) error {
// f, err := os.OpenFile(dst, os.O_APPEND|os.O_WRONLY|os.O_CREATE, os.ModeAppend)
// if err != nil {
// return err
// }
// bs, err := ioutil.ReadFile(src)
// if err != nil {
// return err
// }
// _, err = f.Write(bs)
// if err1 := f.Close(); err == nil {
// err = err1
// }
// f.Sync()
// return err
// }
// // MergeFiles merge multiple files in the specified directory to the specified file
// func MergeFiles(src, dst string, before, after string, format, separator string, ignores ...string) error {
// f, err := os.OpenFile(dst, os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
// if err != nil {
// return err
// }
// _, err = f.WriteString(before)
// if err != nil {
// return err
// }
// err = mergeFiles(src, f, format, separator, ignores...)
// _, err = f.WriteString(after)
// if err != nil {
// return err
// }
// f.Sync()
// if err1 := f.Close(); err == nil {
// err = err1
// }
// return err
// }
// func mergeFiles(src string, dst *os.File, format string, separator string, ignores ...string) error {
// st, err := os.Stat(src)
// if err != nil {
// return err
// }
// if !st.IsDir() {
// return appendFile(src, dst, format, separator)
// }
// jsFds, err := ioutil.ReadDir(src)
// if err != nil {
// return err
// }
// for _, fd := range jsFds {
// fdPath := path.Join(src, fd.Name())
// ok := true
// for _, ig := range ignores {
// if fdPath == ig || strings.Contains(fdPath, ig) {
// ok = false
// break
// }
// }
// if !ok {
// continue
// }
// if fd.IsDir() {
// if err = mergeFiles(fdPath, dst, format, separator, ignores...); err != nil {
// return err
// }
// } else if err = appendFile(fdPath, dst, format, separator); err != nil {
// return err
// }
// }
// return nil
// }
// func appendFile(src string, dst *os.File, format string, separator string) error {
// fd, err := os.Stat(src)
// if err != nil {
// return err
// }
// bs, err := ioutil.ReadFile(src)
// if err != nil {
// return err
// }
// if format != "" {
// var filename = fd.Name()
// var extension = filepath.Ext(filename)
// var name = filename[0 : len(filename)-len(extension)]
// bs = []byte(fmt.Sprintf(format, fd.Name(), name, string(bs)))
// }
// if separator != "" {
// bs = append(bs, separator...)
// }
// _, err = dst.Write(bs)
// return err
// }
// // CpDir copies a whole directory recursively
// func CpDir(src, dst string) error {
// var err error
// var fds []os.FileInfo
// var srcinfo os.FileInfo
// if srcinfo, err = os.Stat(src); err != nil {
// return err
// }
// if err = os.MkdirAll(dst, srcinfo.Mode()); err != nil {
// return err
// }
// if fds, err = ioutil.ReadDir(src); err != nil {
// return err
// }
// for _, fd := range fds {
// srcfp := path.Join(src, fd.Name())
// dstfp := path.Join(dst, fd.Name())
// if fd.IsDir() {
// if err = CpDir(srcfp, dstfp); err != nil {
// return err
// }
// } else {
// if err = CpFile(srcfp, dstfp); err != nil {
// return err
// }
// }
// }
// return nil
// }
// // CopyDir copies from src dir to dst until either EOF is reached
// // on src or an error occurs
// func CopyDir(dst io.Writer, src string, format string) (int64, error) {
// fds, err := ioutil.ReadDir(src)
// if err != nil {
// return 0, err
// }
// var count int64
// for _, fd := range fds {
// fdPath := path.Join(src, fd.Name())
// var i int64
// var err error
// if fd.IsDir() {
// i, err = CopyDir(dst, fdPath, format)
// } else {
// i, err = CopyFile(dst, fdPath, format)
// }
// if err != nil {
// return count, err
// }
// count += i
// }
// return count, nil
// }
// // CopyFile copies from src dir to dst until either EOF is reached
// // on src or an error occurs
// func CopyFile(dst io.Writer, src string, format string) (int64, error) {
// if "" == format {
// srcfd, err := os.Open(src)
// if err != nil {
// return 0, err
// }
// defer srcfd.Close()
// return io.Copy(dst, srcfd)
// }
// bs, err := ioutil.ReadFile(src)
// if err != nil {
// return 0, err
// }
// _, filename := filepath.Split(src)
// var extension = filepath.Ext(filename)
// var name = filename[0 : len(filename)-len(extension)]
// bs = []byte(fmt.Sprintf(format, filename, name, string(bs)))
// count, err := dst.Write(bs)
// return int64(count), err
// }
// // CpFile copies a single file from src to dst
// func CpFile(src, dst string) error {
// var err error
// var srcfd *os.File
// var dstfd *os.File
// var srcinfo os.FileInfo
// if srcfd, err = os.Open(src); err != nil {
// return err
// }
// defer srcfd.Close()
// if dstfd, err = os.Create(dst); err != nil {
// return err
// }
// defer dstfd.Close()
// if _, err = io.Copy(dstfd, srcfd); err != nil {
// return err
// }
// if srcinfo, err = os.Stat(src); err != nil {
// return err
// }
// return os.Chmod(dst, srcinfo.Mode())
// }