task.js

  1. "use strict";
  2. import async from 'async';
  3. import fs from 'fs';
  4. import p from 'path';
  5. import util from 'util';
  6. /**
  7. * Load Bob task files in parallel.
  8. * Only task files in specified taskNames will be loaded.
  9. *
  10. * @param {Array} taskNames: an array of task names
  11. * @param {String} dir: base directory where task files are located
  12. * @param {Function} cb: standard cb(err, result) callback
  13. */
  14. function load(taskNames, dir, cb) {
  15. const jobs = {};
  16. taskNames.forEach((taskName) => {
  17. jobs[taskName] = function (cb) {
  18. const file = p.join(dir, taskName + '.json');
  19. fs.access(file, fs.constants.F_OK, (err) => {
  20. if (err) {
  21. const _err = new Error(util.format('Unknown command: %s, use --help for more info', taskName));
  22. cb(_err);
  23. } else {
  24. fs.readFile(file, cb);
  25. }
  26. });
  27. };
  28. });
  29. function parse(err, results) {
  30. if (!err) {
  31. Object.keys(results).forEach((taskName) => {
  32. results[taskName] = JSON.parse(results[taskName]);
  33. });
  34. }
  35. cb(err, results);
  36. }
  37. async.parallel(jobs, parse);
  38. }
  39. const exports = {
  40. load: load
  41. };
  42. export {
  43. exports as default
  44. };