Urara-Blog/node_modules/.pnpm-store/v3/files/cc/edf3ac68fb540906286163e9d32acd006d0f7e95b47da513ad44ca7c3a12066f8ca3c23fb668834797951b92bd642d129b0b44e5ec4b4b434e54b62b799027
2022-08-14 01:14:53 +08:00

28 lines
1,013 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const stream_1 = require("../readers/stream");
const provider_1 = require("./provider");
class ProviderAsync extends provider_1.default {
constructor() {
super(...arguments);
this._reader = new stream_1.default(this._settings);
}
read(task) {
const root = this._getRootDirectory(task);
const options = this._getReaderOptions(task);
const entries = [];
return new Promise((resolve, reject) => {
const stream = this.api(root, task, options);
stream.once('error', reject);
stream.on('data', (entry) => entries.push(options.transform(entry)));
stream.once('end', () => resolve(entries));
});
}
api(root, task, options) {
if (task.dynamic) {
return this._reader.dynamic(root, options);
}
return this._reader.static(task.patterns, options);
}
}
exports.default = ProviderAsync;