-
-
Notifications
You must be signed in to change notification settings - Fork 482
/
Copy pathprocessor.ts
314 lines (293 loc) · 9.24 KB
/
processor.ts
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
// synchronous utility for filtering entries and calculating subwalks
import { GLOBSTAR, MMRegExp } from 'minimatch'
import { Path } from 'path-scurry'
import { MMPattern, Pattern } from './pattern.js'
import { GlobWalkerOpts } from './walker.js'
/**
* A cache of which patterns have been processed for a given Path
*/
export class HasWalkedCache {
store: Map<string, Set<string>>
constructor(store: Map<string, Set<string>> = new Map()) {
this.store = store
}
copy() {
return new HasWalkedCache(new Map(this.store))
}
hasWalked(target: Path, pattern: Pattern) {
return this.store.get(target.fullpath())?.has(pattern.globString())
}
storeWalked(target: Path, pattern: Pattern) {
const fullpath = target.fullpath()
const cached = this.store.get(fullpath)
if (cached) cached.add(pattern.globString())
else this.store.set(fullpath, new Set([pattern.globString()]))
}
}
/**
* A record of which paths have been matched in a given walk step,
* and whether they only are considered a match if they are a directory,
* and whether their absolute or relative path should be returned.
*/
export class MatchRecord {
store: Map<Path, number> = new Map()
add(target: Path, absolute: boolean, ifDir: boolean) {
const n = (absolute ? 2 : 0) | (ifDir ? 1 : 0)
const current = this.store.get(target)
this.store.set(target, current === undefined ? n : n & current)
}
// match, absolute, ifdir
entries(): [Path, boolean, boolean][] {
return [...this.store.entries()].map(([path, n]) => [
path,
!!(n & 2),
!!(n & 1),
])
}
}
/**
* A collection of patterns that must be processed in a subsequent step
* for a given path.
*/
export class SubWalks {
store: Map<Path, Pattern[]> = new Map()
add(target: Path, pattern: Pattern) {
if (!target.canReaddir()) {
return
}
const subs = this.store.get(target)
if (subs) {
if (!subs.find(p => p.globString() === pattern.globString())) {
subs.push(pattern)
}
} else this.store.set(target, [pattern])
}
get(target: Path): Pattern[] {
const subs = this.store.get(target)
/* c8 ignore start */
if (!subs) {
throw new Error('attempting to walk unknown path')
}
/* c8 ignore stop */
return subs
}
entries(): [Path, Pattern[]][] {
return this.keys().map(k => [k, this.store.get(k) as Pattern[]])
}
keys(): Path[] {
return [...this.store.keys()].filter(t => t.canReaddir())
}
}
/**
* The class that processes patterns for a given path.
*
* Handles child entry filtering, and determining whether a path's
* directory contents must be read.
*/
export class Processor {
hasWalkedCache: HasWalkedCache
matches = new MatchRecord()
subwalks = new SubWalks()
patterns?: Pattern[]
follow: boolean
dot: boolean
opts: GlobWalkerOpts
constructor(opts: GlobWalkerOpts, hasWalkedCache?: HasWalkedCache) {
this.opts = opts
this.follow = !!opts.follow
this.dot = !!opts.dot
this.hasWalkedCache =
hasWalkedCache ? hasWalkedCache.copy() : new HasWalkedCache()
}
processPatterns(target: Path, patterns: Pattern[]) {
this.patterns = patterns
const processingSet: [Path, Pattern][] = patterns.map(p => [target, p])
// map of paths to the magic-starting subwalks they need to walk
// first item in patterns is the filter
for (let [t, pattern] of processingSet) {
this.hasWalkedCache.storeWalked(t, pattern)
const root = pattern.root()
const absolute = pattern.isAbsolute() && this.opts.absolute !== false
// start absolute patterns at root
if (root) {
t = t.resolve(
root === '/' && this.opts.root !== undefined ?
this.opts.root
: root,
)
const rest = pattern.rest()
if (!rest) {
this.matches.add(t, true, false)
continue
} else {
pattern = rest
}
}
if (t.isENOENT()) continue
let p: MMPattern
let rest: Pattern | null
let changed = false
while (
typeof (p = pattern.pattern()) === 'string' &&
(rest = pattern.rest())
) {
const c = t.resolve(p)
t = c
pattern = rest
changed = true
}
p = pattern.pattern()
rest = pattern.rest()
if (changed) {
if (this.hasWalkedCache.hasWalked(t, pattern)) continue
this.hasWalkedCache.storeWalked(t, pattern)
}
// now we have either a final string for a known entry,
// more strings for an unknown entry,
// or a pattern starting with magic, mounted on t.
if (typeof p === 'string') {
// must not be final entry, otherwise we would have
// concatenated it earlier.
const ifDir = p === '..' || p === '' || p === '.'
this.matches.add(t.resolve(p), absolute, ifDir)
continue
} else if (p === GLOBSTAR) {
// if no rest, match and subwalk pattern
// if rest, process rest and subwalk pattern
// if it's a symlink, but we didn't get here by way of a
// globstar match (meaning it's the first time THIS globstar
// has traversed a symlink), then we follow it. Otherwise, stop.
if (
!t.isSymbolicLink() ||
this.follow ||
pattern.checkFollowGlobstar()
) {
this.subwalks.add(t, pattern)
}
const rp = rest?.pattern()
const rrest = rest?.rest()
if (!rest || ((rp === '' || rp === '.') && !rrest)) {
// only HAS to be a dir if it ends in **/ or **/.
// but ending in ** will match files as well.
this.matches.add(t, absolute, rp === '' || rp === '.')
} else {
if (rp === '..') {
// this would mean you're matching **/.. at the fs root,
// and no thanks, I'm not gonna test that specific case.
/* c8 ignore start */
const tp = t.parent || t
/* c8 ignore stop */
if (!rrest) this.matches.add(tp, absolute, true)
else if (!this.hasWalkedCache.hasWalked(tp, rrest)) {
this.subwalks.add(tp, rrest)
}
}
}
} else if (p instanceof RegExp) {
this.subwalks.add(t, pattern)
}
}
return this
}
subwalkTargets(): Path[] {
return this.subwalks.keys()
}
child() {
return new Processor(this.opts, this.hasWalkedCache)
}
// return a new Processor containing the subwalks for each
// child entry, and a set of matches, and
// a hasWalkedCache that's a copy of this one
// then we're going to call
filterEntries(parent: Path, entries: Path[]): Processor {
const patterns = this.subwalks.get(parent)
// put matches and entry walks into the results processor
const results = this.child()
for (const e of entries) {
for (const pattern of patterns) {
const absolute = pattern.isAbsolute()
const p = pattern.pattern()
const rest = pattern.rest()
if (p === GLOBSTAR) {
results.testGlobstar(e, pattern, rest, absolute)
} else if (p instanceof RegExp) {
results.testRegExp(e, p, rest, absolute)
} else {
results.testString(e, p, rest, absolute)
}
}
}
return results
}
testGlobstar(
e: Path,
pattern: Pattern,
rest: Pattern | null,
absolute: boolean,
) {
if (this.dot || !e.name.startsWith('.')) {
if (!pattern.hasMore()) {
this.matches.add(e, absolute, false)
}
if (e.canReaddir()) {
// if we're in follow mode or it's not a symlink, just keep
// testing the same pattern. If there's more after the globstar,
// then this symlink consumes the globstar. If not, then we can
// follow at most ONE symlink along the way, so we mark it, which
// also checks to ensure that it wasn't already marked.
if (this.follow || !e.isSymbolicLink()) {
this.subwalks.add(e, pattern)
} else if (e.isSymbolicLink()) {
if (rest && pattern.checkFollowGlobstar()) {
this.subwalks.add(e, rest)
} else if (pattern.markFollowGlobstar()) {
this.subwalks.add(e, pattern)
}
}
}
}
// if the NEXT thing matches this entry, then also add
// the rest.
if (rest) {
const rp = rest.pattern()
if (
typeof rp === 'string' &&
// dots and empty were handled already
rp !== '..' &&
rp !== '' &&
rp !== '.'
) {
this.testString(e, rp, rest.rest(), absolute)
} else if (rp === '..') {
/* c8 ignore start */
const ep = e.parent || e
/* c8 ignore stop */
this.subwalks.add(ep, rest)
} else if (rp instanceof RegExp) {
this.testRegExp(e, rp, rest.rest(), absolute)
}
}
}
testRegExp(
e: Path,
p: MMRegExp,
rest: Pattern | null,
absolute: boolean,
) {
if (!p.test(e.name)) return
if (!rest) {
this.matches.add(e, absolute, false)
} else {
this.subwalks.add(e, rest)
}
}
testString(e: Path, p: string, rest: Pattern | null, absolute: boolean) {
// should never happen?
if (!e.isNamed(p)) return
if (!rest) {
this.matches.add(e, absolute, false)
} else {
this.subwalks.add(e, rest)
}
}
}