Rename locks
This commit is contained in:
parent
9e9ee06f15
commit
cfdad5f608
1 changed files with 7 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
import type { RelativePath } from "src/database/document-metadata";
|
import type { RelativePath } from "src/database/document-metadata";
|
||||||
|
|
||||||
const locked = new Set<RelativePath>(),
|
const locked = new Set<RelativePath>();
|
||||||
waiters = new Map<RelativePath, (() => void)[]>();
|
const waiters = new Map<RelativePath, (() => void)[]>();
|
||||||
|
|
||||||
export function tryLockDocument(relativePath: RelativePath): boolean {
|
export function tryLockDocument(relativePath: RelativePath): boolean {
|
||||||
if (locked.has(relativePath)) {
|
if (locked.has(relativePath)) {
|
||||||
|
|
@ -32,10 +32,14 @@ export async function waitForDocumentLock(
|
||||||
|
|
||||||
export function unlockDocument(relativePath: RelativePath): void {
|
export function unlockDocument(relativePath: RelativePath): void {
|
||||||
if (!locked.has(relativePath)) {
|
if (!locked.has(relativePath)) {
|
||||||
throw new Error(`Document ${relativePath} is not locked`);
|
throw new Error(
|
||||||
|
`Document ${relativePath} is not locked, cannot unlock`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove the first element to ensure FIFO unblocking order
|
||||||
const nextWaiting = waiters.get(relativePath)?.shift();
|
const nextWaiting = waiters.get(relativePath)?.shift();
|
||||||
|
|
||||||
if (nextWaiting) {
|
if (nextWaiting) {
|
||||||
nextWaiting();
|
nextWaiting();
|
||||||
} else {
|
} else {
|
||||||
Loading…
Add table
Add a link
Reference in a new issue