-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasFlow.js
186 lines (186 loc) · 4.73 KB
/
asFlow.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
186
var asFlow = (function() {
"use strict";
var spliceAndVerify, serialExecute, parallelExecute, parallelExecute_withLimit;
spliceAndVerify = function(functions) {
var args = [],
i;
for(i = 0; functions.length > i; i++) {
if(functions[i + 1] instanceof Array) {
args[i] = functions.splice(i + 1, 1).shift();
} else {
args[i] = [];
}
if(args[i].length + 1 !== functions[i].length) {
console.log("Warning: Supplied arguments (" + args[i] + ") are not current to those declared in: " + functions[i]);
}
}
return {
args: args,
functions: functions
};
};
serialExecute = function(functions, callback) {
var i, nextFunc, results, spliced;
if(!functions instanceof Array) {
console.log("Error: serialExecute: Array of functions is of wrong type or undefined!");
} else {
if(functions.length === 0) {
console.log("Warning: serialExecute: Array of functions empty.");
}
}
if(!callback) {
console.log("Warning: serialExecute: Callback undefined.");
}
i = 0;
results = [];
spliced = spliceAndVerify(functions);
nextFunc = function() {
var call, currentArgs, currentFunc;
currentFunc = spliced.functions[i];
if(currentFunc) {
currentArgs = spliced.args[i];
call = {
back: function(result) {
results.push(result);
i++;
nextFunc();
},
currentResults: function() {
return results;
},
parentResult: function() {
return results[i - 1];
},
resultByFunction: function(index) {
return results[index];
}
};
currentArgs.push(call);
currentFunc.apply(null, currentArgs);
} else if(callback) {
callback(results);
} else {
return;
}
};
nextFunc();
};
parallelExecute = function(functions, callback) {
var callbacks, i, results, spliced;
if(!functions instanceof Array) {
console.log("Error: parallelExecute: Array of functions is of wrong type or undefined!");
} else {
if(functions.length === 0) {
console.log("Warning: parallelExecute: Array of functions empty.");
}
}
if(!callback) {
console.log("Warning: parallelExecute: Callback undefined.");
}
callbacks = 0;
results = [];
spliced = spliceAndVerify(functions);
for(i = 0; spliced.functions.length > i; i++) {
(function(index) {
var call, currentArgs, currentFunc;
currentFunc = spliced.functions[index];
currentArgs = spliced.args[index];
call = {
back: function(result) {
results[index] = result;
callbacks++;
if(spliced.functions.length === callbacks) {
if(callback) {
callback(results);
} else {
return;
}
}
},
currentResults: function() {
return results;
},
parentResult: function() {
return undefined;
},
resultByFunction: function(index) {
return results[index];
}
};
currentArgs.push(call);
currentFunc.apply(null, currentArgs);
}(i));
}
if(callback) {
callback(results);
}
};
parallelExecute_withLimit = function(functions, limit, callback) {
var callbacks, i, nextFunc, results, spliced;
if(!functions instanceof Array) {
console.log("Error: parallelExecute_withLimit: Array of functions is of wrong type or undefined!");
} else {
if(functions.length === 0) {
console.log("Warning: parallelExecute_withLimit: Array of functions empty.");
}
}
if(typeof limit !== "number") {
console.log("Error: parallelExecute_withLimit: Limit is of wrong type or undefined.");
return;
} else {
if(limit % 1 !== 0) {
console.log("Error: parallelExecute_withLimit: Limit is not an integer.");
return;
}
}
if(!callback) {
console.log("Warning: parallelExecute: Callback undefined.");
}
callbacks = 1;
i = 0;
results = [];
spliced = spliceAndVerify(functions);
nextFunc = function() {
callbacks--;
if(callbacks === 0 && spliced.functions.length === i) {
if(callback) {
callback(results);
} else {
return;
}
}
while(spliced.functions[i] && callbacks < limit) {
(function(index) {
var call, currentArgs, currentFunc;
currentFunc = spliced.functions[index];
currentArgs = spliced.args[index];
call = {
back: function(result) {
results[index] = result;
nextFunc();
},
currentResults: function() {
return results;
},
parentResult: function() {
return undefined;
},
resultByFunction: function(index) {
return results[index];
}
};
currentArgs.push(call);
callbacks++;
currentFunc.apply(null, currentArgs);
}(i));
i++;
}
};
nextFunc();
};
return {
serialExecute: serialExecute,
parallelExecute: parallelExecute,
parallelExecute_withLimit: parallelExecute_withLimit
};
}());