-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
222 lines (178 loc) · 3.85 KB
/
main.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
package main
import (
"archive/zip"
"fmt"
"io"
"log"
"net/http"
"os"
"path/filepath"
"runtime"
"strings"
"sync"
"time"
)
type result struct {
srcFilePath string
err error
}
func main() {
folder := "./files"
start := time.Now()
err := setupPipeLine(folder)
if err != nil {
log.Fatal(err)
}
fmt.Printf("Time taken: %s\n", time.Since(start))
}
func setupPipeLine(root string) error {
done := make(chan struct{})
defer close(done)
// first stage pipeline, do the files walk in folder
paths, errc := walkDir(done, root)
// second stage
results := processFiles(done, paths)
for r := range results {
if r.err != nil {
return r.err
}
}
// check for error on the channel, from walkDir stage.
if err := <-errc; err != nil {
return err
}
return nil
}
func walkDir(done <-chan struct{}, root string) (<-chan string, <-chan error) {
paths := make(chan string)
errc := make(chan error, 1)
go func() {
defer close(paths)
errc <- filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if !info.Mode().IsRegular() {
return nil
}
contentType, _ := getFileContentType(path)
if contentType != "application/zip" {
return nil
}
select {
case paths <- path:
case <-done:
return fmt.Errorf("walk canceled")
}
return nil
})
}()
return paths, errc
}
func getFileContentType(file string) (string, error) {
out, err := os.Open(file)
if err != nil {
return "", err
}
defer out.Close()
// Only the first 512 bytes are used to sniff the content type.
buffer := make([]byte, 512)
_, err = out.Read(buffer)
if err != nil {
return "", err
}
// Use the net/http package's handy DectectContentType function. Always returns a valid
// content-type by returning "application/octet-stream" if no others seemed to match.
contentType := http.DetectContentType(buffer)
return contentType, nil
}
func processFiles(done <-chan struct{}, paths <-chan string) <-chan result {
var wg sync.WaitGroup
results := make(chan result)
unzipper := func() {
for srcFilePath := range paths {
err := unzip(srcFilePath, "out")
if err != nil {
select {
case results <- result{srcFilePath, err}:
case <-done:
return
}
}
select {
case results <- result{srcFilePath, nil}:
case <-done:
return
}
}
}
numThreads := runtime.GOMAXPROCS(-1) * 2 // TODO : set this number more clever
for i := 0; i < numThreads; i++ {
wg.Add(1)
go func() {
unzipper()
wg.Done()
}()
}
go func() {
wg.Wait()
close(results)
}()
return results
}
// taken from https://stackoverflow.com/questions/20357223/easy-way-to-unzip-file
func unzip(src, dest string) error {
r, err := zip.OpenReader(src)
if err != nil {
return err
}
defer func() {
if err := r.Close(); err != nil {
panic(err)
}
}()
os.MkdirAll(dest, 0755)
// Closure to address file descriptors issue with all the deferred .Close() methods
extractAndWriteFile := func(f *zip.File) error {
rc, err := f.Open()
if err != nil {
return err
}
defer func() {
if err := rc.Close(); err != nil {
panic(err)
}
}()
path := filepath.Join(dest, f.Name)
// Check for ZipSlip (Directory traversal)
if !strings.HasPrefix(path, filepath.Clean(dest)+string(os.PathSeparator)) {
return fmt.Errorf("illegal file path: %s", path)
}
if f.FileInfo().IsDir() {
os.MkdirAll(path, f.Mode())
} else {
os.MkdirAll(filepath.Dir(path), f.Mode())
f, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, f.Mode())
if err != nil {
return err
}
defer func() {
if err := f.Close(); err != nil {
panic(err)
}
}()
_, err = io.Copy(f, rc)
if err != nil {
return err
}
}
return nil
}
for _, f := range r.File {
err := extractAndWriteFile(f)
if err != nil {
return err
}
}
return nil
}