fs/lib/ReaderCollectionPrioritized.js

  1. import AbstractReader from "./AbstractReader.js";
  2. /**
  3. * Prioritized Resource Locator Collection
  4. *
  5. * @public
  6. * @class
  7. * @alias @ui5/fs/ReaderCollectionPrioritized
  8. * @extends @ui5/fs/AbstractReader
  9. */
  10. class ReaderCollectionPrioritized extends AbstractReader {
  11. /**
  12. * The constructor.
  13. *
  14. * @param {object} parameters
  15. * @param {string} parameters.name The collection name
  16. * @param {@ui5/fs/AbstractReader[]} [parameters.readers]
  17. * Prioritized list of resource readers (tried in the order provided).
  18. * If none are provided, the collection will never return any results.
  19. */
  20. constructor({readers, name}) {
  21. super(name);
  22. // Remove any undefined (empty) readers from array
  23. this._readers = readers.filter(($) => $);
  24. }
  25. /**
  26. * Locates resources by glob.
  27. *
  28. * @private
  29. * @param {string|string[]} pattern glob pattern as string or an array of
  30. * glob patterns for virtual directory structure
  31. * @param {object} options glob options
  32. * @param {@ui5/fs/tracing.Trace} trace Trace instance
  33. * @returns {Promise<@ui5/fs/Resource[]>} Promise resolving to list of resources
  34. */
  35. _byGlob(pattern, options, trace) {
  36. return Promise.all(this._readers.map(function(resourceLocator) {
  37. return resourceLocator._byGlob(pattern, options, trace);
  38. })).then((result) => {
  39. const files = Object.create(null);
  40. const resources = [];
  41. // Prefer files found in preceding resource locators
  42. for (let i = 0; i < result.length; i++) {
  43. for (let j = 0; j < result[i].length; j++) {
  44. const resource = result[i][j];
  45. const path = resource.getPath();
  46. if (!files[path]) {
  47. files[path] = true;
  48. resources.push(resource);
  49. }
  50. }
  51. }
  52. trace.collection(this._name);
  53. return resources;
  54. });
  55. }
  56. /**
  57. * Locates resources by path.
  58. *
  59. * @private
  60. * @param {string} virPath Virtual path
  61. * @param {object} options Options
  62. * @param {@ui5/fs/tracing.Trace} trace Trace instance
  63. * @returns {Promise<@ui5/fs/Resource|null>}
  64. * Promise resolving to a single resource or <code>null</code> if no resource is found
  65. */
  66. _byPath(virPath, options, trace) {
  67. const that = this;
  68. const byPath = (i) => {
  69. if (i > this._readers.length - 1) {
  70. return null;
  71. }
  72. return this._readers[i]._byPath(virPath, options, trace).then((resource) => {
  73. if (resource) {
  74. resource.pushCollection(that._name);
  75. return resource;
  76. } else {
  77. return byPath(++i);
  78. }
  79. });
  80. };
  81. return byPath(0);
  82. }
  83. }
  84. export default ReaderCollectionPrioritized;