2024-06-18 18:21:03 -04:00
|
|
|
// Package files finds and displays files on disk
|
|
|
|
package files
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/fs"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"git.burning.moe/celediel/gt/internal/filter"
|
|
|
|
"github.com/charmbracelet/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
type File struct {
|
|
|
|
name, path string
|
|
|
|
filesize int64
|
|
|
|
modified time.Time
|
2024-06-18 21:08:52 -04:00
|
|
|
isdir bool
|
2024-06-18 18:21:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Files []File
|
|
|
|
|
|
|
|
func (f File) Name() string { return f.name }
|
|
|
|
func (f File) Path() string { return f.path }
|
2024-06-18 20:01:38 -04:00
|
|
|
func (f File) Filename() string { return filepath.Join(f.path, f.name) }
|
2024-06-18 18:21:03 -04:00
|
|
|
func (f File) Modified() time.Time { return f.modified }
|
|
|
|
func (f File) Filesize() int64 { return f.filesize }
|
2024-06-18 21:08:52 -04:00
|
|
|
func (f File) IsDir() bool { return f.isdir }
|
2024-06-18 18:21:03 -04:00
|
|
|
|
|
|
|
func Find(dir string, recursive bool, f *filter.Filter) (files Files, err error) {
|
|
|
|
if dir == "." || dir == "" {
|
|
|
|
var d string
|
|
|
|
if d, err = os.Getwd(); err != nil {
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
dir = d
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-18 20:02:06 -04:00
|
|
|
var recursively string
|
|
|
|
if recursive {
|
|
|
|
recursively = " recursively"
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debugf("gonna find files%s in %s matching %s", recursively, dir, f)
|
2024-06-18 18:21:03 -04:00
|
|
|
|
|
|
|
if recursive {
|
|
|
|
files = append(files, walk_dir(dir, f)...)
|
|
|
|
} else {
|
|
|
|
files = append(files, read_dir(dir, f)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func walk_dir(dir string, f *filter.Filter) (files Files) {
|
|
|
|
err := filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error {
|
|
|
|
p, e := filepath.Abs(path)
|
|
|
|
if e != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-06-18 20:02:06 -04:00
|
|
|
name := d.Name()
|
2024-06-18 18:21:03 -04:00
|
|
|
info, _ := d.Info()
|
2024-06-19 22:13:10 -04:00
|
|
|
if f.Match(name, info.ModTime(), info.IsDir()) {
|
2024-06-18 20:02:06 -04:00
|
|
|
log.Debugf("found matching file: %s %s", name, info.ModTime())
|
2024-06-18 18:21:03 -04:00
|
|
|
i, _ := os.Stat(p)
|
2024-06-18 20:02:06 -04:00
|
|
|
files = append(files, File{
|
|
|
|
path: filepath.Dir(p),
|
|
|
|
name: name,
|
|
|
|
filesize: i.Size(),
|
|
|
|
modified: i.ModTime(),
|
2024-06-18 21:08:52 -04:00
|
|
|
isdir: i.IsDir(),
|
2024-06-18 20:02:06 -04:00
|
|
|
})
|
2024-06-18 18:21:03 -04:00
|
|
|
} else {
|
2024-06-18 20:02:06 -04:00
|
|
|
log.Debugf("ignoring file %s (%s)", name, info.ModTime())
|
2024-06-18 18:21:03 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return []File{}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func read_dir(dir string, f *filter.Filter) (files Files) {
|
|
|
|
fs, err := os.ReadDir(dir)
|
|
|
|
if err != nil {
|
|
|
|
return []File{}
|
|
|
|
}
|
|
|
|
for _, file := range fs {
|
|
|
|
name := file.Name()
|
|
|
|
|
|
|
|
if name == dir {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
info, err := file.Info()
|
|
|
|
if err != nil {
|
|
|
|
return []File{}
|
|
|
|
}
|
|
|
|
|
|
|
|
path := filepath.Dir(filepath.Join(dir, name))
|
|
|
|
|
2024-06-19 22:13:10 -04:00
|
|
|
if f.Match(name, info.ModTime(), info.IsDir()) {
|
2024-06-18 20:02:06 -04:00
|
|
|
log.Debugf("found matching file: %s %s", name, info.ModTime())
|
2024-06-18 18:21:03 -04:00
|
|
|
files = append(files, File{
|
|
|
|
name: name,
|
|
|
|
path: path,
|
|
|
|
modified: info.ModTime(),
|
|
|
|
filesize: info.Size(),
|
2024-06-18 21:08:52 -04:00
|
|
|
isdir: info.IsDir(),
|
2024-06-18 18:21:03 -04:00
|
|
|
})
|
|
|
|
} else {
|
2024-06-18 20:02:06 -04:00
|
|
|
log.Debugf("ignoring file %s (%s)", name, info.ModTime())
|
2024-06-18 18:21:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func SortByModified(a, b File) int {
|
|
|
|
if a.modified.After(b.modified) {
|
|
|
|
return 1
|
|
|
|
} else if a.modified.Before(b.modified) {
|
|
|
|
return -1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func SortByModifiedReverse(a, b File) int {
|
|
|
|
if a.modified.Before(b.modified) {
|
|
|
|
return 1
|
|
|
|
} else if a.modified.After(b.modified) {
|
|
|
|
return -1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func SortBySize(a, b File) int {
|
|
|
|
if a.filesize > b.filesize {
|
|
|
|
return 1
|
|
|
|
} else if a.filesize < b.filesize {
|
|
|
|
return -1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func SortBySizeReverse(a, b File) int {
|
|
|
|
if a.filesize < b.filesize {
|
|
|
|
return 1
|
|
|
|
} else if a.filesize > b.filesize {
|
|
|
|
return -1
|
|
|
|
} else {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|