/** * Copyright (c) Microsoft Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { TimeoutError } from './utils/errors'; import { assert, debugLogger, LogName } from './helper'; import { rewriteErrorMessage } from './utils/stackTrace'; export interface Progress { readonly aborted: Promise; log(message: string): void; timeUntilDeadline(): number; isRunning(): boolean; cleanupWhenAborted(cleanup: () => any): void; throwIfAborted(): void; } export async function runAbortableTask(task: (progress: Progress) => Promise, timeout: number, logName: LogName = 'api'): Promise { const controller = new ProgressController(timeout, logName); return controller.run(task); } export class ProgressController { // Promise and callback that forcefully abort the progress. // This promise always rejects. private _forceAbort: (error: Error) => void = () => {}; private _forceAbortPromise: Promise; // Promise and callback that resolve once the progress is aborted. // This includes the force abort and also rejection of the task itself (failure). private _aborted = () => {}; private _abortedPromise: Promise; // Cleanups to be run only in the case of abort. private _cleanups: (() => any)[] = []; private _logName: LogName; private _state: 'before' | 'running' | 'aborted' | 'finished' = 'before'; private _deadline: number; private _timeout: number; private _logRecordring: string[] = []; constructor(timeout: number, logName: LogName = 'api') { this._logName = logName; this._timeout = timeout; this._deadline = timeout ? monotonicTime() + timeout : 0; this._forceAbortPromise = new Promise((resolve, reject) => this._forceAbort = reject); this._forceAbortPromise.catch(e => null); // Prevent unhandle promsie rejection. this._abortedPromise = new Promise(resolve => this._aborted = resolve); } async run(task: (progress: Progress) => Promise): Promise { assert(this._state === 'before'); this._state = 'running'; const progress: Progress = { aborted: this._abortedPromise, log: message => { if (this._state === 'running') this._logRecordring.push(message); debugLogger.log(this._logName, message); }, timeUntilDeadline: () => this._deadline ? this._deadline - monotonicTime() : 2147483647, // 2^31-1 safe setTimeout in Node. isRunning: () => this._state === 'running', cleanupWhenAborted: (cleanup: () => any) => { if (this._state === 'running') this._cleanups.push(cleanup); else runCleanup(cleanup); }, throwIfAborted: () => { if (this._state === 'aborted') throw new AbortedError(); }, }; const timeoutError = new TimeoutError(`Timeout ${this._timeout}ms exceeded.`); const timer = setTimeout(() => this._forceAbort(timeoutError), progress.timeUntilDeadline()); try { const promise = task(progress); const result = await Promise.race([promise, this._forceAbortPromise]); clearTimeout(timer); this._state = 'finished'; this._logRecordring = []; return result; } catch (e) { this._aborted(); rewriteErrorMessage(e, e.message + formatLogRecording(this._logRecordring) + kLoggingNote); clearTimeout(timer); this._state = 'aborted'; this._logRecordring = []; await Promise.all(this._cleanups.splice(0).map(cleanup => runCleanup(cleanup))); throw e; } } abort(error: Error) { this._forceAbort(error); } } async function runCleanup(cleanup: () => any) { try { await cleanup(); } catch (e) { } } const kLoggingNote = `\nNote: use DEBUG=pw:api environment variable and rerun to capture Playwright logs.`; function formatLogRecording(log: string[]): string { if (!log.length) return ''; const header = ` logs `; const headerLength = 60; const leftLength = (headerLength - header.length) / 2; const rightLength = headerLength - header.length - leftLength; return `\n${'='.repeat(leftLength)}${header}${'='.repeat(rightLength)}\n${log.join('\n')}\n${'='.repeat(headerLength)}`; } function monotonicTime(): number { const [seconds, nanoseconds] = process.hrtime(); return seconds * 1000 + (nanoseconds / 1000000 | 0); } class AbortedError extends Error {}