1
2
3
4
5 package base
6
7 import (
8 "errors"
9 "io/fs"
10 "os"
11 "path/filepath"
12 "runtime"
13 "strings"
14 "sync"
15 )
16
17
18
19
20
21 func UncachedCwd() string {
22 wd, err := os.Getwd()
23 if err != nil {
24 Fatalf("cannot determine current directory: %v", err)
25 }
26 return wd
27 }
28
29 var cwdOnce = sync.OnceValue(UncachedCwd)
30
31
32 func Cwd() string {
33 return cwdOnce()
34 }
35
36
37
38 func ShortPath(path string) string {
39 if rel, err := filepath.Rel(Cwd(), path); err == nil && len(rel) < len(path) && sameFile(rel, path) {
40 return rel
41 }
42 return path
43 }
44
45 func sameFile(path1, path2 string) bool {
46 fi1, err1 := os.Stat(path1)
47 fi2, err2 := os.Stat(path2)
48 if err1 != nil || err2 != nil {
49
50
51 return os.IsNotExist(err1) && os.IsNotExist(err2)
52 }
53 return os.SameFile(fi1, fi2)
54 }
55
56
57 func ShortPathError(err error) error {
58 var pe *fs.PathError
59 if errors.As(err, &pe) {
60 pe.Path = ShortPath(pe.Path)
61 }
62 return err
63 }
64
65
66
67 func RelPaths(paths []string) []string {
68 out := make([]string, 0, len(paths))
69 for _, p := range paths {
70 out = append(out, ShortPath(p))
71 }
72 return out
73 }
74
75
76
77 func IsTestFile(file string) bool {
78
79 return strings.HasSuffix(file, "_test.go")
80 }
81
82
83
84 func IsNull(path string) bool {
85 if path == os.DevNull {
86 return true
87 }
88 if runtime.GOOS == "windows" {
89 if strings.EqualFold(path, "NUL") {
90 return true
91 }
92 }
93 return false
94 }
95
View as plain text