2012-03-27 23:39:01 +00:00
|
|
|
## bindata
|
2011-06-17 15:44:59 +00:00
|
|
|
|
2013-10-30 14:24:59 +00:00
|
|
|
This package converts any file into managable Go source code. Useful for
|
|
|
|
embedding binary data into a go program. The file data is optionally gzip
|
|
|
|
compressed before being converted to a raw byte slice.
|
|
|
|
|
|
|
|
It comes with a command line tool in the `go-bindata` sub directory.
|
|
|
|
This tool offers a set of command line options, used to customize the
|
|
|
|
output being generated.
|
2011-06-17 15:44:59 +00:00
|
|
|
|
2012-03-08 10:47:57 +00:00
|
|
|
|
2014-01-29 01:03:55 +00:00
|
|
|
### Installation
|
|
|
|
|
|
|
|
To install the library and command line program, use the following:
|
|
|
|
|
|
|
|
go get github.com/jteeuwen/go-bindata/...
|
|
|
|
|
|
|
|
|
2013-10-29 17:23:52 +00:00
|
|
|
### Usage
|
2012-03-27 23:39:01 +00:00
|
|
|
|
2013-11-16 11:20:14 +00:00
|
|
|
Conversion is done on one or more sets of files. They are all embedded in a new
|
2013-10-30 14:24:59 +00:00
|
|
|
Go source file, along with a table of contents and an `Asset` function,
|
|
|
|
which allows quick access to the asset, based on its name.
|
|
|
|
|
|
|
|
The simplest invocation generates a `bindata.go` file in the current
|
2013-10-30 15:08:29 +00:00
|
|
|
working directory. It includes all assets from the `data` directory.
|
2013-10-30 14:24:59 +00:00
|
|
|
|
|
|
|
$ go-bindata data/
|
|
|
|
|
2013-11-16 11:20:14 +00:00
|
|
|
To include all input sub-directories recursively, use the elipsis postfix
|
|
|
|
as defined for Go import paths. Otherwise it will only consider assets in the
|
|
|
|
input directory itself.
|
2013-10-30 15:08:29 +00:00
|
|
|
|
2013-11-16 11:20:14 +00:00
|
|
|
$ go-bindata data/...
|
2013-10-30 15:08:29 +00:00
|
|
|
|
2013-10-30 14:24:59 +00:00
|
|
|
To specify the name of the output file being generated, we use the following:
|
|
|
|
|
2013-11-16 11:20:14 +00:00
|
|
|
$ go-bindata -o myfile.go data/
|
2013-10-30 14:24:59 +00:00
|
|
|
|
2013-11-16 11:20:14 +00:00
|
|
|
Multiple input directories can be specified if necessary.
|
|
|
|
|
|
|
|
$ go-bindata dir1/... /path/to/dir3/... dir3
|
2013-10-30 14:24:59 +00:00
|
|
|
|
2013-11-16 11:20:14 +00:00
|
|
|
|
|
|
|
The following paragraphs detail some of the command line options which can
|
|
|
|
supplied to `go-bindata`. Refer to the `testdata/out` directory for various
|
|
|
|
output examples from the assets in `testdata/in`. Each example uses different
|
|
|
|
command line options.
|
2013-10-30 14:24:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
### Debug vs Release builds
|
|
|
|
|
|
|
|
When invoking the program with the `-debug` flag, the generated code does
|
|
|
|
not actually include the asset data. Instead, it generates function stubs
|
|
|
|
which load the data from the original file on disk. The asset API remains
|
|
|
|
identical between debug and release builds, so your code will not have to
|
|
|
|
change.
|
|
|
|
|
|
|
|
This is useful during development when you expect the assets to change often.
|
|
|
|
The host application using these assets uses the same API in both cases and
|
|
|
|
will not have to care where the actual data comes from.
|
|
|
|
|
|
|
|
An example is a Go webserver with some embedded, static web content like
|
|
|
|
HTML, JS and CSS files. While developing it, you do not want to rebuild the
|
|
|
|
whole server and restart it every time you make a change to a bit of
|
|
|
|
javascript. You just want to build and launch the server once. Then just press
|
|
|
|
refresh in the browser to see those changes. Embedding the assets with the
|
|
|
|
`debug` flag allows you to do just that. When you are finished developing and
|
|
|
|
ready for deployment, just re-invoke `go-bindata` without the `-debug` flag.
|
|
|
|
It will now embed the latest version of the assets.
|
|
|
|
|
2012-03-27 23:39:01 +00:00
|
|
|
|
2012-06-22 12:12:15 +00:00
|
|
|
### Lower memory footprint
|
|
|
|
|
2013-07-25 20:46:12 +00:00
|
|
|
Using the `-nomemcopy` flag, will alter the way the output file is generated.
|
2012-06-22 12:12:15 +00:00
|
|
|
It will employ a hack that allows us to read the file data directly from
|
|
|
|
the compiled program's `.rodata` section. This ensures that when we call
|
2012-09-04 15:15:15 +00:00
|
|
|
call our generated function, we omit unnecessary memcopies.
|
2012-06-22 12:12:15 +00:00
|
|
|
|
|
|
|
The downside of this, is that it requires dependencies on the `reflect` and
|
|
|
|
`unsafe` packages. These may be restricted on platforms like AppEngine and
|
|
|
|
thus prevent you from using this mode.
|
|
|
|
|
|
|
|
Another disadvantage is that the byte slice we create, is strictly read-only.
|
|
|
|
For most use-cases this is not a problem, but if you ever try to alter the
|
|
|
|
returned byte slice, a runtime panic is thrown. Use this mode only on target
|
|
|
|
platforms where memory constraints are an issue.
|
|
|
|
|
|
|
|
The default behaviour is to use the old code generation method. This
|
|
|
|
prevents the two previously mentioned issues, but will employ at least one
|
|
|
|
extra memcopy and thus increase memory requirements.
|
|
|
|
|
2013-03-09 12:37:09 +00:00
|
|
|
For instance, consider the following two examples:
|
2012-06-22 12:12:15 +00:00
|
|
|
|
|
|
|
This would be the default mode, using an extra memcopy but gives a safe
|
|
|
|
implementation without dependencies on `reflect` and `unsafe`:
|
|
|
|
|
2013-07-25 20:46:12 +00:00
|
|
|
```go
|
|
|
|
func myfile() []byte {
|
|
|
|
return []byte{0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a}
|
|
|
|
}
|
|
|
|
```
|
2012-06-22 12:12:15 +00:00
|
|
|
|
2013-03-09 12:37:09 +00:00
|
|
|
Here is the same functionality, but uses the `.rodata` hack.
|
2012-06-22 12:12:15 +00:00
|
|
|
The byte slice returned from this example can not be written to without
|
|
|
|
generating a runtime error.
|
|
|
|
|
2013-07-25 20:46:12 +00:00
|
|
|
```go
|
|
|
|
var _myfile = "\x89\x50\x4e\x47\x0d\x0a\x1a"
|
|
|
|
|
|
|
|
func myfile() []byte {
|
|
|
|
var empty [0]byte
|
|
|
|
sx := (*reflect.StringHeader)(unsafe.Pointer(&_myfile))
|
|
|
|
b := empty[:]
|
|
|
|
bx := (*reflect.SliceHeader)(unsafe.Pointer(&b))
|
|
|
|
bx.Data = sx.Data
|
|
|
|
bx.Len = len(_myfile)
|
|
|
|
bx.Cap = bx.Len
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
```
|
2012-06-22 12:12:15 +00:00
|
|
|
|
|
|
|
|
2012-03-27 23:39:01 +00:00
|
|
|
### Optional compression
|
|
|
|
|
2013-10-30 14:24:59 +00:00
|
|
|
When the `-nocompress` flag is given, the supplied resource is *not* GZIP
|
|
|
|
compressed before being turned into Go code. The data should still be accessed
|
|
|
|
through a function call, so nothing changes in the usage of the generated file.
|
2012-06-13 12:17:25 +00:00
|
|
|
|
|
|
|
This feature is useful if you do not care for compression, or the supplied
|
|
|
|
resource is already compressed. Doing it again would not add any value and may
|
|
|
|
even increase the size of the data.
|
2012-03-27 23:39:01 +00:00
|
|
|
|
|
|
|
The default behaviour of the program is to use compression.
|
2011-06-17 15:44:59 +00:00
|
|
|
|
2013-07-25 20:46:12 +00:00
|
|
|
|
2013-11-01 09:36:39 +00:00
|
|
|
### Path prefix stripping
|
2013-07-25 20:46:12 +00:00
|
|
|
|
2013-10-30 14:24:59 +00:00
|
|
|
The keys used in the `_bindata` map, are the same as the input file name
|
|
|
|
passed to `go-bindata`. This includes the path. In most cases, this is not
|
|
|
|
desireable, as it puts potentially sensitive information in your code base.
|
|
|
|
For this purpose, the tool supplies another command line flag `-prefix`.
|
|
|
|
This accepts a portion of a path name, which should be stripped off from
|
|
|
|
the map keys and function names.
|
2013-07-25 20:46:12 +00:00
|
|
|
|
|
|
|
For example, running without the `-prefix` flag, we get:
|
|
|
|
|
2013-10-30 14:24:59 +00:00
|
|
|
$ go-bindata /path/to/templates/
|
|
|
|
|
|
|
|
_bindata["/path/to/templates/foo.html"] = path_to_templates_foo_html
|
2013-07-25 20:46:12 +00:00
|
|
|
|
|
|
|
Running with the `-prefix` flag, we get:
|
|
|
|
|
2013-10-30 14:24:59 +00:00
|
|
|
$ go-bindata -prefix "/path/to/" /path/to/templates/
|
|
|
|
|
|
|
|
_bindata["templates/foo.html"] = templates_foo_html
|
2013-07-25 20:46:12 +00:00
|
|
|
|
|
|
|
|
2013-11-01 09:36:39 +00:00
|
|
|
### Build tags
|
2013-09-19 15:27:54 +00:00
|
|
|
|
2013-10-30 14:24:59 +00:00
|
|
|
With the optional `-tags` flag, you can specify any go build tags that
|
2013-09-19 15:27:54 +00:00
|
|
|
must be fulfilled for the output file to be included in a build. This
|
2013-10-30 14:24:59 +00:00
|
|
|
is useful when including binary data in multiple formats, where the desired
|
|
|
|
format is specified at build time with the appropriate tags.
|
2013-09-19 15:27:54 +00:00
|
|
|
|
|
|
|
The tags are appended to a `// +build` line in the beginning of the output file
|
|
|
|
and must follow the build tags syntax specified by the go tool.
|
2013-10-30 14:24:59 +00:00
|
|
|
|
|
|
|
|