chromedevtools--chrome-devtools-mcp
574ff4efc2
This PR Fixes #249 The `onRelease` functionality in the `Mutex` class was unused. This change removes the `onRelease` callback from the `acquire` method and the `Guard` class, simplifying the implementation.
42 行
839 B
TypeScript
42 行
839 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
export class Mutex {
|
|
static Guard = class Guard {
|
|
#mutex: Mutex;
|
|
constructor(mutex: Mutex) {
|
|
this.#mutex = mutex;
|
|
}
|
|
dispose(): void {
|
|
return this.#mutex.release();
|
|
}
|
|
};
|
|
|
|
#locked = false;
|
|
#acquirers: Array<() => void> = [];
|
|
|
|
// This is FIFO.
|
|
async acquire(): Promise<InstanceType<typeof Mutex.Guard>> {
|
|
if (!this.#locked) {
|
|
this.#locked = true;
|
|
return new Mutex.Guard(this);
|
|
}
|
|
const {resolve, promise} = Promise.withResolvers<void>();
|
|
this.#acquirers.push(resolve);
|
|
await promise;
|
|
return new Mutex.Guard(this);
|
|
}
|
|
|
|
release(): void {
|
|
const resolve = this.#acquirers.shift();
|
|
if (!resolve) {
|
|
this.#locked = false;
|
|
return;
|
|
}
|
|
resolve();
|
|
}
|
|
}
|