mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
247c2586c2
* refactor: ast package * feat: read -> taskfile * refactor: taskfile.Taskfile -> taskfile.Read * refactor: move merge function back into taskfile package * refactor: rename taskfile.go to read.go
61 lines
1.1 KiB
Go
61 lines
1.1 KiB
Go
package fingerprint
|
|
|
|
import (
|
|
"os"
|
|
"sort"
|
|
|
|
"github.com/mattn/go-zglob"
|
|
|
|
"github.com/go-task/task/v3/internal/execext"
|
|
"github.com/go-task/task/v3/internal/filepathext"
|
|
"github.com/go-task/task/v3/taskfile/ast"
|
|
)
|
|
|
|
func Globs(dir string, globs []*ast.Glob) ([]string, error) {
|
|
fileMap := make(map[string]bool)
|
|
for _, g := range globs {
|
|
matches, err := Glob(dir, g.Glob)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
for _, match := range matches {
|
|
fileMap[match] = !g.Negate
|
|
}
|
|
}
|
|
files := make([]string, 0)
|
|
for file, includePath := range fileMap {
|
|
if includePath {
|
|
files = append(files, file)
|
|
}
|
|
}
|
|
sort.Strings(files)
|
|
return files, nil
|
|
}
|
|
|
|
func Glob(dir string, g string) ([]string, error) {
|
|
files := make([]string, 0)
|
|
g = filepathext.SmartJoin(dir, g)
|
|
|
|
g, err := execext.Expand(g)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
fs, err := zglob.GlobFollowSymlinks(g)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, f := range fs {
|
|
info, err := os.Stat(f)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if info.IsDir() {
|
|
continue
|
|
}
|
|
files = append(files, f)
|
|
}
|
|
return files, nil
|
|
}
|