mirror of https://github.com/databricks/cli.git
46 lines
834 B
Go
46 lines
834 B
Go
|
package fileset
|
||
|
|
||
|
import (
|
||
|
"io/fs"
|
||
|
"os"
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
type GlobSet struct {
|
||
|
root string
|
||
|
patterns []string
|
||
|
}
|
||
|
|
||
|
func NewGlobSet(root string, includes []string) *GlobSet {
|
||
|
return &GlobSet{root, includes}
|
||
|
}
|
||
|
|
||
|
// Return all tracked files for Repo
|
||
|
func (s *GlobSet) All() ([]File, error) {
|
||
|
files := make([]File, 0)
|
||
|
for _, pattern := range s.patterns {
|
||
|
matches, err := filepath.Glob(pattern)
|
||
|
if err != nil {
|
||
|
return files, err
|
||
|
}
|
||
|
|
||
|
for _, match := range matches {
|
||
|
if !filepath.IsAbs(match) {
|
||
|
match = filepath.Join(s.root, match)
|
||
|
}
|
||
|
matchRel, err := filepath.Rel(s.root, match)
|
||
|
if err != nil {
|
||
|
return files, err
|
||
|
}
|
||
|
|
||
|
stat, err := os.Stat(match)
|
||
|
if err != nil {
|
||
|
return files, err
|
||
|
}
|
||
|
files = append(files, File{fs.FileInfoToDirEntry(stat), match, matchRel})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return files, nil
|
||
|
}
|