2012-02-11 15:49:43 +00:00
|
|
|
## Bindata
|
2011-06-17 15:44:59 +00:00
|
|
|
|
|
|
|
This tool converts any file into managable Go source code. Useful for embedding
|
|
|
|
binary data into a go program. The file data is gzip compressed before being
|
|
|
|
converted to a raw byte slice.
|
|
|
|
|
2012-02-11 15:49:43 +00:00
|
|
|
### USAGE
|
2011-06-17 15:44:59 +00:00
|
|
|
|
|
|
|
The simplest invocation is to pass it only the input file name.
|
|
|
|
The output file and code settings are inferred from this automatically.
|
|
|
|
|
|
|
|
$ bindata -i testdata/gophercolor.png
|
|
|
|
[w] No output file specified. Using 'testdata/gophercolor.png.go'.
|
|
|
|
[w] No package name specified. Using 'main'.
|
|
|
|
[w] No function name specified. Using 'gophercolor_png'.
|
|
|
|
[i] Done.
|
|
|
|
|
|
|
|
This creates the "testdata/gophercolor.png.go" file which has a package
|
|
|
|
declaration with name 'main' and one function named 'gophercolor_png'.
|
|
|
|
It looks like this:
|
|
|
|
|
2012-03-08 10:47:57 +00:00
|
|
|
// gophercolor_png returns the decompressed binary data.
|
|
|
|
// It panics if an error occurred.
|
|
|
|
func gophercolor_png() []byte {
|
2012-03-06 18:31:58 +00:00
|
|
|
gz, err := gzip.NewReader(bytes.NewBuffer([]byte{
|
2011-06-17 15:44:59 +00:00
|
|
|
...
|
2012-03-06 18:31:58 +00:00
|
|
|
}))
|
|
|
|
|
|
|
|
if err != nil {
|
2012-03-08 10:47:57 +00:00
|
|
|
panic("Decompression failed: " + err.Error())
|
2011-06-17 15:44:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
io.Copy(&b, gz)
|
|
|
|
gz.Close()
|
2012-03-06 18:31:58 +00:00
|
|
|
|
2012-03-08 10:47:57 +00:00
|
|
|
return b.Bytes()
|
2011-06-17 15:44:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
You can now simply include the new .go file in your program and call
|
2012-03-08 10:47:57 +00:00
|
|
|
gophercolor_png() to get the uncompressed image data. The function panics
|
|
|
|
if something went wrong during decompression. This makes any faults appearant
|
|
|
|
during initialization of your program, so it can quickly be fixed. Additionally,
|
|
|
|
this approach allows us to assign the decompressed file data to global
|
|
|
|
variables where necessary.
|
|
|
|
|
2011-06-17 15:46:29 +00:00
|
|
|
See the testdata directory for example input and output.
|
|
|
|
|
2011-06-17 16:52:40 +00:00
|
|
|
Aternatively, you can pipe the input file data into stdin. bindata will then
|
|
|
|
spit out the generated Go code to stdout. This does require explicitly naming
|
|
|
|
the desired function name, as it can not be inferred from the input data.
|
|
|
|
The package name will still default to 'main'.
|
|
|
|
|
|
|
|
$ cat testdata/gophercolor.png | ./bindata -f gophercolor_png | gofmt
|
|
|
|
|
2011-06-17 15:44:59 +00:00
|
|
|
Invoke the program with the -h flag for more options.
|
|
|
|
|