-
Notifications
You must be signed in to change notification settings - Fork 4
/
embd.go
241 lines (207 loc) · 5.71 KB
/
embd.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
/*
The MIT License (MIT)
Copyright (c) 2015-2016 Mateusz Czapliński <[email protected]>
Copyright (c) 2016 alxmsl <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package main
import (
"bufio"
"flag"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"regexp"
"text/template"
)
const version = "embd-go version 1.2 (2016-01-13) https://github.com/akavel/embd-go"
var (
out = flag.String("o", "embd/data.go", "Path to generated file.")
pkg = flag.String("p", "embd", "Package that the generated file should be in.")
// TODO(akavel): support gzipping & unzipping when requested via option
)
func main() {
err := run()
if err != nil {
fmt.Fprintf(os.Stderr, "error: %s\n", err)
os.Exit(1)
}
}
func run() error {
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "USAGE: %s [FLAGS] PATH...\n", filepath.Base(os.Args[0]))
flag.PrintDefaults()
fmt.Println("Note: directories are added non-recursively (only immediate children).")
fmt.Fprintln(os.Stderr, version)
}
flag.Parse()
if flag.NArg() == 0 {
flag.Usage()
os.Exit(1)
}
//TODO[later]: build only one big string constant in init(), then make the variables contain its subslices
//TODO[later]: make sure we don't follow symlinks (for simplicity)
contents := Contents{
// TODO(akavel): quote them properly for command line, not via {{printf "%q"}}
Args: os.Args[1:],
Pkg: *pkg,
Files: map[string]File{},
Dirs: map[string]map[string]File{},
}
for _, path := range flag.Args() {
path := filepath.ToSlash(path)
info, err := os.Stat(path)
if err != nil {
return err
}
if info.IsDir() {
dir, err := ioutil.ReadDir(path)
if err != nil {
return err
}
k := "Dir" + normalize(path)
if _, exists := contents.Dirs[k]; exists {
return fmt.Errorf("generated variable name conflict: directory '%s' resolves to"+
" variable name %s, which was already reserved for one of the previous arguments",
path, k)
}
files := map[string]File{}
for _, info := range dir {
// TODO(akavel): add subdirectories recursively
if info.IsDir() {
continue
}
f, err := NewFile(path + "/" + info.Name())
if err != nil {
return err
}
if old, exists := files[f.VarName]; exists {
return fmt.Errorf(
"generated variable name conflict: '%s' resolves to"+
"the same variable name %s as '%s'",
f.Path, f.VarName, old.Path)
}
files[f.VarName] = f
}
contents.Dirs[k] = files
} else {
f, err := NewFile(path)
if err != nil {
return err
}
if old, exists := contents.Files[f.VarName]; exists {
return fmt.Errorf(
"generated variable name conflict: '%s' resolves to"+
"the same variable name %s as '%s'",
f.Path, f.VarName, old.Path)
}
k := "File" + normalize(path)
contents.Files[k] = f
}
}
err := os.MkdirAll(filepath.Dir(*out), 0777)
if err != nil {
return err
}
out, err := os.Create(*out)
if err != nil {
return err
}
defer out.Close()
w := bufio.NewWriter(out)
defer w.Flush()
err = template.Must(template.New("Contents").Parse(Template)).Execute(w, contents)
if err != nil {
return err
}
return nil
}
func normalize(path string) string {
return Normalize.ReplaceAllString("_"+filepath.Base(path), "_")
}
var Normalize = regexp.MustCompile(`[^A-Za-z0-9]+`)
func GoEscaped(buf []byte) string {
s := fmt.Sprintf("%q", string(buf))
return s[1 : len(s)-1]
}
func NewFile(path string) (File, error) {
f, err := os.Open(path)
if err != nil {
return File{}, err
}
ch := make(chan string)
go func() {
defer f.Close()
r := bufio.NewReader(f)
buf := [20]byte{}
for {
n, err := io.ReadFull(r, buf[:])
switch err {
case io.ErrUnexpectedEOF:
ch <- GoEscaped(buf[:n])
fallthrough
case io.EOF:
close(ch)
return
case nil:
ch <- GoEscaped(buf[:])
default:
panic(fmt.Errorf("%s: %s", path, err))
}
}
}()
return File{
Path: path,
VarName: Normalize.ReplaceAllString("File_"+filepath.Base(path), "_"),
DataFragments: ch,
}, nil
}
type Contents struct {
Args []string
Pkg string
Files map[string]File
Dirs map[string]map[string]File
}
type File struct {
VarName, Path string
DataFragments <-chan string
}
var Template = `
// DO NOT EDIT BY HAND
//
// Generated with:
//
// embd-go{{range .Args}}{{. | printf " %q"}}{{end}}
package {{.Pkg}}
{{range .Files}}
// {{.VarName}} contains contents of "{{.Path}}" file.
var {{.VarName}} = []byte("{{range .DataFragments}}{{.}}{{end}}")
{{end}}`[1:] + `
{{range $name, $files := .Dirs}}
var {{$name}} = struct {
{{range $files}}`[1:] + `
// {{.VarName}} contains contents of "{{.Path}}" file.
{{.VarName}} []byte
{{end}}`[1:] + `
}{
{{range $files}}`[1:] + `
[]byte("{{range .DataFragments}}{{.}}{{end}}"),
{{end}}`[1:] + `
}
{{end}}`[1:]