co-using

1.0.0 • Public • Published

Resource management with co.

npm travis license js-standard-style

Features

  • automatic allocation and destruction of resources
  • co/koa friendly
  • easy schema for resource management
  • builtin synchronization resources - mutex, semaphore and read/write lock
// actual implementation from using.js
function using (resource, gen) {
  return co(function * () {
    let handle = yield resource.acquire()
    try {
      return yield gen(handle)
    } finally {
      resource.release(handle)
    }
  })
}

Example

let using = require('co-using')
 
// Define how connections are created and destroyed
let connectionPool = {
  acquire: function () {
    return new Connection().openAsync()
  },
  release: function (connection) {
    connection.close()
  }
}
 
// Use a connection, ensuring it gets destroyed
using(connectionPool, function * (connection) {
  yield connection.queryAsync(...)
})

Api

require('co-using')(<resource manager>, <co 4 compatible generator>)

A resource manager is any object implementing acquire and release. The result of acquire should be a thenable-

let resourceManager = {
  acquire: function () { return Promise.resolve(someValue) },
  release: function (resource) { ... }
}

Extras

Mutexes (mutual exclusion), semaphores (limited parallel access) and read write locks are synchronization primitives that follows the acquire/release pattern very well. For your convenience, they are all included.

All primitives can be named and optionally scoped to a naming container. This is useful when you want to control access to resources not known in advance, such as files or database records. Memory is reclaimed for named resources not active in any execution path.

Use DEBUG=co-using:* node --harmony <...> to get debug output.

Mutex

Mutually exclusive access to generator code.

let using = require('co-using')
let mutex = require('co-using/mutex')
let m = mutex()
using(m, function * () { ... })

A mutex can also be (globally) named,

let m = mutex('mutex number one')

A mutex can also be named in a specific scope,

let mutexNamingScope = {}
let m = mutex('mutex number one', mutexNamingScope)

Semaphore

Limited parallel access to generator code.

let using = require('co-using')
let semaphore = require('co-using/semaphore')
let sem = semaphore(10)
using(sem, function * () { ... })

A semaphore can also be (globally) named,

let sem = semaphore(10, 'semaphore number one')

A semaphore can also be named in a specific scope,

let semaphoreNamingScope = {}
let sem = semaphore('semaphore number one', semaphoreNamingScope)

Read/Write lock

Parallel access to generator code, with the following restrictions

  • if any writer is active, no other readers or writers can be active
  • if any reader is active, only other readers up to specified limit can be active
  • scheduling is fair, i.e. access is granted in the requested order
let using = require('co-using')
let rwlock = require('co-using/rwlock')
let l = rwlock()
using(l.read(), function * () { ... })
using(l.write(), function * () { ... })

It is possible to specify max concurrency (default is many) of readers (note that for writers this is always 1).

let l = rwlock(10)

A read/write lock can also be (globally) named,

let l = rwlock(10, 'lock number one')

A read/write lock can also be named in a specific scope,

let lockNamingScope = {}
let lock = rwlock(10, 'lock number one', lockNamingScope)

Package Sidebar

Install

npm i co-using

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • jlarsson