2020-09-03 15:42:33 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
export class Lock {
|
2021-11-17 16:28:14 +05:30
|
|
|
private _promise?: Promise<void>;
|
|
|
|
private _resolve?: (() => void);
|
2020-09-03 15:42:33 +05:30
|
|
|
|
2021-11-16 15:06:19 +05:30
|
|
|
tryTake(): boolean {
|
2020-09-03 15:42:33 +05:30
|
|
|
if (!this._promise) {
|
|
|
|
this._promise = new Promise(resolve => {
|
|
|
|
this._resolve = resolve;
|
|
|
|
});
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-11-16 15:06:19 +05:30
|
|
|
async take(): Promise<void> {
|
2020-11-10 15:34:53 +05:30
|
|
|
while(!this.tryTake()) {
|
|
|
|
await this.released();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-16 15:06:19 +05:30
|
|
|
get isTaken(): boolean {
|
2020-09-03 15:42:33 +05:30
|
|
|
return !!this._promise;
|
|
|
|
}
|
|
|
|
|
2021-11-16 15:06:19 +05:30
|
|
|
release(): void {
|
2020-09-03 15:42:33 +05:30
|
|
|
if (this._resolve) {
|
2021-11-17 16:28:14 +05:30
|
|
|
this._promise = undefined;
|
2020-09-03 15:42:33 +05:30
|
|
|
const resolve = this._resolve;
|
2021-11-17 16:28:14 +05:30
|
|
|
this._resolve = undefined;
|
2020-09-03 15:42:33 +05:30
|
|
|
resolve();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-17 16:28:14 +05:30
|
|
|
released(): Promise<void> | undefined {
|
2020-09-03 15:42:33 +05:30
|
|
|
return this._promise;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-01 19:34:45 +05:30
|
|
|
export class MultiLock {
|
2021-11-16 15:06:19 +05:30
|
|
|
|
|
|
|
constructor(public readonly locks: Lock[]) {
|
2021-03-01 19:34:45 +05:30
|
|
|
}
|
|
|
|
|
2021-11-16 15:06:19 +05:30
|
|
|
release(): void {
|
2021-03-01 19:34:45 +05:30
|
|
|
for (const lock of this.locks) {
|
|
|
|
lock.release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-03 15:42:33 +05:30
|
|
|
export function tests() {
|
|
|
|
return {
|
|
|
|
"taking a lock twice returns false": assert => {
|
|
|
|
const lock = new Lock();
|
2020-11-10 15:34:53 +05:30
|
|
|
assert.equal(lock.tryTake(), true);
|
2020-09-03 15:42:33 +05:30
|
|
|
assert.equal(lock.isTaken, true);
|
2020-11-10 15:34:53 +05:30
|
|
|
assert.equal(lock.tryTake(), false);
|
2020-09-03 15:42:33 +05:30
|
|
|
},
|
|
|
|
"can take a released lock again": assert => {
|
|
|
|
const lock = new Lock();
|
2020-11-10 15:34:53 +05:30
|
|
|
lock.tryTake();
|
2020-09-03 15:42:33 +05:30
|
|
|
lock.release();
|
|
|
|
assert.equal(lock.isTaken, false);
|
2020-11-10 15:34:53 +05:30
|
|
|
assert.equal(lock.tryTake(), true);
|
2020-09-03 15:42:33 +05:30
|
|
|
},
|
|
|
|
"2 waiting for lock, only first one gets it": async assert => {
|
|
|
|
const lock = new Lock();
|
2020-11-10 15:34:53 +05:30
|
|
|
lock.tryTake();
|
2020-09-03 15:42:33 +05:30
|
|
|
|
2020-09-03 15:47:01 +05:30
|
|
|
let first;
|
2021-11-16 15:06:19 +05:30
|
|
|
lock.released()!.then(() => first = lock.tryTake());
|
2020-09-03 15:47:01 +05:30
|
|
|
let second;
|
2021-11-16 15:06:19 +05:30
|
|
|
lock.released()!.then(() => second = lock.tryTake());
|
2020-09-03 15:42:33 +05:30
|
|
|
const promise = lock.released();
|
|
|
|
lock.release();
|
|
|
|
await promise;
|
2020-09-03 15:47:01 +05:30
|
|
|
assert.strictEqual(first, true);
|
|
|
|
assert.strictEqual(second, false);
|
2020-09-03 15:42:33 +05:30
|
|
|
},
|
|
|
|
"await non-taken lock": async assert => {
|
|
|
|
const lock = new Lock();
|
|
|
|
await lock.released();
|
|
|
|
assert(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|