-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathfile-list.js
409 lines (344 loc) · 9.98 KB
/
file-list.js
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
// File List
// =========
//
// The List is an object for tracking all files that karma knows about
// currently.
// Dependencies
// ------------
var Promise = require('bluebird')
var mm = require('minimatch')
var Glob = require('glob').Glob
var fs = Promise.promisifyAll(require('graceful-fs'))
var pathLib = require('path')
var _ = require('lodash')
var File = require('./file')
var Url = require('./url')
var helper = require('./helper')
var log = require('./logger').create('watcher')
var createPatternObject = require('./config').createPatternObject
// Constants
// ---------
var GLOB_OPTS = {
cwd: '/',
follow: true,
nodir: true,
sync: true
}
// Helper Functions
// ----------------
function byPath (a, b) {
if (a.path > b.path) return 1
if (a.path < b.path) return -1
return 0
}
// Constructor
//
// patterns - Array
// excludes - Array
// emitter - EventEmitter
// preprocess - Function
// batchInterval - Number
var List = function (patterns, excludes, emitter, preprocess, autoWatchBatchDelay) {
// Store options
this._patterns = patterns
this._excludes = excludes
this._emitter = emitter
this._preprocess = Promise.promisify(preprocess)
this._autoWatchBatchDelay = autoWatchBatchDelay
// The actual list of files
this.buckets = new Map()
// Internal tracker if we are refreshing.
// When a refresh is triggered this gets set
// to the promise that `this._refresh` returns.
// So we know we are refreshing when this promise
// is still pending, and we are done when it's either
// resolved or rejected.
this._refreshing = Promise.resolve()
var self = this
// Emit the `file_list_modified` event.
// This function is debounced to the value of `autoWatchBatchDelay`
// to avoid reloading while files are still being modified.
function emit () {
self._emitter.emit('file_list_modified', self.files)
}
var debouncedEmit = _.debounce(emit, self._autoWatchBatchDelay)
self._emitModified = function (immediate) {
immediate ? emit() : debouncedEmit()
}
}
// Private Interface
// -----------------
// Is the given path matched by any exclusion filter
//
// path - String
//
// Returns `undefined` if no match, otherwise the matching
// pattern.
List.prototype._isExcluded = function (path) {
return _.find(this._excludes, function (pattern) {
return mm(path, pattern)
})
}
// Find the matching include pattern for the given path.
//
// path - String
//
// Returns the match or `undefined` if none found.
List.prototype._isIncluded = function (path) {
return _.find(this._patterns, function (pattern) {
return mm(path, pattern.pattern)
})
}
// Find the given path in the bucket corresponding
// to the given pattern.
//
// path - String
// pattern - Object
//
// Returns a File or undefined
List.prototype._findFile = function (path, pattern) {
if (!path || !pattern) return
if (!this.buckets.has(pattern.pattern)) return
return _.find(Array.from(this.buckets.get(pattern.pattern)), function (file) {
return file.originalPath === path
})
}
// Is the given path already in the files list.
//
// path - String
//
// Returns a boolean.
List.prototype._exists = function (path) {
var self = this
var patterns = this._patterns.filter(function (pattern) {
return mm(path, pattern.pattern)
})
return !!_.find(patterns, function (pattern) {
return self._findFile(path, pattern)
})
}
// Check if we are currently refreshing
List.prototype._isRefreshing = function () {
return this._refreshing.isPending()
}
// Do the actual work of refreshing
List.prototype._refresh = function () {
var self = this
var buckets = this.buckets
var matchedFiles = new Set()
var promise = Promise.map(this._patterns, function (patternObject) {
var pattern = patternObject.pattern
if (helper.isUrlAbsolute(pattern)) {
buckets.set(pattern, new Set([new Url(pattern)]))
return Promise.resolve()
}
var mg = new Glob(pathLib.normalize(pattern), GLOB_OPTS)
var files = mg.found
buckets.set(pattern, new Set())
if (_.isEmpty(files)) {
log.warn('Pattern "%s" does not match any file.', pattern)
return
}
return Promise.map(files, function (path) {
if (self._isExcluded(path)) {
log.debug('Excluded file "%s"', path)
return Promise.resolve()
}
if (matchedFiles.has(path)) {
return Promise.resolve()
}
matchedFiles.add(path)
var mtime = mg.statCache[path].mtime
var doNotCache = patternObject.nocache
var type = patternObject.type
var file = new File(path, mtime, doNotCache, type)
if (file.doNotCache) {
log.debug('Not preprocessing "%s" due to nocache')
return Promise.resolve(file)
}
return self._preprocess(file).then(function () {
return file
})
})
.then(function (files) {
files = _.compact(files)
if (_.isEmpty(files)) {
log.warn('All files matched by "%s" were excluded or matched by prior matchers.', pattern)
} else {
buckets.set(pattern, new Set(files))
}
})
})
.then(function () {
if (self._refreshing !== promise) {
return self._refreshing
}
self.buckets = buckets
self._emitModified(true)
return self.files
})
return promise
}
// Public Interface
// ----------------
Object.defineProperty(List.prototype, 'files', {
get: function () {
var self = this
var uniqueFlat = function (list) {
return _.uniq(_.flatten(list), 'path')
}
var expandPattern = function (p) {
return Array.from(self.buckets.get(p.pattern) || []).sort(byPath)
}
var served = this._patterns.filter(function (pattern) {
return pattern.served
})
.map(expandPattern)
var lookup = {}
var included = {}
this._patterns.forEach(function (p) {
// This needs to be here sadly, as plugins are modifiying
// the _patterns directly resulting in elements not being
// instantiated properly
if (p.constructor.name !== 'Pattern') {
p = createPatternObject(p)
}
var bucket = expandPattern(p)
bucket.forEach(function (file) {
var other = lookup[file.path]
if (other && other.compare(p) < 0) return
lookup[file.path] = p
if (p.included) {
included[file.path] = file
} else {
delete included[file.path]
}
})
})
return {
served: uniqueFlat(served),
included: _.values(included)
}
}
})
// Reglob all patterns to update the list.
//
// Returns a promise that is resolved when the refresh
// is completed.
List.prototype.refresh = function () {
this._refreshing = this._refresh()
return this._refreshing
}
// Set new patterns and excludes and update
// the list accordingly
//
// patterns - Array, the new patterns.
// excludes - Array, the new exclude patterns.
//
// Returns a promise that is resolved when the refresh
// is completed.
List.prototype.reload = function (patterns, excludes) {
this._patterns = patterns
this._excludes = excludes
// Wait until the current refresh is done and then do a
// refresh to ensure a refresh actually happens
return this.refresh()
}
// Add a new file from the list.
// This is called by the watcher
//
// path - String, the path of the file to update.
//
// Returns a promise that is resolved when the update
// is completed.
List.prototype.addFile = function (path) {
var self = this
// Ensure we are not adding a file that should be excluded
var excluded = this._isExcluded(path)
if (excluded) {
log.debug('Add file "%s" ignored. Excluded by "%s".', path, excluded)
return Promise.resolve(this.files)
}
var pattern = this._isIncluded(path)
if (!pattern) {
log.debug('Add file "%s" ignored. Does not match any pattern.', path)
return Promise.resolve(this.files)
}
if (this._exists(path)) {
log.debug('Add file "%s" ignored. Already in the list.', path)
return Promise.resolve(this.files)
}
var file = new File(path)
this.buckets.get(pattern.pattern).add(file)
return Promise.all([
fs.statAsync(path),
this._refreshing
]).spread(function (stat) {
file.mtime = stat.mtime
return self._preprocess(file)
})
.then(function () {
log.info('Added file "%s".', path)
self._emitModified()
return self.files
})
}
// Update the `mtime` of a file.
// This is called by the watcher
//
// path - String, the path of the file to update.
//
// Returns a promise that is resolved when the update
// is completed.
List.prototype.changeFile = function (path) {
var self = this
var pattern = this._isIncluded(path)
var file = this._findFile(path, pattern)
if (!pattern || !file) {
log.debug('Changed file "%s" ignored. Does not match any file in the list.', path)
return Promise.resolve(this.files)
}
return Promise.all([
fs.statAsync(path),
this._refreshing
]).spread(function (stat) {
if (stat.mtime <= file.mtime) throw new Promise.CancellationError()
file.mtime = stat.mtime
return self._preprocess(file)
})
.then(function () {
log.info('Changed file "%s".', path)
self._emitModified()
return self.files
})
.catch(Promise.CancellationError, function () {
return self.files
})
}
// Remove a file from the list.
// This is called by the watcher
//
// path - String, the path of the file to update.
//
// Returns a promise that is resolved when the update
// is completed.
List.prototype.removeFile = function (path) {
var self = this
return Promise.try(function () {
var pattern = self._isIncluded(path)
var file = self._findFile(path, pattern)
if (!pattern || !file) {
log.debug('Removed file "%s" ignored. Does not match any file in the list.', path)
return self.files
}
self.buckets.get(pattern.pattern).delete(file)
log.info('Removed file "%s".', path)
self._emitModified()
return self.files
})
}
// Inject dependencies
List.$inject = ['config.files', 'config.exclude', 'emitter', 'preprocess',
'config.autoWatchBatchDelay']
// PUBLIC
module.exports = List