Skip to content

Commit 1852fc5

Browse files
authoredJan 17, 2022
Fix bug with objectMode option (#210)
1 parent 2c9cc27 commit 1852fc5

File tree

3 files changed

+51
-13
lines changed

3 files changed

+51
-13
lines changed
 

‎index.js

+24-10
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,24 @@ const checkCwdOption = options => {
3535
};
3636

3737
const getPathString = fastGlobResult => fastGlobResult.path || fastGlobResult;
38+
const unionFastGlobResults = (results, filter) => {
39+
const seen = new Set();
40+
41+
return results.flat().filter(fastGlobResult => {
42+
if (filter(fastGlobResult)) {
43+
return false;
44+
}
45+
46+
const value = getPathString(fastGlobResult);
47+
if (seen.has(value)) {
48+
return false;
49+
}
50+
51+
seen.add(value);
52+
53+
return true;
54+
});
55+
};
3856

3957
export const generateGlobTasks = (patterns, taskOptions) => {
4058
patterns = arrayUnion([patterns].flat());
@@ -150,9 +168,9 @@ export const globby = async (patterns, options = {}) => {
150168
};
151169

152170
const [filter, tasks] = await Promise.all([getFilter(options), getTasks()]);
153-
const paths = await Promise.all(tasks.map(task => fastGlob(task.pattern, task.options)));
171+
const results = await Promise.all(tasks.map(task => fastGlob(task.pattern, task.options)));
154172

155-
return arrayUnion(...paths).filter(path_ => !filter(path_));
173+
return unionFastGlobResults(results, filter);
156174
};
157175

158176
export const globbySync = (patterns, options = {}) => {
@@ -165,13 +183,9 @@ export const globbySync = (patterns, options = {}) => {
165183
}
166184

167185
const filter = getFilterSync(options);
186+
const results = tasks.map(task => fastGlob.sync(task.pattern, task.options));
168187

169-
let matches = [];
170-
for (const task of tasks) {
171-
matches = arrayUnion(matches, fastGlob.sync(task.pattern, task.options));
172-
}
173-
174-
return matches.filter(path_ => !filter(path_));
188+
return unionFastGlobResults(results, filter);
175189
};
176190

177191
export const globbyStream = (patterns, options = {}) => {
@@ -184,8 +198,8 @@ export const globbyStream = (patterns, options = {}) => {
184198
}
185199

186200
const filter = getFilterSync(options);
187-
const filterStream = new FilterStream(p => !filter(p));
188-
const uniqueStream = new UniqueStream();
201+
const filterStream = new FilterStream(fastGlobResult => !filter(fastGlobResult));
202+
const uniqueStream = new UniqueStream(fastGlobResult => getPathString(fastGlobResult));
189203

190204
return merge2(tasks.map(task => fastGlob.stream(task.pattern, task.options)))
191205
.pipe(filterStream)

‎stream-utils.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,19 @@ export class FilterStream extends ObjectTransform {
2424
}
2525

2626
export class UniqueStream extends ObjectTransform {
27-
constructor() {
27+
constructor(comparator) {
2828
super();
29+
this._comparator = comparator;
2930
this._pushed = new Set();
3031
}
3132

3233
_transform(data, encoding, callback) {
33-
if (!this._pushed.has(data)) {
34+
const {_comparator: comparator, _pushed: pushed} = this;
35+
const value = comparator(data);
36+
37+
if (!pushed.has(value)) {
3438
this.push(data);
35-
this._pushed.add(data);
39+
pushed.add(value);
3640
}
3741

3842
callback();

‎test.js

+20
Original file line numberDiff line numberDiff line change
@@ -425,3 +425,23 @@ test('don\'t throw when specifying a non-existing cwd directory - sync', t => {
425425
t.is(actual.length, 0);
426426
}
427427
});
428+
429+
test('unique when using objectMode option', async t => {
430+
const patterns = ['a.tmp', '*.tmp'];
431+
const options = {cwd, objectMode: true};
432+
const isUnique = result => [...new Set(result)].length === result.length;
433+
434+
const syncResult = globbySync(patterns, options).map(({path}) => path);
435+
t.true(isUnique(syncResult));
436+
437+
const result = await globby(patterns, options);
438+
t.deepEqual(result.map(({path}) => path), syncResult);
439+
440+
// TODO: Use `Array.fromAsync` when Node.js supports it
441+
const streamResult = [];
442+
for await (const {path} of globbyStream(patterns, options)) {
443+
streamResult.push(path);
444+
}
445+
446+
t.deepEqual(streamResult, syncResult);
447+
});

0 commit comments

Comments
 (0)
Please sign in to comment.