-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
index.js
361 lines (287 loc) · 7.82 KB
/
index.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
'use strict';
var fs = require('fs');
var path = require('path');
var EventEmitter = require('events');
var fastq = require('fastq');
var anymatch = require('anymatch');
var Readable = require('streamx').Readable;
var isGlob = require('is-glob');
var globParent = require('glob-parent');
var normalizePath = require('normalize-path');
var isNegatedGlob = require('is-negated-glob');
var toAbsoluteGlob = require('@gulpjs/to-absolute-glob');
var globErrMessage1 = 'File not found with singular glob: ';
var globErrMessage2 = ' (if this was purposeful, use `allowEmpty` option)';
function isFound(glob) {
// All globs are "found", while singular globs are only found when matched successfully
// This is due to the fact that a glob can match any number of files (0..Infinity) but
// a signular glob is always expected to match
return isGlob(glob);
}
function walkdir() {
var readdirOpts = {
withFileTypes: true,
};
var ee = new EventEmitter();
var queue = fastq(onAction, 1);
queue.drain = function () {
ee.emit('end');
};
queue.error(onError);
function onError(err) {
if (err) {
ee.emit('error', err);
}
}
ee.pause = function () {
queue.pause();
};
ee.resume = function () {
queue.resume();
};
ee.end = function () {
queue.kill();
};
ee.walk = walk;
ee.exists = exists;
ee.resolve = resolve;
function walk(path) {
queue.push({ action: 'walk', path: path });
}
function exists(path) {
queue.push({ action: 'exists', path: path });
}
function resolve(path) {
queue.push({ action: 'resolve', path: path });
}
function resolveSymlink(symlinkPath, cb) {
fs.realpath(symlinkPath, function (err, realpath) {
if (err) {
return cb(err);
}
fs.lstat(realpath, function (err, stat) {
if (err) {
return cb(err);
}
if (stat.isDirectory() && !symlinkPath.startsWith(realpath + path.sep)) {
walk(symlinkPath);
}
cb();
})
});
}
function onAction(data, cb) {
if (data.action === 'walk') {
return fs.readdir(data.path, readdirOpts, onReaddir);
}
if (data.action === 'exists') {
return fs.stat(data.path, onStat);
}
if (data.action === 'resolve') {
return resolveSymlink(data.path, cb);
}
function onStat(err, stat) {
if (err) {
// Ignore errors but also don't emit the path
return cb();
}
// `stat` has `isDirectory()` which is what we use from Dirent
ee.emit('path', data.path, stat);
cb();
}
function onReaddir(err, dirents) {
if (err) {
return cb(err);
}
dirents.forEach(processDirent);
cb();
}
function processDirent(dirent) {
var nextpath = path.join(data.path, dirent.name);
ee.emit('path', nextpath, dirent);
if (dirent.isDirectory()) {
return walk(nextpath);
}
if (dirent.isSymbolicLink()) {
return resolve(nextpath);
}
}
}
return ee;
}
function validateGlobs(globs) {
var hasPositiveGlob = false;
globs.forEach(validateGlobs);
function validateGlobs(globString, index) {
if (typeof globString !== 'string') {
throw new Error('Invalid glob at index ' + index);
}
var result = isNegatedGlob(globString);
if (result.negated === false) {
hasPositiveGlob = true;
}
}
if (hasPositiveGlob === false) {
throw new Error('Missing positive glob');
}
}
function isPositiveGlob(glob) {
return !isNegatedGlob(glob).negated;
}
function validateOptions(opts) {
if (typeof opts.cwd !== 'string') {
throw new Error('The `cwd` option must be a string');
}
if (typeof opts.dot !== 'boolean') {
throw new Error('The `dot` option must be a boolean');
}
if (typeof opts.cwdbase !== 'boolean') {
throw new Error('The `cwdbase` option must be a boolean');
}
if (
typeof opts.uniqueBy !== 'string' &&
typeof opts.uniqueBy !== 'function'
) {
throw new Error('The `uniqueBy` option must be a string or function');
}
if (typeof opts.allowEmpty !== 'boolean') {
throw new Error('The `allowEmpty` option must be a boolean');
}
if (opts.base && typeof opts.base !== 'string') {
throw new Error('The `base` option must be a string if specified');
}
if (!Array.isArray(opts.ignore)) {
throw new Error('The `ignore` option must be a string or array');
}
}
function uniqueBy(comparator) {
var seen = new Set();
if (typeof comparator === 'string') {
return isUniqueByKey;
} else {
return isUniqueByFunc;
}
function isUnique(value) {
if (seen.has(value)) {
return false;
} else {
seen.add(value);
return true;
}
}
function isUniqueByKey(obj) {
return isUnique(obj[comparator]);
}
function isUniqueByFunc(obj) {
return isUnique(comparator(obj));
}
}
function globStream(globs, opt) {
if (!Array.isArray(globs)) {
globs = [globs];
}
validateGlobs(globs);
var ourOpt = Object.assign(
{},
{
cwd: process.cwd(),
dot: false,
cwdbase: false,
uniqueBy: 'path',
allowEmpty: false,
ignore: [],
},
opt
);
// Normalize `ignore` to array
ourOpt.ignore =
typeof ourOpt.ignore === 'string' ? [ourOpt.ignore] : ourOpt.ignore;
validateOptions(ourOpt);
ourOpt.cwd = normalizePath(path.resolve(ourOpt.cwd), true);
var base = ourOpt.base;
if (ourOpt.cwdbase) {
base = ourOpt.cwd;
}
var walker = walkdir();
var stream = new Readable({
highWaterMark: ourOpt.highWaterMark,
read: read,
predestroy: predestroy,
});
// Remove path relativity to make globs make sense
var ourGlobs = globs.map(resolveGlob);
ourOpt.ignore = ourOpt.ignore.map(resolveGlob);
var found = ourGlobs.map(isFound);
var matcher = anymatch(ourGlobs, null, ourOpt);
var isUnique = uniqueBy(ourOpt.uniqueBy);
walker.on('path', onPath);
walker.once('end', onEnd);
walker.once('error', onError);
ourGlobs.forEach(function (glob) {
if (isGlob(glob)) {
// We only want to walk the glob-parent directories of any positive glob
// to reduce the amount of files have to check.
if (isPositiveGlob(glob)) {
var base = globParent(glob);
walker.walk(base);
}
} else {
// If the strig is not a glob, we just check for the existence of it.
walker.exists(glob);
}
});
function read(cb) {
walker.resume();
cb();
}
function predestroy() {
walker.end();
}
function resolveGlob(glob) {
return toAbsoluteGlob(glob, ourOpt);
}
function onPath(filepath, dirent) {
var matchIdx = matcher(filepath, true);
// If the matcher doesn't match (but it is a directory),
// we want to add a trailing separator to check the match again
if (matchIdx === -1 && dirent.isDirectory()) {
matchIdx = matcher(filepath + path.sep, true);
}
if (matchIdx !== -1) {
found[matchIdx] = true;
// Extract base path from glob
var basePath = base || globParent(ourGlobs[matchIdx]);
var obj = {
cwd: ourOpt.cwd,
base: basePath,
// We always want to normalize the path to posix-style slashes
path: normalizePath(filepath, true),
};
var unique = isUnique(obj);
if (unique) {
var drained = stream.push(obj);
if (!drained) {
walker.pause();
}
}
}
}
function onEnd() {
var destroyed = false;
found.forEach(function (matchFound, idx) {
if (ourOpt.allowEmpty !== true && !matchFound) {
destroyed = true;
var err = new Error(globErrMessage1 + ourGlobs[idx] + globErrMessage2);
return stream.destroy(err);
}
});
if (destroyed === false) {
stream.push(null);
}
}
function onError(err) {
stream.destroy(err);
}
return stream;
}
module.exports = globStream;