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. * Cancellation 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 cancellation, 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 {?Promise} */
  38. this.abortPromise_ = null;
  39. }
  40. /**
  41. * @return {boolean} True if the operation has been aborted.
  42. * @export
  43. */
  44. get aborted() {
  45. return this.abortPromise_ !== null;
  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. if (!this.abortPromise_) {
  110. this.abortPromise_ = this.onAbort_();
  111. }
  112. return this.abortPromise_;
  113. }
  114. /**
  115. * @param {!Array<!shaka.util.AbortableOperation>} operations
  116. * @return {!shaka.util.AbortableOperation} An operation which is resolved
  117. * when all operations are successful and fails when any operation fails.
  118. * For this operation, abort() aborts all given operations.
  119. * @export
  120. */
  121. static all(operations) {
  122. return new shaka.util.AbortableOperation(
  123. Promise.all(operations.map((op) => op.promise)),
  124. () => Promise.all(operations.map((op) => op.abort())));
  125. }
  126. /**
  127. * @override
  128. * @export
  129. */
  130. finally(onFinal) {
  131. this.promise.then((value) => onFinal(true), (e) => onFinal(false));
  132. return this;
  133. }
  134. /**
  135. * @param {(undefined|
  136. * function(T):U|
  137. * function(T):!Promise<U>|
  138. * function(T):!shaka.util.AbortableOperation.<U>)} onSuccess
  139. * A callback to be invoked after this operation is complete, to chain to
  140. * another operation. The callback can return a plain value, a Promise to
  141. * an asynchronous value, or another AbortableOperation.
  142. * @param {function(*)=} onError
  143. * An optional callback to be invoked if this operation fails, to perform
  144. * some cleanup or error handling. Analogous to the second parameter of
  145. * Promise.prototype.then.
  146. * @return {!shaka.util.AbortableOperation.<U>} An operation which is resolved
  147. * when this operation and the operation started by the callback are both
  148. * complete.
  149. * @template U
  150. * @export
  151. */
  152. chain(onSuccess, onError) {
  153. const newPromise = new shaka.util.PublicPromise();
  154. // Silence uncaught rejection errors, which may otherwise occur any place
  155. // we don't explicitly handle aborted operations.
  156. newPromise.catch(() => {});
  157. const abortError = shaka.util.AbortableOperation.abortError();
  158. // If called before "this" completes, just abort "this".
  159. let abort = () => {
  160. newPromise.reject(abortError);
  161. return this.abort();
  162. };
  163. const makeCallback = (isSuccess) => {
  164. return (value) => {
  165. if (this.abortPromise_ && isSuccess) {
  166. // If "this" is not abortable(), or if abort() is called after "this"
  167. // is complete but before the next stage in the chain begins, we
  168. // should stop right away.
  169. newPromise.reject(abortError);
  170. return;
  171. }
  172. const cb = isSuccess ? onSuccess : onError;
  173. if (!cb) {
  174. // No callback? Pass it along.
  175. const next = isSuccess ? newPromise.resolve : newPromise.reject;
  176. next(value);
  177. return;
  178. }
  179. // Call the callback, interpret the return value, set the Promise state,
  180. // and get the next abort function.
  181. abort = shaka.util.AbortableOperation.wrapChainCallback_(
  182. cb, value, newPromise);
  183. };
  184. };
  185. this.promise.then(makeCallback(true), makeCallback(false));
  186. return new shaka.util.AbortableOperation(
  187. newPromise,
  188. // By creating a closure around abort(), we can update the value of
  189. // abort() at various stages.
  190. () => abort());
  191. }
  192. /**
  193. * @param {(function(T):U|
  194. * function(T):!Promise<U>|
  195. * function(T):!shaka.util.AbortableOperation.<U>|
  196. * function(*))} callback
  197. * A callback to be invoked with the given value.
  198. * @param {T} value
  199. * @param {!shaka.util.PublicPromise} newPromise The promise for the next
  200. * stage in the chain.
  201. * @return {function():!Promise} The next abort() function for the chain.
  202. * @private
  203. * @template T, U
  204. */
  205. static wrapChainCallback_(callback, value, newPromise) {
  206. try {
  207. const ret = callback(value);
  208. if (ret && ret.promise && ret.abort) {
  209. // This is an abortable operation, with its own abort() method.
  210. // After this point, abort() should abort the operation from the
  211. // callback, and the new promise should be tied to the promise
  212. // from the callback's operation.
  213. newPromise.resolve(ret.promise);
  214. // This used to say "return ret.abort;", but it caused subtle issues by
  215. // unbinding part of the abort chain. There is now a test to ensure
  216. // that we don't call abort with the wrong "this".
  217. return () => ret.abort();
  218. } else {
  219. // This is a Promise or a plain value, and this step cannot be aborted.
  220. newPromise.resolve(ret);
  221. // Abort is complete when the returned value/Promise is resolved or
  222. // fails, but never fails itself nor returns a value.
  223. return () => Promise.resolve(ret).then(() => {}, () => {});
  224. }
  225. } catch (exception) {
  226. // The callback threw an exception or error. Reject the new Promise and
  227. // resolve any future abort call right away.
  228. newPromise.reject(exception);
  229. return () => Promise.resolve();
  230. }
  231. }
  232. };
  233. /**
  234. * @const {!Promise<T>}
  235. * @exportInterface
  236. */
  237. // eslint-disable-next-line no-restricted-syntax
  238. shaka.util.AbortableOperation.prototype.promise;