2013-10-30 12:14:58 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-12-09 05:40:43 +00:00
|
|
|
"fmt"
|
2013-10-30 12:14:58 +00:00
|
|
|
"reflect"
|
2014-12-09 05:40:43 +00:00
|
|
|
"strings"
|
2013-10-30 12:14:58 +00:00
|
|
|
"unsafe"
|
2014-12-09 05:40:43 +00:00
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
"io/ioutil"
|
|
|
|
"path"
|
|
|
|
"path/filepath"
|
2013-10-30 12:14:58 +00:00
|
|
|
)
|
|
|
|
|
2015-05-11 19:42:14 +00:00
|
|
|
func bindataRead(data, name string) ([]byte, error) {
|
2013-10-30 12:14:58 +00:00
|
|
|
var empty [0]byte
|
|
|
|
sx := (*reflect.StringHeader)(unsafe.Pointer(&data))
|
|
|
|
b := empty[:]
|
|
|
|
bx := (*reflect.SliceHeader)(unsafe.Pointer(&b))
|
|
|
|
bx.Data = sx.Data
|
|
|
|
bx.Len = len(data)
|
|
|
|
bx.Cap = bx.Len
|
2014-12-09 05:40:43 +00:00
|
|
|
return b, nil
|
2013-10-30 12:14:58 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 05:40:43 +00:00
|
|
|
type asset struct {
|
|
|
|
bytes []byte
|
|
|
|
info os.FileInfo
|
2013-10-30 12:14:58 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 05:40:43 +00:00
|
|
|
type bindata_file_info struct {
|
|
|
|
name string
|
|
|
|
size int64
|
|
|
|
mode os.FileMode
|
|
|
|
modTime time.Time
|
|
|
|
}
|
2013-10-30 12:14:58 +00:00
|
|
|
|
2014-12-09 05:40:43 +00:00
|
|
|
func (fi bindata_file_info) Name() string {
|
|
|
|
return fi.name
|
|
|
|
}
|
|
|
|
func (fi bindata_file_info) Size() int64 {
|
|
|
|
return fi.size
|
|
|
|
}
|
|
|
|
func (fi bindata_file_info) Mode() os.FileMode {
|
|
|
|
return fi.mode
|
|
|
|
}
|
|
|
|
func (fi bindata_file_info) ModTime() time.Time {
|
|
|
|
return fi.modTime
|
|
|
|
}
|
|
|
|
func (fi bindata_file_info) IsDir() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
func (fi bindata_file_info) Sys() interface{} {
|
|
|
|
return nil
|
2013-10-30 12:14:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var _in_a_test_asset = "\x2f\x2f\x20\x73\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x0a"
|
|
|
|
|
2014-12-09 05:40:43 +00:00
|
|
|
func in_a_test_asset_bytes() ([]byte, error) {
|
2015-05-11 19:42:14 +00:00
|
|
|
return bindataRead(
|
2013-10-30 12:14:58 +00:00
|
|
|
_in_a_test_asset,
|
|
|
|
"in/a/test.asset",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2014-12-09 05:40:43 +00:00
|
|
|
func in_a_test_asset() (*asset, error) {
|
|
|
|
bytes, err := in_a_test_asset_bytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-05-08 20:05:10 +00:00
|
|
|
info := bindata_file_info{name: "in/a/test.asset", size: 15, mode: os.FileMode(420), modTime: time.Unix(1430781941, 0)}
|
2014-12-09 05:40:43 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _in_b_test_asset = "\x2f\x2f\x20\x73\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x0a"
|
|
|
|
|
|
|
|
func in_b_test_asset_bytes() ([]byte, error) {
|
2015-05-11 19:42:14 +00:00
|
|
|
return bindataRead(
|
2014-12-09 05:40:43 +00:00
|
|
|
_in_b_test_asset,
|
|
|
|
"in/b/test.asset",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func in_b_test_asset() (*asset, error) {
|
|
|
|
bytes, err := in_b_test_asset_bytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-05-08 20:05:10 +00:00
|
|
|
info := bindata_file_info{name: "in/b/test.asset", size: 15, mode: os.FileMode(420), modTime: time.Unix(1430781941, 0)}
|
2014-12-09 05:40:43 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2013-10-30 12:14:58 +00:00
|
|
|
var _in_c_test_asset = "\x2f\x2f\x20\x73\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x0a"
|
|
|
|
|
2014-12-09 05:40:43 +00:00
|
|
|
func in_c_test_asset_bytes() ([]byte, error) {
|
2015-05-11 19:42:14 +00:00
|
|
|
return bindataRead(
|
2013-10-30 12:14:58 +00:00
|
|
|
_in_c_test_asset,
|
|
|
|
"in/c/test.asset",
|
|
|
|
)
|
|
|
|
}
|
2013-10-30 13:45:04 +00:00
|
|
|
|
2014-12-09 05:40:43 +00:00
|
|
|
func in_c_test_asset() (*asset, error) {
|
|
|
|
bytes, err := in_c_test_asset_bytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-05-08 20:05:10 +00:00
|
|
|
info := bindata_file_info{name: "in/c/test.asset", size: 15, mode: os.FileMode(420), modTime: time.Unix(1430781941, 0)}
|
2014-12-09 05:40:43 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _in_test_asset = "\x2f\x2f\x20\x73\x61\x6d\x70\x6c\x65\x20\x66\x69\x6c\x65\x0a"
|
|
|
|
|
|
|
|
func in_test_asset_bytes() ([]byte, error) {
|
2015-05-11 19:42:14 +00:00
|
|
|
return bindataRead(
|
2014-12-09 05:40:43 +00:00
|
|
|
_in_test_asset,
|
|
|
|
"in/test.asset",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
func in_test_asset() (*asset, error) {
|
|
|
|
bytes, err := in_test_asset_bytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-05-08 20:05:10 +00:00
|
|
|
info := bindata_file_info{name: "in/test.asset", size: 15, mode: os.FileMode(420), modTime: time.Unix(1430781941, 0)}
|
2014-12-09 05:40:43 +00:00
|
|
|
a := &asset{bytes: bytes, info: info}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2013-10-30 13:45:04 +00:00
|
|
|
// Asset loads and returns the asset for the given name.
|
2014-12-09 05:40:43 +00:00
|
|
|
// It returns an error if the asset could not be found or
|
|
|
|
// could not be loaded.
|
|
|
|
func Asset(name string) ([]byte, error) {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
if f, ok := _bindata[cannonicalName]; ok {
|
|
|
|
a, err := f()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err)
|
|
|
|
}
|
|
|
|
return a.bytes, nil
|
2013-10-30 13:45:04 +00:00
|
|
|
}
|
2014-12-09 05:40:43 +00:00
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
|
2015-05-08 20:05:10 +00:00
|
|
|
// MustAsset is like Asset but panics when Asset would return an error.
|
|
|
|
// It simplifies safe initialization of global variables.
|
|
|
|
func MustAsset(name string) []byte {
|
|
|
|
a, err := Asset(name)
|
|
|
|
if (err != nil) {
|
|
|
|
panic("asset: Asset(" + name + "): " + err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
2014-12-09 05:40:43 +00:00
|
|
|
// AssetInfo loads and returns the asset info for the given name.
|
|
|
|
// It returns an error if the asset could not be found or
|
|
|
|
// could not be loaded.
|
|
|
|
func AssetInfo(name string) (os.FileInfo, error) {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
if f, ok := _bindata[cannonicalName]; ok {
|
|
|
|
a, err := f()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err)
|
|
|
|
}
|
|
|
|
return a.info, nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("AssetInfo %s not found", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// AssetNames returns the names of the assets.
|
|
|
|
func AssetNames() []string {
|
|
|
|
names := make([]string, 0, len(_bindata))
|
|
|
|
for name := range _bindata {
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
return names
|
2013-10-30 13:45:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// _bindata is a table, holding each asset generator, mapped to its name.
|
2014-12-09 05:40:43 +00:00
|
|
|
var _bindata = map[string]func() (*asset, error){
|
2013-10-30 13:45:04 +00:00
|
|
|
"in/a/test.asset": in_a_test_asset,
|
2014-12-09 05:40:43 +00:00
|
|
|
"in/b/test.asset": in_b_test_asset,
|
2013-10-30 13:45:04 +00:00
|
|
|
"in/c/test.asset": in_c_test_asset,
|
2014-12-09 05:40:43 +00:00
|
|
|
"in/test.asset": in_test_asset,
|
|
|
|
}
|
|
|
|
|
|
|
|
// AssetDir returns the file names below a certain
|
|
|
|
// directory embedded in the file by go-bindata.
|
|
|
|
// For example if you run go-bindata on data/... and data contains the
|
|
|
|
// following hierarchy:
|
|
|
|
// data/
|
|
|
|
// foo.txt
|
|
|
|
// img/
|
|
|
|
// a.png
|
|
|
|
// b.png
|
|
|
|
// then AssetDir("data") would return []string{"foo.txt", "img"}
|
|
|
|
// AssetDir("data/img") would return []string{"a.png", "b.png"}
|
|
|
|
// AssetDir("foo.txt") and AssetDir("notexist") would return an error
|
|
|
|
// AssetDir("") will return []string{"data"}.
|
|
|
|
func AssetDir(name string) ([]string, error) {
|
|
|
|
node := _bintree
|
|
|
|
if len(name) != 0 {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
pathList := strings.Split(cannonicalName, "/")
|
|
|
|
for _, p := range pathList {
|
|
|
|
node = node.Children[p]
|
|
|
|
if node == nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if node.Func != nil {
|
|
|
|
return nil, fmt.Errorf("Asset %s not found", name)
|
|
|
|
}
|
|
|
|
rv := make([]string, 0, len(node.Children))
|
2015-05-11 13:48:50 +00:00
|
|
|
for childName := range node.Children {
|
|
|
|
rv = append(rv, childName)
|
2014-12-09 05:40:43 +00:00
|
|
|
}
|
|
|
|
return rv, nil
|
2013-10-30 13:45:04 +00:00
|
|
|
}
|
2014-12-09 05:40:43 +00:00
|
|
|
|
|
|
|
type _bintree_t struct {
|
|
|
|
Func func() (*asset, error)
|
|
|
|
Children map[string]*_bintree_t
|
|
|
|
}
|
|
|
|
var _bintree = &_bintree_t{nil, map[string]*_bintree_t{
|
|
|
|
"in": &_bintree_t{nil, map[string]*_bintree_t{
|
|
|
|
"a": &_bintree_t{nil, map[string]*_bintree_t{
|
|
|
|
"test.asset": &_bintree_t{in_a_test_asset, map[string]*_bintree_t{
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
"b": &_bintree_t{nil, map[string]*_bintree_t{
|
|
|
|
"test.asset": &_bintree_t{in_b_test_asset, map[string]*_bintree_t{
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
"c": &_bintree_t{nil, map[string]*_bintree_t{
|
|
|
|
"test.asset": &_bintree_t{in_c_test_asset, map[string]*_bintree_t{
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
"test.asset": &_bintree_t{in_test_asset, map[string]*_bintree_t{
|
|
|
|
}},
|
|
|
|
}},
|
|
|
|
}}
|
|
|
|
|
2015-05-11 19:44:41 +00:00
|
|
|
// RestoreAsset restores an asset under the given directory
|
2014-12-09 05:40:43 +00:00
|
|
|
func RestoreAsset(dir, name string) error {
|
|
|
|
data, err := Asset(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
info, err := AssetInfo(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = os.MkdirAll(_filePath(dir, path.Dir(name)), os.FileMode(0755))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-05-11 19:44:41 +00:00
|
|
|
// RestoreAssets restores an asset under the given directory recursively
|
2014-12-09 05:40:43 +00:00
|
|
|
func RestoreAssets(dir, name string) error {
|
|
|
|
children, err := AssetDir(name)
|
|
|
|
if err != nil { // File
|
|
|
|
return RestoreAsset(dir, name)
|
|
|
|
} else { // Dir
|
|
|
|
for _, child := range children {
|
|
|
|
err = RestoreAssets(dir, path.Join(name, child))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func _filePath(dir, name string) string {
|
|
|
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
|
|
|
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
|
|
|
}
|
|
|
|
|