-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
185 lines (173 loc) · 5.76 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/* jslint node: true */
"use strict";
global.modulesCache = global.modulesCache || {};
if(global.modulesCache['procedure']){
module.exports = global.modulesCache['procedure'];
return;
}
module.exports = global.modulesCache['procedure'] = Procedure;
function Procedure(){
this.jobs = [];
this.main = new Queue();
this.main.main = true;
this.main.procedure = this;
}
Procedure.prototype.add = function(name,func){
var procedure = this;
var args = Array.prototype.slice.call(arguments);
if(typeof name !== "string"){
func = name;
name = "Job-"+procedure.jobs.length;
args = args.slice(1);
} else {
args = args.slice(2);
}
procedure.jobs.push({name:name,func:func,args:args});
return procedure;
};
Procedure.prototype.queue = function(){
return this.resolve('queue');
};
Procedure.prototype.race = function(){
return this.resolve('race');
};
Procedure.prototype.resolve = function(mode){
var procedure = this;
var resolve;
resolve = mode === 'race' ? new Race() : new Queue();
resolve.jobs = procedure.jobs;
resolve.procedure = procedure;
procedure.jobs = [];
resolve.handler = function(error){
var data = Array.prototype.slice.call(arguments);
if(error){
procedure.main.handler.apply(procedure.main,data);
} else {
procedure.main.done.apply(procedure.main,[undefined].concat(data));
}
};
procedure.main.jobs.push({func:resolve.launch.bind(resolve),args:[]});
return procedure;
};
Procedure.prototype.launch = function(handler){
var procedure = this;
procedure.main.handler = handler;
procedure.main.jobs = procedure.main.jobs.concat(procedure.jobs);
procedure.main.launch();
};
Procedure.Race = Race;
function Race(){
this.handler = undefined;
this.jobs = [];
this.results = {};
this.errors = [];
}
Race.prototype.launch = function(){
var data = Array.prototype.slice.call(arguments);
data = data.slice(0,-1);
if(this.jobs.length===0){
this.handler(undefined,this.results);
} else {
for(var i = 0,l=this.jobs.length;i<l;i++){
var job = this.jobs[i];
launcher(this,job.name,job.func,job.args);
}
}
};
Race.prototype.done = function Done(name,error){
var data = Array.prototype.slice.call(arguments).slice(1);
if(error){
this.errors.push(error);
data = data.slice(1);
}
this.results[name] = data.slice(1);
if(this.jobs.length===Object.keys(this.results).length){
if(this.errors.length>0){
this.handler(this.errors);
} else {
this.handler(undefined,this.results);
}
}
};
Procedure.Queue = Queue;
function Queue(){
this.handler = undefined;
this.jobs = [];
}
Queue.prototype.launch = function(){
var data = Array.prototype.slice.call(arguments);
if(!this.main){
data = data.slice(0,-1);
}
if(this.jobs.length > 0){
var job = this.jobs[0];
launcher(this,job.name,job.func,data.concat(job.args));
} else {
this.handler.apply(this,data);
}
};
Queue.prototype.done = function Done(name,error){
var data = Array.prototype.slice.call(arguments).slice(1);
if(error){
error = [error];
this.handler.apply(this,[error].concat(data.slice(1)));
} else {
this.jobs.shift();
if(this.jobs.length > 0){
var job = this.jobs[0];
launcher(this,job.name,job.func,data.slice(1).concat(job.args));
} else {
this.handler.apply(this,data);
}
}
};
function launcher(context,name,func,args){
var catcher = context.done.bind(context,name);
catcher.result = catcher.bind(context,undefined);
try {
func.apply(context,args.concat([catcher]));
} catch (error) {
error.message = "Procedure error in '"+name+"' > "+error.name+" "+error.message;
error.name = "ProcedureError";
catcher(error);
}
}
/* ---------------------------- *
function fileLoader(path,done){ // File loader simulation.
console.log("Opening file:'"+path+"'...");
if(path==='./secundary2.key'){
//throw new Error("Ops!"); // Error simulation
}
done.result({file:path}); // Finalize task & return result
}
var shared = {}; // Shared closure
var procedure = new Procedure(); // Create procedure
procedure
.add("Load primary",fileLoader,'./primary.key') // Add new task
.add("Load secundary",fileLoader,'./secundary.key') // Add new task
.add("Load shared",fileLoader,'./shared.key') // Add new task
.race() // Resolve tasks in race mode
.add(function(files,done){ // Add new task
shared.files1 = files;
console.log(shared);
done(); // Finalize task
})
.queue() // Resolve tasks in queue mode
.add("Load primary",fileLoader,'./primary2.key') // Add new task
.add("Load secundary",fileLoader,'./secundary2.key') // Add new task
.add("Load shared",fileLoader,'./shared2.key') // Add new task
.race() // Resolve tasks in race mode
.add(function(files,done){ // Add new task
shared.files2 = files;
console.log(shared);
done.result(shared); // Finalize task & return result
})
.launch(function(errors){ // Procedure controller.
if(errors){ // Array of Errors || undefined
console.log("END[ERROR]",arguments);
} else {
console.log("END[OK]",arguments);
}
})
;
/* ---------------------------- */