chainjs
An asynchronous callback's flow controller, chaining async function callbacks. Async methods calling flow make easy. I use it in node.js server and webapp.
Install
npm install chainjs --save
Usage
:two_men_holding_hands: :two_men_holding_hands: :two_men_holding_hands:
Chainjs can be used in node.js or browser . Use in node as below:
var Chain = require('chainjs')
Chain(function (chain, data) {
console.log(data)
chain.next();
})
.then(function (chain) {
chain.nextTo('branchStep')
})
.then(function (chain, data) {
var count = chain.data('count' || 0)
if (count > 2) {
chain.next('thenStep')
} else {
setTimeout(function () {
chain.data('count', count ++).retry()
})
}
})
.branch('branchStep', function (chain) {
chain.next('branchStep')
})
.then(function (chain, from) {
if (from == 'branchStep') {
}
chain.next()
})
.final(function (chain, data) {
})
.start({name: 'Chainjs'})
:walking: :walking: :walking: :walking: :walking: :walking:
Look at the diagram of above chain-flow:
API
Each step's handler has been passed the chain
instance as the first argument.
-
Global API
- Chain( func, ..., funcN )
- then( func, ..., funcN )
- some( func, ..., funcN )
- each( func, ..., funcN )
- branch( branchName, func )
- context( ctx )
- thunk( func )
- start( data, ..., dataN )
- final( finalHandler )
-
Instance API
- next( data, ..., dataN )
- nextTo( branchName, data, ..., dataN )
- wait( time, data, ..., dataN )
- end( data, ..., dataN )
- data( [key] [, value] )
- retry()
- destroy()
Chain(func, ..., funcN)
:running: API Reference
Create a Chain instance.
- if arguments is not empty, it will be call .then() with arguments automatically.
- else If first param is type of
Array
, then first param will be passed as arguments.
Chain(func );
Chain([func, func1, funcN])
.then(func, ..., funcN)
:running: API Reference
Define a chain step, if a then step has multiple functions, it need each function call chain.next() to goto next step.
Chain().then(funcA1, funcA2, funcA3).then(func1)
If first argument is type of Array
, that argument will be passed as arguments.
Chain.then([func, ..., funcN])
Chain.then(func, ..., funcN)
.retry()
:running: API Reference
Call current function once again (use for recursive).
var flag
Chain(function (chain, data) {
if (flag) {
return chain.next()
}
flag = true
chain.retry()
}).start('value')
.some(func, ..., funcN)
:running: API Reference
Define a chain step, if a then step has multiple functions, it need any function of this step calling chain.next() only once to goto next step.
Chain(func).some(function (chain) {
setTimeout(function () {
chain.next()
}, 100)
}, function (chain) {
setTimeout(function () {
chain.next()
}, 1000)
}, function (chain) {
setTimeout(function () {
chain.next()
}, 500)
}).then(function () {
})
If first argument is type of Array
, that argument will be passed as arguments.
Chain.some([func1, func2, ..., funcN])
Chain.some(func1, func2, ..., funcN)
.each(func, ..., funcN)
:running: API Reference
Define a chain step, call each handlers of this step in sequence. In this step, each function call chain.next() to call next function. In orders from left to right of arguments
Chain(func).then(func1).each(funcA1, funcA2, funcA3)
If first argument is type of Array
, that argument will be passed as arguments.
Chain.each([func1, func2, ..., funcN])
Chain.each(func1, func2, ..., funcN)
.start(data, ..., dataN)
:running: API Reference
Start running the chain, and could pass data to initial step.
Chain(function (chain, initData) {
}).then(func1).then(func2).start(initData);
.destroy()
:running: API Reference
Destroy the chain, mark the chain as ending and destroy local variable, but don't calling final funtions.
notice: after use chain.destroy(), the chain contiue execute current step handler,
so use with return for stoping current step excution
Chain(func).then(function (chain) {
chain.destroy();
return;
}).start();
.next(data, ..., dataN)
:running: API Reference
Go to next step
chain.next();
chain.next(data);
.branch(branchName, func)
:running: API Reference
Define a branch step, only using chain.nextTo(branchName)
to goto branch step.
Call chain.next()
from last step will skip next branch step.
-------------o
| ↓
o----o----->o---->o---->o
Chain(function (chain) {
chain.nextTo('branchA')
chain.next()
}).then(function (chain) {
throw new Error('This step should not be called')
}).branch('branchA', function (chain) {
chain.next()
}).branch('branchB', function (chain) {
throw new Error('This step should not be called')
}).final(function (chain) {
}).start()
.nextTo(branchName, data, ..., dataN)
:running: API Reference
Go to next branch.
Chain(function (chain) {
chain.nextTo('branchA')
}).then(function (chain) {
throw new Error('This step should not be called')
}).branch('branchA', function (chain) {
chain.next()
})
Notice: .nextTo() should not goto previous step
Chain(function (chain) {
chain.next()
}).branch('branchA', function (chain) {
chain.next()
}).then(function (chain) {
chain.nextTo('branchA')
}).start()
.wait(time, data, ..., dataN)
:running: API Reference
Waiting some time then call next step.Just a shortcut of setTimeout(function () {chain.next()}, time)
.
chain.wait(5000, data);
.end(data, ..., dataN)
:running: API Reference
End up chain steps, mark the chain as ending, for cross steps data sharing
chain.end();
chain.end(data);
.final(finalHandler)
:running: API Reference
Define a final step, witch will be invoke after call chain.end() or all step of this chain is over.
Chain(function (chain) {
...
chain.end('ending initial step')
}).then(function (chain) {
...
chain.next('step 2 calling')
}).final(function (chain, data) {
console.log(data)
})
.data([key] [, value])
:running: API Reference
Saving data in current chain
chain.data('param', param);
chain.data({
'param1': param1,
'param2': param2,
'param3': param3
});
chain.data('param');
var chainData = chain.data();
.thunk(func)
:running: API Reference
Turn a regular node function into chainjs thunk.
function handler1 (param, callback) {
callback(param + 'Chain through step1, ')
}
function handler2 (param, callback) {
callback(param + 'step2')
}
Chain()
.then(Chain.thunk(handler1))
.then(Chain.thunk(handler2))
.final(function (chain, data) {
console.log(data);
})
.start('Initialize! ')
.context(ctx)
:running: API Reference
Binding "this" to specified ctx for all functions of each step of current chain.
Chain(function () {
console.log(this);
})
.then(function () {
console.log(this);
})
.context('abc')
.start()
Run Testing
npm test
Change Log
See change logs
License
The MIT License (MIT)
Copyright (c) 2013 guankaishe
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.