forked from reconquest/orgalorg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.go
More file actions
296 lines (249 loc) · 4.88 KB
/
Copy patharchive.go
File metadata and controls
296 lines (249 loc) · 4.88 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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
package main
import (
"archive/tar"
"fmt"
"io"
"os"
"path/filepath"
"sync"
"syscall"
"github.com/reconquest/go-lineflushwriter"
"github.com/reconquest/go-prefixwriter"
"github.com/seletskiy/hierr"
)
func startArchiveReceivers(
cluster *distributedLock,
rootDir string,
sudo bool,
serial bool,
) (*remoteExecution, error) {
var (
command = []string{}
prefix = []string{}
)
if sudo {
prefix = sudoCommand
}
command = append(command, prefix...)
command = append(command, `mkdir`, `-p`, rootDir, `&&`)
command = append(command, prefix...)
command = append(command, `tar`, `--directory`, rootDir, `-x`)
if verbose >= verbosityDebug {
command = append(command, `--verbose`)
}
logMutex := &sync.Mutex{}
runner := &remoteExecutionRunner{command: command, serial: serial}
execution, err := runner.run(
cluster,
func(node *remoteExecutionNode) {
node.stdout = lineflushwriter.New(
prefixwriter.New(node.stdout, "{tar} "),
logMutex,
true,
)
node.stderr = lineflushwriter.New(
prefixwriter.New(node.stderr, "{tar} "),
logMutex,
true,
)
},
)
if err != nil {
return nil, hierr.Errorf(
err,
`can't start tar extraction command: '%v'`,
command,
)
}
return execution, nil
}
func archiveFilesToWriter(
target io.WriteCloser,
files []file,
preserveUID, preserveGID bool,
) error {
workDir, err := os.Getwd()
if err != nil {
return hierr.Errorf(
err,
`can't get current working directory`,
)
}
status := &struct {
Phase string
Total int
Fails int
Success int
Written bytesStringer
Bytes bytesStringer
}{
Phase: "upload",
Total: len(files),
}
setStatus(status)
for _, file := range files {
status.Bytes.Amount += file.size
}
archive := tar.NewWriter(target)
stream := io.MultiWriter(archive, callbackWriter(
func(data []byte) (int, error) {
status.Written.Amount += len(data)
drawStatus()
return len(data), nil
},
))
for fileIndex, file := range files {
infof(
"%5d/%d sending file: '%s'",
fileIndex+1,
len(files),
file.path,
)
err = writeFileToArchive(
file.path,
stream,
archive,
workDir,
preserveUID,
preserveGID,
)
if err != nil {
return hierr.Errorf(
err,
`can't write file to archive: '%s'`,
file.path,
)
}
status.Success++
}
tracef("closing archive stream, %d files sent", len(files))
err = archive.Close()
if err != nil {
return hierr.Errorf(
err,
`can't close tar stream`,
)
}
err = target.Close()
if err != nil {
return hierr.Errorf(
err,
`can't close target stdin`,
)
}
return nil
}
func writeFileToArchive(
fileName string,
stream io.Writer,
archive *tar.Writer,
workDir string,
preserveUID, preserveGID bool,
) error {
fileInfo, err := os.Stat(fileName)
if err != nil {
return hierr.Errorf(
err,
`can't stat file for archiving: '%s`, fileName,
)
}
// avoid tar warnings about leading slash
tarFileName := fileName
if tarFileName[0] == '/' {
tarFileName = tarFileName[1:]
fileName, err = filepath.Rel(workDir, fileName)
if err != nil {
return hierr.Errorf(
err,
`can't make relative path from: '%s'`,
fileName,
)
}
}
header := &tar.Header{
Name: tarFileName,
Mode: int64(fileInfo.Sys().(*syscall.Stat_t).Mode),
Size: fileInfo.Size(),
ModTime: fileInfo.ModTime(),
}
if preserveUID {
header.Uid = int(fileInfo.Sys().(*syscall.Stat_t).Uid)
}
if preserveGID {
header.Gid = int(fileInfo.Sys().(*syscall.Stat_t).Gid)
}
tracef(
hierr.Errorf(
fmt.Sprintf(
"size: %d bytes; mode: %o; uid/gid: %d/%d; modtime: %s",
header.Size,
header.Mode,
header.Uid,
header.Gid,
header.ModTime,
),
`local file: %s; remote file: %s`,
fileName,
tarFileName,
).Error(),
)
err = archive.WriteHeader(header)
if err != nil {
return hierr.Errorf(
err,
`can't write tar header for fileName: '%s'`, fileName,
)
}
fileToArchive, err := os.Open(fileName)
if err != nil {
return hierr.Errorf(
err,
`can't open fileName for reading: '%s'`,
fileName,
)
}
_, err = io.Copy(stream, fileToArchive)
if err != nil {
return hierr.Errorf(
err,
`can't copy file to the archive: '%s'`,
fileName,
)
}
return nil
}
func getFilesList(relative bool, sources ...string) ([]file, error) {
files := []file{}
for _, source := range sources {
err := filepath.Walk(
source,
func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.IsDir() {
return nil
}
if !relative {
path, err = filepath.Abs(path)
if err != nil {
return hierr.Errorf(
err,
`can't get absolute path for local file: '%s'`,
path,
)
}
}
files = append(files, file{
path: path,
size: int(info.Size()),
})
return nil
},
)
if err != nil {
return nil, err
}
}
return files, nil
}