fs/lib/AbstractReaderWriter.js

  1. import AbstractReader from "./AbstractReader.js";
  2. /**
  3. * Abstract resource locator implementing the general API for <b>reading and writing</b> resources
  4. *
  5. * @abstract
  6. * @public
  7. * @class
  8. * @alias @ui5/fs/AbstractReaderWriter
  9. * @extends @ui5/fs/AbstractReader
  10. */
  11. class AbstractReaderWriter extends AbstractReader {
  12. /**
  13. * The constructor.
  14. *
  15. * @public
  16. * @param {string} name Name of the reader/writer. Typically used for tracing purposes
  17. */
  18. constructor(name) {
  19. if (new.target === AbstractReaderWriter) {
  20. throw new TypeError("Class 'AbstractReaderWriter' is abstract");
  21. }
  22. super(name);
  23. }
  24. /*
  25. * Returns the name of the reader/writer instance. This can be used for logging/tracing purposes.
  26. *
  27. * @returns {string} Name of the reader/writer
  28. */
  29. getName() {
  30. return this._name || `<unnamed ${this.constructor.name} Reader/Writer>`;
  31. }
  32. /**
  33. * Writes the content of a resource to a path.
  34. *
  35. * @public
  36. * @param {@ui5/fs/Resource} resource Resource to write
  37. * @param {object} [options]
  38. * @param {boolean} [options.readOnly=false] Whether the resource content shall be written read-only
  39. * Do not use in conjunction with the <code>drain</code> option.
  40. * The written file will be used as the new source of this resources content.
  41. * Therefore the written file should not be altered by any means.
  42. * Activating this option might improve overall memory consumption.
  43. * @param {boolean} [options.drain=false] Whether the resource content shall be emptied during the write process.
  44. * Do not use in conjunction with the <code>readOnly</code> option.
  45. * Activating this option might improve overall memory consumption.
  46. * This should be used in cases where this is the last access to the resource.
  47. * E.g. the final write of a resource after all processing is finished.
  48. * @returns {Promise<undefined>} Promise resolving once data has been written
  49. */
  50. write(resource, options = {drain: false, readOnly: false}) {
  51. return this._write(resource, options);
  52. }
  53. /**
  54. * Writes the content of a resource to a path.
  55. *
  56. * @abstract
  57. * @protected
  58. * @param {@ui5/fs/Resource} resource Resource to write
  59. * @param {object} [options] Write options, see above
  60. * @returns {Promise<undefined>} Promise resolving once data has been written
  61. */
  62. _write(resource, options) {
  63. throw new Error("Not implemented");
  64. }
  65. }
  66. export default AbstractReaderWriter;