/*
* 非同期マネージャー
* 著者 : jser.me
*
* 使用法:
* var asyncMg = require('./AsyncManager') ;
* asyncMg
* .push(function(next){
* some_aysnc_method().on('success'{
* next();
*次へ( );
。 * })
* })
* .push( ... )
* .run() //
を実行 * .on('success', function() {
* allThings_is_down();
* });
function typeOf( obj ){
return Object.prototype.toString.call( obj ).match(/[object ([^]]*)]/)[1];
}
function AsyncManager( arg ){
this.execArrys = [];
this.push( arg );
}
//システムによって提供される継承メソッドを使用します。
require('util').inherits( AsyncManager, require('events').EventEmitter );
//正常に実行された関数の数をマークします
AsyncManager.prototype.succCount = 0;
//
AsyncManager.prototype.push = function( arg ) {
を追加します
var This = this;
if( typeOf(arg) == 'Array' ){
arg.forEach( function(v,i){
This.execArrys.push( v );
});
これを返します。 // チェーン 1
};
//
AsyncManager.prototype.run = function(){
var self = this;
を実行します
If( this.succCount == this.execArrys.length ) {
//すべての関数が正常に実行された後にイベントがトリガーされます
this.emit( 'success' );
} else {
this.execArrys[ this.succCount ]( self.run.bind( self ) );
}
this.succCount ;
return this; // チェーン 1
};
exports = module.exports = function( arg ){
return new AsyncManager( arg );
}