Files
2026-07-13 13:00:08 +08:00

163 lines
4.7 KiB
Go

package fileref
import (
"io/fs"
"path/filepath"
"sort"
"strings"
)
var skipEntryNames = map[string]bool{
".codex": true,
".DS_Store": true,
".git": true,
".npm": true,
".pnpm-store": true,
"node_modules": true,
"Thumbs.db": true,
}
var skipDirNames = map[string]bool{
"build": true,
"dist": true,
}
var skipDirPaths = map[string]bool{
"bin": true,
"desktop/frontend/wailsjs": true,
"npm/.stage": true,
"site/.astro": true,
"stage": true,
"tmp": true,
}
const (
minQueryLen = 2
maxWalkEntries = 10000
)
// SearchResult is a single entry returned by Search. It carries the relative
// path (slash-normalized) and whether the entry is a directory, so callers
// can present the correct icon and append "/" vs " " on selection.
type SearchResult struct {
Path string
IsDir bool
}
// Search finds entries under root whose path matches query. A match is
// recorded when the query is a substring of the file's basename (preferred
// tier), of any slash-separated path segment (fallback tier), or of a
// directory name (lowest tier). It is bounded by limit and skips common
// generated/vendor directories so interactive completion stays responsive on
// large workspaces.
func Search(root, query string, limit int) []SearchResult {
query = strings.ToLower(strings.TrimSpace(query))
if len(query) < minQueryLen || strings.ContainsAny(query, `/\`) || limit <= 0 {
return nil
}
showHidden := strings.HasPrefix(query, ".")
var basenameHits []SearchResult
var segmentHits []SearchResult
var dirHits []SearchResult
visited := 0
_ = filepath.WalkDir(root, func(path string, d fs.DirEntry, err error) error {
if err != nil {
if d != nil && d.IsDir() {
return filepath.SkipDir
}
return nil
}
if path == root {
return nil
}
visited++
if visited > maxWalkEntries {
return filepath.SkipAll
}
name := d.Name()
if d.IsDir() {
rel, err := filepath.Rel(root, path)
if err != nil {
return filepath.SkipDir
}
rel = filepath.ToSlash(rel)
if skipEntryNames[name] || skipDirNames[name] || skipDirPaths[rel] || (!showHidden && strings.HasPrefix(name, ".")) {
return filepath.SkipDir
}
// Allow matching directory names so the user can select a
// folder directly from the @-menu instead of only its contents.
if strings.Contains(strings.ToLower(name), query) {
dirHits = append(dirHits, SearchResult{Path: rel, IsDir: true})
}
return nil
}
if skipEntryNames[name] {
return nil
}
if !showHidden && strings.HasPrefix(name, ".") {
return nil
}
if info, err := d.Info(); err != nil || !info.Mode().IsRegular() {
return nil
}
rel, err := filepath.Rel(root, path)
if err != nil {
return nil
}
rel = filepath.ToSlash(rel)
nameLower := strings.ToLower(name)
switch {
case strings.Contains(nameLower, query):
basenameHits = append(basenameHits, SearchResult{Path: rel})
case pathSegmentContains(rel, query):
segmentHits = append(segmentHits, SearchResult{Path: rel})
}
return nil
})
sort.Slice(basenameHits, func(i, j int) bool { return basenameHits[i].Path < basenameHits[j].Path })
sort.Slice(segmentHits, func(i, j int) bool { return segmentHits[i].Path < segmentHits[j].Path })
sort.Slice(dirHits, func(i, j int) bool { return dirHits[i].Path < dirHits[j].Path })
// Directories first so the user can navigate into them; then basename
// hits (most relevant file matches); then path-segment hits. We reserve
// up to dirQuota slots for directories so they are never fully crowded
// out by a large number of file matches.
const dirQuota = 5
out := make([]SearchResult, 0, limit)
nDirs := len(dirHits)
if nDirs > dirQuota {
nDirs = dirQuota
}
out = append(out, dirHits[:nDirs]...)
remaining := limit - len(out)
if remaining > 0 {
if len(basenameHits) > remaining {
basenameHits = basenameHits[:remaining]
}
out = append(out, basenameHits...)
remaining = limit - len(out)
}
if remaining > 0 {
if len(segmentHits) > remaining {
segmentHits = segmentHits[:remaining]
}
out = append(out, segmentHits...)
}
return out
}
// pathSegmentContains reports whether query appears in any slash-separated
// segment of the slash-normalized relative path. The basename is matched
// independently by the caller, so this helper is meaningful only for
// directories above the file (e.g. "src/planind/index.tsx" with query
// "planind" matches the "planind" segment).
func pathSegmentContains(relSlash, queryLower string) bool {
for _, seg := range strings.Split(relSlash, "/") {
if strings.Contains(strings.ToLower(seg), queryLower) {
return true
}
}
return false
}