blob: d62385020f145d35195fc1bb899031cc8e147063 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
package main
import (
"os"
"path"
)
func CheckDirent(fname string) {
if G.opts.DebugTrace {
defer tracecall1(fname)()
}
st, err := os.Lstat(fname)
if err != nil || !st.Mode().IsDir() && !st.Mode().IsRegular() {
Errorf(fname, noLines, "No such file or directory.")
return
}
isDir := st.Mode().IsDir()
isReg := st.Mode().IsRegular()
G.CurrentDir = ifelseStr(isReg, path.Dir(fname), fname)
absCurrentDir := abspath(G.CurrentDir)
G.Wip = !G.opts.Import && matches(absCurrentDir, `/wip/|/wip$`)
G.Infrastructure = matches(absCurrentDir, `/mk/|/mk$`)
G.CurPkgsrcdir = findPkgsrcTopdir(G.CurrentDir)
if G.CurPkgsrcdir == "" {
Errorf(fname, noLines, "Cannot determine the pkgsrc root directory for %q.", G.CurrentDir)
return
}
switch {
case isDir && isEmptyDir(fname):
return
case isReg:
Checkfile(fname)
return
}
switch G.CurPkgsrcdir {
case "../..":
checkdirPackage(relpath(G.globalData.Pkgsrcdir, G.CurrentDir))
case "..":
CheckdirCategory()
case ".":
CheckdirToplevel()
default:
Errorf(fname, noLines, "Cannot check directories outside a pkgsrc tree.")
}
}
|