databricks-cli/libs/fileset/glob.go

46 lines
834 B
Go
Raw Normal View History

2023-08-14 15:36:37 +00:00
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
}