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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
package pkglint
import (
"netbsd.org/pkglint/textproc"
"strings"
)
func CheckdirCategory(dir CurrPath, recurse bool) {
if trace.Tracing {
defer trace.Call(dir)()
}
mklines := LoadMk(dir.JoinNoClean("Makefile").CleanDot(), nil, NotEmpty|LogErrors)
if mklines == nil {
return
}
mklines.Check()
mlex := NewMkLinesLexer(mklines)
for mlex.SkipPrefix("#") {
}
mlex.SkipEmptyOrNote()
if mlex.SkipIf(func(mkline *MkLine) bool { return mkline.IsVarassign() && mkline.Varname() == "COMMENT" }) {
mkline := mlex.PreviousMkLine()
valid := textproc.NewByteSet("- '(),/0-9A-Za-z")
invalid := invalidCharacters(mkline.Value(), valid)
if invalid != "" {
mkline.Warnf("%s contains invalid characters (%s).",
mkline.Varname(), invalid)
}
} else {
mlex.CurrentLine().Errorf("COMMENT= line expected.")
}
mlex.SkipEmptyOrNote()
type subdir struct {
name RelPath
line *MkLine
}
// And now to the most complicated part of the category Makefiles,
// the (hopefully) sorted list of SUBDIRs. The first step is to
// collect the SUBDIRs in the Makefile and in the file system.
var fSubdirs []RelPath
var mSubdirs []subdir
var recurseInto []CurrPath
for _, subdir := range getSubdirs(dir) {
if dir.JoinNoClean(subdir).JoinNoClean("Makefile").IsFile() {
fSubdirs = append(fSubdirs, subdir)
}
}
seen := make(map[RelPath]*MkLine)
seenLower := make(map[string]subdir)
for !mlex.EOF() {
mkline := mlex.CurrentMkLine()
if mkline.IsVarassignMaybeCommented() && mkline.Varname() == "SUBDIR" {
mlex.Skip()
value := NewPath(mkline.Value())
if value.IsAbs() {
mkline.Errorf("%q must be a relative path.", value.String())
continue
}
sub := NewRelPath(value)
if mkline.IsCommentedVarassign() && !mkline.HasComment() {
mkline.Warnf("%q commented out without giving a reason.", sub)
}
if prev := seen[sub]; prev != nil {
mkline.Errorf("%q must only appear once, already seen in %s.",
sub, mkline.RelMkLine(prev))
}
seen[sub] = mkline
lowerSub := strings.ToLower(sub.String())
if lower := seenLower[lowerSub]; lower.line != nil && lower.name != sub {
mkline.Errorf("On case-insensitive file systems, "+
"%q is the same as %q from %s.",
sub, lower.name, mkline.RelMkLine(lower.line))
} else {
seenLower[lowerSub] = subdir{sub, mkline}
}
if len(mSubdirs) > 0 {
if prev := mSubdirs[len(mSubdirs)-1].name; sub < prev {
mkline.Warnf("%q should come before %q.", sub, prev)
}
}
mSubdirs = append(mSubdirs, subdir{sub, mkline})
if recurse && !mkline.IsCommentedVarassign() {
recurseInto = append(recurseInto, dir.JoinNoClean(sub))
}
} else {
if !mkline.IsEmpty() {
mkline.Errorf("SUBDIR+= line or empty line expected.")
}
break
}
}
// To prevent unnecessary warnings about subdirectories that are
// in one list but not in the other, generate the sets of
// subdirs of each list.
fCheck := make(map[RelPath]bool)
mCheck := make(map[RelPath]bool)
for _, fsub := range fSubdirs {
fCheck[fsub] = true
}
for _, msub := range mSubdirs {
mCheck[msub.name] = true
}
fRest := fSubdirs[:]
mRest := mSubdirs[:]
for len(mRest) > 0 || len(fRest) > 0 {
if len(fRest) > 0 && (len(mRest) == 0 || fRest[0] < mRest[0].name) {
fCurrent := fRest[0]
if !mCheck[fCurrent] {
var line *Line
if len(mRest) > 0 {
line = mRest[0].line.Line
} else {
line = mlex.CurrentLine()
}
fix := line.Autofix()
fix.Errorf("Package %q must be listed here.", fCurrent)
fix.InsertAbove("SUBDIR+=\t" + fCurrent.String())
fix.Apply()
}
fRest = fRest[1:]
} else if len(fRest) == 0 || mRest[0].name < fRest[0] {
mName := mRest[0].name
if !fCheck[mName] &&
seenLower[strings.ToLower(mName.String())].name == mName {
fix := mRest[0].line.Autofix()
fix.Errorf("%q does not contain a package.", mName)
fix.Delete()
fix.Apply()
}
mRest = mRest[1:]
} else {
fRest = fRest[1:]
mRest = mRest[1:]
}
}
// the pkgsrc-wip category Makefile defines its own targets for
// generating indexes and READMEs. Just skip them.
if !G.Wip {
mlex.SkipEmptyOrNote()
mlex.SkipTextOrWarn(".include \"../mk/misc/category.mk\"")
if !mlex.EOF() {
mlex.CurrentLine().Errorf("The file must end here.")
}
}
mklines.SaveAutofixChanges()
G.Todo.PushFront(recurseInto...)
}
func CheckPackageDirCollision(dir CurrPath, pkgdir RelPath) {
mklines := LoadMk(dir.JoinNoClean("Makefile").CleanDot(), nil, 0)
if mklines == nil {
return
}
lowerPkgdir := strings.ToLower(pkgdir.String())
mklines.ForEach(func(mkline *MkLine) {
if mkline.IsVarassignMaybeCommented() && mkline.Varname() == "SUBDIR" {
value := NewPath(mkline.Value())
if value.IsAbs() {
return
}
sub := NewRelPath(value)
lowerSub := strings.ToLower(sub.String())
if lowerSub == lowerPkgdir && sub != pkgdir {
// TODO: Merge duplicate code from CheckdirCategory.
mkline.Errorf("On case-insensitive file systems, "+
"%q is the same as %q.",
sub, pkgdir)
}
}
})
}
|