fs/lib/AbstractReader.js

  1. import randomInt from "random-int";
  2. import Trace from "./tracing/Trace.js";
  3. /**
  4. * Abstract resource locator implementing the general API for <b>reading</b> resources
  5. *
  6. * @abstract
  7. * @public
  8. * @class
  9. * @alias @ui5/fs/AbstractReader
  10. */
  11. class AbstractReader {
  12. /**
  13. * The constructor.
  14. *
  15. * @public
  16. * @param {string} name Name of the reader. Typically used for tracing purposes
  17. */
  18. constructor(name) {
  19. if (new.target === AbstractReader) {
  20. throw new TypeError("Class 'AbstractReader' is abstract");
  21. }
  22. this._name = name;
  23. }
  24. /*
  25. * Returns the name of the reader instance. This can be used for logging/tracing purposes.
  26. *
  27. * @returns {string} Name of the reader
  28. */
  29. getName() {
  30. return this._name || `<unnamed ${this.constructor.name} Reader>`;
  31. }
  32. /**
  33. * Locates resources by matching glob patterns.
  34. *
  35. * @example
  36. * byGlob("**‏/*.{html,htm}");
  37. * byGlob("**‏/.library");
  38. * byGlob("/pony/*");
  39. *
  40. * @public
  41. * @param {string|string[]} virPattern glob pattern as string or array of glob patterns for
  42. * virtual directory structure
  43. * @param {object} [options] glob options
  44. * @param {boolean} [options.nodir=true] Do not match directories
  45. * @returns {Promise<@ui5/fs/Resource[]>} Promise resolving to list of resources
  46. */
  47. byGlob(virPattern, options = {nodir: true}) {
  48. const trace = new Trace(virPattern);
  49. return this._byGlob(virPattern, options, trace).then(function(result) {
  50. trace.printReport();
  51. return result;
  52. }).then((resources) => {
  53. if (resources.length > 1) {
  54. // Pseudo randomize result order to prevent consumers from relying on it:
  55. // Swap the first object with a randomly chosen one
  56. const x = 0;
  57. const y = randomInt(0, resources.length - 1);
  58. // Swap object at index "x" with "y"
  59. resources[x] = [resources[y], resources[y]=resources[x]][0];
  60. }
  61. return resources;
  62. });
  63. }
  64. /**
  65. * Locates resources by matching a given path.
  66. *
  67. * @public
  68. * @param {string} virPath Virtual path
  69. * @param {object} [options] Options
  70. * @param {boolean} [options.nodir=true] Do not match directories
  71. * @returns {Promise<@ui5/fs/Resource>} Promise resolving to a single resource
  72. */
  73. byPath(virPath, options = {nodir: true}) {
  74. const trace = new Trace(virPath);
  75. return this._byPath(virPath, options, trace).then(function(resource) {
  76. trace.printReport();
  77. return resource;
  78. });
  79. }
  80. /**
  81. * Locates resources by one or more glob patterns.
  82. *
  83. * @abstract
  84. * @protected
  85. * @param {string|string[]} virPattern glob pattern as string or an array of
  86. * glob patterns for virtual directory structure
  87. * @param {object} options glob options
  88. * @param {@ui5/fs/tracing.Trace} trace Trace instance
  89. * @returns {Promise<@ui5/fs/Resource[]>} Promise resolving to list of resources
  90. */
  91. _byGlob(virPattern, options, trace) {
  92. throw new Error("Function '_byGlob' is not implemented");
  93. }
  94. /**
  95. * Locate resources by matching a single glob pattern.
  96. *
  97. * @abstract
  98. * @protected
  99. * @param {string} pattern glob pattern
  100. * @param {object} options glob options
  101. * @param {@ui5/fs/tracing.Trace} trace Trace instance
  102. * @returns {Promise<@ui5/fs/Resource[]>} Promise resolving to list of resources
  103. */
  104. _runGlob(pattern, options, trace) {
  105. throw new Error("Function '_runGlob' is not implemented");
  106. }
  107. /**
  108. * Locates resources by path.
  109. *
  110. * @abstract
  111. * @protected
  112. * @param {string} virPath Virtual path
  113. * @param {object} options Options
  114. * @param {@ui5/fs/tracing.Trace} trace Trace instance
  115. * @returns {Promise<@ui5/fs/Resource>} Promise resolving to a single resource
  116. */
  117. _byPath(virPath, options, trace) {
  118. throw new Error("Function '_byPath' is not implemented");
  119. }
  120. }
  121. export default AbstractReader;