lockbase
v5.0.2
Published
A queued locking library useful for databases
Downloads
17
Readme
lockbase
A queued locking library useful for databases.
Installation
npm install --save lockbase
Usage
The lockbase
module has the following methods:
add
a new lockremove
an existing lockcancel
all locksfind
all lockswait
for key to have no more locksimportState
exportState
on
for adding a listeneroff
for removing a listener
import lockbase from 'lockbase';
const locks = lockbase();
// Add a lock, and wait until it becomes active
const lockId = await locks.add(
'users', // path to lock
{
id: 'optional custom id' // defaults to increments starting at 1,
somethingElse: 'abc' // add custom metadata
}
);
// Remove a lock when you're finished with it
locks.remove(lockId);
const usersLocks = locks.find('users');
/*
usersLocks === [{
id: 1,
path: 'users'
}]
*/
// Wait until a key has no locks associated with it
// This will wait until `users` is unlocked.
await locks.wait('users.email')
// Cancel all locks, rejecting any promises that are waiting.
locks.cancel(new Error('server is closing down'))
Queue and Events
The queue holds all active locks, future locks and waits.
The lockbase
module is actually an EventEmitter that emits two events:
queue:insert
when an item is added to the queuequeue:remove
when an item is removedresolved:{id}
when an item is resolved
locks.on('queue.insert', item => {
console.log('item has been inserted', item);
});
locks.on('queue.remove', item => {
console.log('item has been removed', item);
});
locks.on('resolved.abcd', item => {
console.log('item abcd has been resolved', item);
});
locks.on('change', ({ item, event } => {
console.log(`item has been ${event}`, { event, item });
});
Export lock state
If you are running multiple servers, where a primary server is used, you may need to hand over lock state. For example, if using raft, following a leader election.
You can export the lock state as a JSON object and import it into another server.
const exportedState = locks1.exportState();
/*
exportedState === {
queue: [{
id: 1,
path: 'users'
}],
incremental: 1
}
*/
locks2.importState(exportedState);
Paths
Paths follow dot notation and will match partially.
users
will matchusers
,users.email
,users.anythingElse
users.email
will matchusers.email
andusers.email.subpath
Example
const lockbase = require('lockbase');
const locks = lockbase();
locks.add('users').then(lock => {
const isLocked = locks.find('users.email')
console.log(isLocked) // === true
setTimeout(() => locks.remove(lock), 500);
});
locks.add('users').then(lock => {
// This will not be called for 500ms
locks.remove(lock);
});