Source: lib/util/abortable_operation.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.util.AbortableOperation');
  7. goog.require('shaka.util.Error');
  8. goog.require('shaka.util.PublicPromise');
  9. /**
  10. * A utility to wrap abortable operations. Note that these are not cancelable.
  11. * Cancelation implies undoing what has been done so far, whereas aborting only
  12. * means that further work is stopped.
  13. *
  14. * @implements {shaka.extern.IAbortableOperation.<T>}
  15. * @template T
  16. * @export
  17. */
  18. shaka.util.AbortableOperation = class {
  19. /**
  20. * @param {!Promise.<T>} promise
  21. * A Promise which represents the underlying operation. It is resolved when
  22. * the operation is complete, and rejected if the operation fails or is
  23. * aborted. Aborted operations should be rejected with a shaka.util.Error
  24. * object using the error code OPERATION_ABORTED.
  25. * @param {function():!Promise} onAbort
  26. * Will be called by this object to abort the underlying operation.
  27. * This is not cancelation, and will not necessarily result in any work
  28. * being undone. abort() should return a Promise which is resolved when the
  29. * underlying operation has been aborted. The returned Promise should never
  30. * be rejected.
  31. */
  32. constructor(promise, onAbort) {
  33. /** @const {!Promise.<T>} */
  34. this.promise = promise;
  35. /** @private {function():!Promise} */
  36. this.onAbort_ = onAbort;
  37. /** @private {boolean} */
  38. this.aborted_ = false;
  39. }
  40. /**
  41. * @return {boolean} True if the operation has been aborted.
  42. * @export
  43. */
  44. get aborted() {
  45. return this.aborted_;
  46. }
  47. /**
  48. * @param {!shaka.util.Error} error
  49. * @return {!shaka.util.AbortableOperation} An operation which has already
  50. * failed with the error given by the caller.
  51. * @export
  52. */
  53. static failed(error) {
  54. return new shaka.util.AbortableOperation(
  55. Promise.reject(error),
  56. () => Promise.resolve());
  57. }
  58. /**
  59. * @return {!shaka.util.AbortableOperation} An operation which has already
  60. * failed with the error OPERATION_ABORTED.
  61. * @export
  62. */
  63. static aborted() {
  64. const p = Promise.reject(shaka.util.AbortableOperation.abortError());
  65. // Silence uncaught rejection errors, which may otherwise occur any place
  66. // we don't explicitly handle aborted operations.
  67. p.catch(() => {});
  68. return new shaka.util.AbortableOperation(p, () => Promise.resolve());
  69. }
  70. /** @return {!shaka.util.Error} */
  71. static abortError() {
  72. return new shaka.util.Error(
  73. shaka.util.Error.Severity.CRITICAL,
  74. shaka.util.Error.Category.PLAYER,
  75. shaka.util.Error.Code.OPERATION_ABORTED);
  76. }
  77. /**
  78. * @param {U} value
  79. * @return {!shaka.util.AbortableOperation.<U>} An operation which has already
  80. * completed with the given value.
  81. * @template U
  82. * @export
  83. */
  84. static completed(value) {
  85. return new shaka.util.AbortableOperation(
  86. Promise.resolve(value),
  87. () => Promise.resolve());
  88. }
  89. /**
  90. * @param {!Promise.<U>} promise
  91. * @return {!shaka.util.AbortableOperation.<U>} An operation which cannot be
  92. * aborted. It will be completed when the given Promise is resolved, or
  93. * will be failed when the given Promise is rejected.
  94. * @template U
  95. * @export
  96. */
  97. static notAbortable(promise) {
  98. return new shaka.util.AbortableOperation(
  99. promise,
  100. // abort() here will return a Promise which is resolved when the input
  101. // promise either resolves or fails.
  102. () => promise.catch(() => {}));
  103. }
  104. /**
  105. * @override
  106. * @export
  107. */
  108. abort() {
  109. this.aborted_ = true;
  110. return this.onAbort_();
  111. }
  112. /**
  113. * @param {!Array.<!shaka.util.AbortableOperation>} operations
  114. * @return {!shaka.util.AbortableOperation} An operation which is resolved
  115. * when all operations are successful and fails when any operation fails.
  116. * For this operation, abort() aborts all given operations.
  117. * @export
  118. */
  119. static all(operations) {
  120. return new shaka.util.AbortableOperation(
  121. Promise.all(operations.map((op) => op.promise)),
  122. () => Promise.all(operations.map((op) => op.abort())));
  123. }
  124. /**
  125. * @override
  126. * @export
  127. */
  128. finally(onFinal) {
  129. this.promise.then((value) => onFinal(true), (e) => onFinal(false));
  130. return this;
  131. }
  132. /**
  133. * @param {(undefined|
  134. * function(T):U|
  135. * function(T):!Promise.<U>|
  136. * function(T):!shaka.util.AbortableOperation.<U>)} onSuccess
  137. * A callback to be invoked after this operation is complete, to chain to
  138. * another operation. The callback can return a plain value, a Promise to
  139. * an asynchronous value, or another AbortableOperation.
  140. * @param {function(*)=} onError
  141. * An optional callback to be invoked if this operation fails, to perform
  142. * some cleanup or error handling. Analogous to the second parameter of
  143. * Promise.prototype.then.
  144. * @return {!shaka.util.AbortableOperation.<U>} An operation which is resolved
  145. * when this operation and the operation started by the callback are both
  146. * complete.
  147. * @template U
  148. * @export
  149. */
  150. chain(onSuccess, onError) {
  151. const newPromise = new shaka.util.PublicPromise();
  152. const abortError = shaka.util.AbortableOperation.abortError();
  153. // If called before "this" completes, just abort "this".
  154. let abort = () => {
  155. newPromise.reject(abortError);
  156. return this.abort();
  157. };
  158. const makeCallback = (isSuccess) => {
  159. return (value) => {
  160. if (this.aborted_ && isSuccess) {
  161. // If "this" is not abortable(), or if abort() is called after "this"
  162. // is complete but before the next stage in the chain begins, we
  163. // should stop right away.
  164. newPromise.reject(abortError);
  165. return;
  166. }
  167. const cb = isSuccess ? onSuccess : onError;
  168. if (!cb) {
  169. // No callback? Pass it along.
  170. const next = isSuccess ? newPromise.resolve : newPromise.reject;
  171. next(value);
  172. return;
  173. }
  174. // Call the callback, interpret the return value, set the Promise state,
  175. // and get the next abort function.
  176. abort = shaka.util.AbortableOperation.wrapChainCallback_(
  177. cb, value, newPromise);
  178. };
  179. };
  180. this.promise.then(makeCallback(true), makeCallback(false));
  181. return new shaka.util.AbortableOperation(
  182. newPromise,
  183. // By creating a closure around abort(), we can update the value of
  184. // abort() at various stages.
  185. () => abort());
  186. }
  187. /**
  188. * @param {(function(T):U|
  189. * function(T):!Promise.<U>|
  190. * function(T):!shaka.util.AbortableOperation.<U>|
  191. * function(*))} callback
  192. * A callback to be invoked with the given value.
  193. * @param {T} value
  194. * @param {!shaka.util.PublicPromise} newPromise The promise for the next
  195. * stage in the chain.
  196. * @return {function():!Promise} The next abort() function for the chain.
  197. * @private
  198. * @template T, U
  199. */
  200. static wrapChainCallback_(callback, value, newPromise) {
  201. try {
  202. const ret = callback(value);
  203. if (ret && ret.promise && ret.abort) {
  204. // This is an abortable operation, with its own abort() method.
  205. // After this point, abort() should abort the operation from the
  206. // callback, and the new promise should be tied to the promise
  207. // from the callback's operation.
  208. newPromise.resolve(ret.promise);
  209. // This used to say "return ret.abort;", but it caused subtle issues by
  210. // unbinding part of the abort chain. There is now a test to ensure
  211. // that we don't call abort with the wrong "this".
  212. return () => ret.abort();
  213. } else {
  214. // This is a Promise or a plain value, and this step cannot be aborted.
  215. newPromise.resolve(ret);
  216. // Abort is complete when the returned value/Promise is resolved or
  217. // fails, but never fails itself nor returns a value.
  218. return () => Promise.resolve(ret).then(() => {}, () => {});
  219. }
  220. } catch (exception) {
  221. // The callback threw an exception or error. Reject the new Promise and
  222. // resolve any future abort call right away.
  223. newPromise.reject(exception);
  224. return () => Promise.resolve();
  225. }
  226. }
  227. };
  228. /**
  229. * @const {!Promise.<T>}
  230. * @exportInterface
  231. */
  232. // eslint-disable-next-line no-restricted-syntax
  233. shaka.util.AbortableOperation.prototype.promise;