bindata/testdata/out/debug.go

264 lines
6.8 KiB
Go
Raw Normal View History

// Code generated by go-bindata.
// sources:
// in/a/test.asset
// in/b/test.asset
// in/c/test.asset
// in/test.asset
// DO NOT EDIT!
2015-05-28 14:30:35 +00:00
package main
import (
2014-12-09 05:40:43 +00:00
"fmt"
"io/ioutil"
"os"
2014-12-09 05:40:43 +00:00
"path/filepath"
"strings"
)
2015-05-11 19:42:14 +00:00
// bindataRead reads the given file from disk. It returns an error on failure.
func bindataRead(path, name string) ([]byte, error) {
2014-12-09 05:40:43 +00:00
buf, err := ioutil.ReadFile(path)
if err != nil {
2014-12-09 05:40:43 +00:00
err = fmt.Errorf("Error reading asset %s at %s: %v", name, path, err)
}
2014-12-09 05:40:43 +00:00
return buf, err
}
2014-12-09 05:40:43 +00:00
type asset struct {
bytes []byte
info os.FileInfo
}
2015-05-12 01:44:07 +00:00
// inATestAsset reads file data from disk. It returns an error on failure.
func inATestAsset() (*asset, error) {
2018-10-05 15:30:57 +00:00
path := "/home/ts/code/go/src/git.kirsle.net/go/bindata/testdata/in/a/test.asset"
2014-12-09 05:40:43 +00:00
name := "in/a/test.asset"
2015-05-11 19:42:14 +00:00
bytes, err := bindataRead(path, name)
if err != nil {
2014-12-09 05:40:43 +00:00
return nil, err
}
2014-12-09 05:40:43 +00:00
fi, err := os.Stat(path)
if err != nil {
err = fmt.Errorf("Error reading asset info %s at %s: %v", name, path, err)
}
2014-12-09 05:40:43 +00:00
a := &asset{bytes: bytes, info: fi}
return a, err
}
2015-05-12 01:44:07 +00:00
// inBTestAsset reads file data from disk. It returns an error on failure.
func inBTestAsset() (*asset, error) {
2018-10-05 15:30:57 +00:00
path := "/home/ts/code/go/src/git.kirsle.net/go/bindata/testdata/in/b/test.asset"
2014-12-09 05:40:43 +00:00
name := "in/b/test.asset"
2015-05-11 19:42:14 +00:00
bytes, err := bindataRead(path, name)
2014-12-09 05:40:43 +00:00
if err != nil {
return nil, err
}
fi, err := os.Stat(path)
if err != nil {
err = fmt.Errorf("Error reading asset info %s at %s: %v", name, path, err)
}
a := &asset{bytes: bytes, info: fi}
return a, err
}
2015-05-12 01:44:07 +00:00
// inCTestAsset reads file data from disk. It returns an error on failure.
func inCTestAsset() (*asset, error) {
2018-10-05 15:30:57 +00:00
path := "/home/ts/code/go/src/git.kirsle.net/go/bindata/testdata/in/c/test.asset"
2014-12-09 05:40:43 +00:00
name := "in/c/test.asset"
2015-05-11 19:42:14 +00:00
bytes, err := bindataRead(path, name)
2014-12-09 05:40:43 +00:00
if err != nil {
return nil, err
}
fi, err := os.Stat(path)
if err != nil {
err = fmt.Errorf("Error reading asset info %s at %s: %v", name, path, err)
}
a := &asset{bytes: bytes, info: fi}
return a, err
}
2015-05-12 01:44:07 +00:00
// inTestAsset reads file data from disk. It returns an error on failure.
func inTestAsset() (*asset, error) {
2018-10-05 15:30:57 +00:00
path := "/home/ts/code/go/src/git.kirsle.net/go/bindata/testdata/in/test.asset"
2014-12-09 05:40:43 +00:00
name := "in/test.asset"
2015-05-11 19:42:14 +00:00
bytes, err := bindataRead(path, name)
2014-12-09 05:40:43 +00:00
if err != nil {
return nil, err
}
fi, err := os.Stat(path)
if err != nil {
err = fmt.Errorf("Error reading asset info %s at %s: %v", name, path, err)
}
a := &asset{bytes: bytes, info: fi}
return a, err
}
// 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
}
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 {
2015-05-08 20:05:10 +00:00
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
}
// _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){
2015-05-12 01:44:07 +00:00
"in/a/test.asset": inATestAsset,
"in/b/test.asset": inBTestAsset,
"in/c/test.asset": inCTestAsset,
"in/test.asset": inTestAsset,
2014-12-09 05:40:43 +00:00
}
// 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
}
2015-05-11 19:46:01 +00:00
type bintree struct {
Func func() (*asset, error)
2015-05-11 19:46:01 +00:00
Children map[string]*bintree
2014-12-09 05:40:43 +00:00
}
2015-05-11 19:46:01 +00:00
var _bintree = &bintree{nil, map[string]*bintree{
"in": &bintree{nil, map[string]*bintree{
"a": &bintree{nil, map[string]*bintree{
"test.asset": &bintree{inATestAsset, map[string]*bintree{}},
2014-12-09 05:40:43 +00:00
}},
2015-05-11 19:46:01 +00:00
"b": &bintree{nil, map[string]*bintree{
"test.asset": &bintree{inBTestAsset, map[string]*bintree{}},
2014-12-09 05:40:43 +00:00
}},
2015-05-11 19:46:01 +00:00
"c": &bintree{nil, map[string]*bintree{
"test.asset": &bintree{inCTestAsset, map[string]*bintree{}},
2014-12-09 05:40:43 +00:00
}},
"test.asset": &bintree{inTestAsset, map[string]*bintree{}},
2014-12-09 05:40:43 +00:00
}},
}}
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, filepath.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
}
2014-12-09 05:40:43 +00:00
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)
// File
if err != nil {
return RestoreAsset(dir, name)
}
// Dir
for _, child := range children {
err = RestoreAssets(dir, filepath.Join(name, child))
if err != nil {
return err
}
}
return nil
2014-12-09 05:40:43 +00:00
}
func _filePath(dir, name string) string {
cannonicalName := strings.Replace(name, "\\", "/", -1)
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
2014-12-09 05:40:43 +00:00
}