| 123456789101112131415161718192021222324252627282930313233343536373839 |
- // This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
- // license. Its contents can be found at:
- // http://creativecommons.org/publicdomain/zero/1.0/
- package bindata
- import (
- "fmt"
- "io"
- "io/ioutil"
- "path/filepath"
- "strings"
- )
- // createTOC writes a table of contents file to the given location.
- func CreateTOC(dir, pkgname string) error {
- file := filepath.Join(dir, "bindata-toc.go")
- code := fmt.Sprintf(`package %s
- // Global Table of Contents map. Generated by go-bindata.
- // After startup of the program, all generated data files will
- // put themselves in this map. The key is the full filename, as
- // supplied to go-bindata.
- var go_bindata = make(map[string]func() []byte)`, pkgname)
- return ioutil.WriteFile(file, []byte(code), 0600)
- }
- // WriteTOCInit writes the TOC init function for a given data file
- // replacing the prefix in the filename by "", funcname being the translated function name
- func WriteTOCInit(output io.Writer, filename, prefix, funcname string) {
- filename = strings.Replace(filename, prefix, "", 1)
- fmt.Fprintf(output, `
- func init() {
- go_bindata[%q] = %s
- }
- `, filename, funcname)
- }
|