blob: 9aa0be6f46418a7bc0b1c1ced0a080ebcab9fe98 [file] [log] [blame]
// Licensed to Apache Software Foundation (ASF) under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Apache Software Foundation (ASF) licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package repo
import (
"fmt"
"os"
"path/filepath"
"time"
"github.com/apache/skywalking-swck/operator/pkg/kubernetes"
)
var _ kubernetes.Repo = &AssetsRepo{}
// AssetsRepo provides templates through assets
type AssetsRepo struct {
Root string
}
func NewRepo(component string) *AssetsRepo {
return &AssetsRepo{Root: component}
}
// ReadFile reads the content of compiled in files at path and returns a buffer with the data.
func (a *AssetsRepo) ReadFile(path string) ([]byte, error) {
return Asset(path)
}
func (a *AssetsRepo) GetFilesRecursive(path string) ([]string, error) {
ap := fmt.Sprintf("%s/%s", a.Root, path)
rootFI, err := Stat(ap)
if err != nil {
return nil, err
}
return getFilesRecursive(filepath.Dir(ap), rootFI)
}
func getFilesRecursive(prefix string, root os.FileInfo) ([]string, error) {
if !root.IsDir() {
return nil, fmt.Errorf("not a dir: %s", root.Name())
}
prefix = filepath.Join(prefix, root.Name())
fs, _ := AssetDir(prefix)
out := make([]string, 0)
for _, f := range fs {
info, err := Stat(filepath.Join(prefix, f))
if err != nil {
return nil, err
}
if !info.IsDir() {
out = append(out, filepath.Join(prefix, filepath.Base(info.Name())))
continue
}
nfs, err := getFilesRecursive(prefix, info)
if err != nil {
return nil, err
}
out = append(out, nfs...)
}
return out, nil
}
// Stat returns a FileInfo object for the given path.
func Stat(path string) (os.FileInfo, error) {
info, err := AssetInfo(path)
if err != nil {
// try it as a directory instead
_, err = AssetDir(path)
if err == nil {
info = &dirInfo{name: filepath.Base(path)}
}
} else {
fi := info.(bindataFileInfo)
fi.name = filepath.Base(fi.name)
}
return info, err
}
type dirInfo struct {
name string
}
func (di dirInfo) Name() string {
return di.name
}
func (di dirInfo) Size() int64 {
return 0
}
func (di dirInfo) Mode() os.FileMode {
return os.FileMode(0)
}
func (di dirInfo) ModTime() time.Time {
return time.Unix(0, 0)
}
func (di dirInfo) IsDir() bool {
return true
}
func (di dirInfo) Sys() interface{} {
return nil
}