-
Notifications
You must be signed in to change notification settings - Fork 7
/
freeze.go
74 lines (67 loc) · 1.76 KB
/
freeze.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
package span
import (
"archive/zip"
"bytes"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
)
// UnfreezeFilterConfig takes the name of a zipfile (from span-freeze) and
// returns of the path the thawed filterconfig (along with the temporary
// directory and error). When this function returns, all URLs in the
// filterconfig have then been replaced by absolute path on the file system.
// Cleanup of temporary directory is responsibility of caller.
func UnfreezeFilterConfig(frozenfile string) (dir, blob string, err error) {
dir, err = ioutil.TempDir("", "span-tag-unfreeze-")
if err != nil {
return dir, "", err
}
r, err := zip.OpenReader(frozenfile)
if err != nil {
return dir, "", err
}
defer r.Close()
var mappings = make(map[string]string)
if err := os.MkdirAll(filepath.Join(dir, "files"), 0777); err != nil {
return dir, "", err
}
for _, f := range r.File {
rc, err := f.Open()
if err != nil {
return dir, "", err
}
ff, err := os.Create(filepath.Join(dir, f.Name))
if err != nil {
return dir, "", err
}
var buf bytes.Buffer
tr := io.TeeReader(rc, &buf)
if _, err := io.Copy(ff, tr); err != nil {
return dir, "", err
}
rc.Close()
ff.Close()
if f.Name == "mapping.json" {
if err := json.NewDecoder(&buf).Decode(&mappings); err != nil {
return dir, "", err
}
}
}
blobfile := filepath.Join(dir, "blob")
b, err := ioutil.ReadFile(blobfile)
if err != nil {
return dir, "", err
}
for url, file := range mappings {
value := []byte(fmt.Sprintf(`%q`, url))
replacement := []byte(fmt.Sprintf(`"file://%s"`, filepath.Join(dir, file)))
b = bytes.Replace(b, value, replacement, -1)
}
if err := ioutil.WriteFile(blobfile, b, 0777); err != nil {
return dir, "", err
}
return dir, blobfile, nil
}