webstorage-mutex
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

webstorage-mutex 🔒

npm version

Fast mutual exclusion for safe cross tab Web Storage access

Installation

npm install webstorage-mutex
# yarn add webstorage-mutex

Example

import { mutex } from 'webstorage-mutex';

mutex(
  () => {
    let v = window.localStorage.getItem('test-item');
    if (!v) {
      v = '*';
    } else {
      v = v + '*';
    }
    window.localStorage.setItem('test-item', v);
    return v;
  },
  {
    lockPrefix: 'webstorage-mutex',
    repeatInterval: 50,
    repeatTimeout: 1000, // <- this should be the upper bound of your critical section
    delayTime: 50, // <- this is assumed to be long enough for any tab to complete localStorage getItem and setItem
  }
)
  .then((value) => {
    console.log(value);
  })
  .catch((reason) => {
    if (reason.message === 'mutex timeout') {
      // handle scenario where critical section executes too long
    }
  });

Reference

R. Alur and G. Taubenfeld, "Results about fast mutual exclusion"

Pseudocode: https://www.cs.rochester.edu/research/synchronization/pseudocode/fastlock.html#at

Code to be executed by process i. Variables Y and Z are initialized to free and 0, respectively. The delay at line 6 is assumed to be long enough for any process that has already read Y = free in line 3 to complete line 4, and any process that has already set Y in line 4 to complete line 5 and (if not delayed) line 11 (that is the time required to service 2 memory references by all other processors in the system).

  1:     start:
  2:        X := i
  3:        repeat until Y = free
  4:        Y := i
  5:        if X <> i
  6:           { delay }
  7:           if Y <> i
  8:              goto start
  9:           repeat until Z = 0
  10:       else
  11:          Z := 1
  12:    { critical section }
  13:       Z := 0
  14:       if Y = i
  15:          Y := free
  16:    { non-critical section }
  17:       goto start

Readme

Keywords

none

Package Sidebar

Install

npm i webstorage-mutex

Weekly Downloads

0

Version

0.1.1

License

MIT

Unpacked Size

45.2 kB

Total Files

15

Last publish

Collaborators

  • xg-wang