-
Notifications
You must be signed in to change notification settings - Fork 16
/
promise.js
547 lines (505 loc) · 15.2 KB
/
promise.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
// Kris Zyp
// this is based on the CommonJS spec for promises:
// http://wiki.commonjs.org/wiki/Promises
// Includes convenience functions for promises, much of this is taken from Tyler Close's ref_send
// and Kris Kowal's work on promises.
// // MIT License
// A typical usage:
// A default Promise constructor can be used to create a self-resolving deferred/promise:
// var Promise = require("promise").Promise;
// var promise = new Promise();
// asyncOperation(function(){
// Promise.resolve("succesful result");
// });
// promise -> given to the consumer
//
// A consumer can use the promise
// promise.then(function(result){
// ... when the action is complete this is executed ...
// },
// function(error){
// ... executed when the promise fails
// });
//
// Alternately, a provider can create a deferred and resolve it when it completes an action.
// The deferred object a promise object that provides a separation of consumer and producer to protect
// promises from being fulfilled by untrusted code.
// var defer = require("promise").defer;
// var deferred = defer();
// asyncOperation(function(){
// deferred.resolve("succesful result");
// });
// deferred.promise -> given to the consumer
//
// Another way that a consumer can use the promise (using promise.then is also allowed)
// var when = require("promise").when;
// when(promise,function(result){
// ... when the action is complete this is executed ...
// },
// function(error){
// ... executed when the promise fails
// });
var enqueue = (typeof process !== "undefined" && process.nextTick) || function(func){
func();
};
var freeze = Object.freeze || function(){};
/**
* Default constructor that creates a self-resolving Promise. Not all promise implementations
* need to use this constructor.
*/
var Promise = function(canceller){
};
/**
* Promise implementations must provide a "then" function.
*/
Promise.prototype.then = function(resolvedCallback, errorCallback, progressCallback){
throw new TypeError("The Promise base class is abstract, this function must be implemented by the Promise implementation");
};
/**
* If an implementation of a promise supports a concurrency model that allows
* execution to block until the promise is resolved, the wait function may be
* added.
*/
/**
* If an implementation of a promise can be cancelled, it may add this function
*/
// Promise.prototype.cancel = function(){
// };
Promise.prototype.get = function(propertyName){
return this.then(function(value){
return value[propertyName];
});
};
Promise.prototype.put = function(propertyName, value){
return this.then(function(object){
return object[propertyName] = value;
});
};
Promise.prototype.call = function(functionName /*, args */){
return this.then(function(value){
return value[propertyName].apply(value, Array.prototype.slice.call(arguments, 1));
});
};
/** Dojo/NodeJS methods*/
Promise.prototype.addCallback = function(callback){
return this.then(callback);
};
Promise.prototype.addErrback = function(errback){
return this.then(function(){}, errback);
};
/*Dojo methods*/
Promise.prototype.addBoth = function(callback){
return this.then(callback, callback);
};
Promise.prototype.addCallbacks = function(callback, errback){
return this.then(callback, errback);
};
/*NodeJS method*/
Promise.prototype.wait = function(){
return exports.wait(this);
};
Deferred.prototype = Promise.prototype;
// A deferred provides an API for creating and resolving a promise.
exports.Promise = exports.Deferred = exports.defer = defer;
function defer(){
return new Deferred();
}
var contextHandler = exports.contextHandler = {};
function Deferred(canceller){
var result, finished, isError, waiting = [], handled;
var promise = this.promise = new Promise();
var currentContextHandler = contextHandler.getHandler && contextHandler.getHandler();
function notifyAll(value){
if(finished){
throw new Error("This deferred has already been resolved");
}
result = value;
finished = true;
for(var i = 0; i < waiting.length; i++){
notify(waiting[i]);
}
}
function notify(listener){
var func = (isError ? listener.error : listener.resolved);
if(func){
handled = true;
enqueue(function(){
if(currentContextHandler){
currentContextHandler.resume();
}
try{
var newResult = func(result);
if(newResult && typeof newResult.then === "function"){
newResult.then(listener.deferred.resolve, listener.deferred.reject);
return;
}
listener.deferred.resolve(newResult);
}
catch(e){
listener.deferred.reject(e);
}
finally{
if(currentContextHandler){
currentContextHandler.suspend();
}
}
});
}
else{
if(isError){
if (listener.deferred.reject(result, true)) {
handled = true;
}
}
else{
listener.deferred.resolve.apply(listener.deferred, result);
}
}
}
// calling resolve will resolve the promise
this.resolve = this.callback = this.emitSuccess = function(value){
notifyAll(value);
};
// calling error will indicate that the promise failed
var reject = this.reject = this.errback = this.emitError = function(error, dontThrow){
isError = true;
notifyAll(error);
if (!dontThrow) {
enqueue(function () {
if (!handled) {
throw error;
}
});
}
return handled;
};
// call progress to provide updates on the progress on the completion of the promise
this.progress = function(update){
for(var i = 0; i < waiting.length; i++){
var progress = waiting[i].progress;
progress && progress(update);
}
}
// provide the implementation of the promise
this.then = promise.then = function(resolvedCallback, errorCallback, progressCallback){
var returnDeferred = new Deferred(promise.cancel);
var listener = {resolved: resolvedCallback, error: errorCallback, progress: progressCallback, deferred: returnDeferred};
if(finished){
notify(listener);
}
else{
waiting.push(listener);
}
return returnDeferred.promise;
};
var timeout;
if(typeof setTimeout !== "undefined") {
this.timeout = function (ms) {
if (ms === undefined) {
return timeout;
}
timeout = ms;
setTimeout(function () {
if (!finished) {
if (promise.cancel) {
promise.cancel(new Error("timeout"));
}
else {
reject(new Error("timeout"));
}
}
}, ms);
return promise;
};
}
if(canceller){
this.cancel = promise.cancel = function(){
var error = canceller();
if(!(error instanceof Error)){
error = new Error(error);
}
reject(error);
}
}
freeze(promise);
};
function perform(value, async, sync){
try{
if(value && typeof value.then === "function"){
value = async(value);
}
else{
value = sync(value);
}
if(value && typeof value.then === "function"){
return value;
}
var deferred = new Deferred();
deferred.resolve(value);
return deferred.promise;
}catch(e){
var deferred = new Deferred();
deferred.reject(e);
return deferred.promise;
}
}
/**
* Promise manager to make it easier to consume promises
*/
/**
* Registers an observer on a promise.
* @param value promise or value to observe
* @param resolvedCallback function to be called with the resolved value
* @param rejectCallback function to be called with the rejection reason
* @param progressCallback function to be called when progress is made
* @return promise for the return value from the invoked callback
*/
exports.whenPromise = function(value, resolvedCallback, rejectCallback, progressCallback){
return perform(value, function(value){
return value.then(resolvedCallback, rejectCallback, progressCallback);
},
function(value){
return resolvedCallback(value);
});
};
/**
* Registers an observer on a promise.
* @param value promise or value to observe
* @param resolvedCallback function to be called with the resolved value
* @param rejectCallback function to be called with the rejection reason
* @param progressCallback function to be called when progress is made
* @return promise for the return value from the invoked callback or the value if it
* is a non-promise value
*/
exports.when = function(value, resolvedCallback, rejectCallback, progressCallback){
if(value && typeof value.then === "function"){
return exports.whenPromise(value, resolvedCallback, rejectCallback, progressCallback);
}
return resolvedCallback(value);
};
/**
* Gets the value of a property in a future turn.
* @param target promise or value for target object
* @param property name of property to get
* @return promise for the property value
*/
exports.get = function(target, property){
return perform(target, function(target){
return target.get(property);
},
function(target){
return target[property]
});
};
/**
* Invokes a method in a future turn.
* @param target promise or value for target object
* @param methodName name of method to invoke
* @param args array of invocation arguments
* @return promise for the return value
*/
exports.post = function(target, methodName, args){
return perform(target, function(target){
return target.call(property, args);
},
function(target){
return target[methodName].apply(target, args);
});
};
/**
* Sets the value of a property in a future turn.
* @param target promise or value for target object
* @param property name of property to set
* @param value new value of property
* @return promise for the return value
*/
exports.put = function(target, property, value){
return perform(target, function(target){
return target.put(property, value);
},
function(target){
return target[property] = value;
});
};
/**
* Waits for the given promise to finish, blocking (and executing other events)
* if necessary to wait for the promise to finish. If target is not a promise
* it will return the target immediately. If the promise results in an reject,
* that reject will be thrown.
* @param target promise or value to wait for.
* @return the value of the promise;
*/
exports.wait = function(target){
if(!queue){
throw new Error("Can not wait, the event-queue module is not available");
}
if(target && typeof target.then === "function"){
var isFinished, isError, result;
target.then(function(value){
isFinished = true;
result = value;
},
function(error){
isFinished = true;
isError = true;
result = error;
});
while(!isFinished){
queue.processNextEvent(true);
}
if(isError){
throw result;
}
return result;
}
else{
return target;
}
};
/**
* Takes an array of promises and returns a promise that is fulfilled once all
* the promises in the array are fulfilled
* @param array The array of promises
* @return the promise that is fulfilled when all the array is fulfilled, resolved to the array of results
*/
exports.all = function(array){
var deferred = new Deferred();
if(!(array instanceof Array)){
array = Array.prototype.slice.call(arguments);
}
var fulfilled = 0, length = array.length;
var results = [];
array.forEach(function(promise, index){
exports.when(promise, each, each);
function each(value){
results[index] = value;
fulfilled++;
if(fulfilled === length){
deferred.resolve(results);
}
}
});
return deferred.promise;
};
/**
* Takes an array of promises and returns a promise that is fulfilled when the first
* promise in the array of promises is fulfilled
* @param array The array of promises
* @return a promise that is fulfilled with the value of the value of first promise to be fulfilled
*/
exports.first = function(array){
var deferred = new Deferred();
if(!(array instanceof Array)){
array = Array.prototype.slice.call(arguments);
}
var fulfilled;
array.forEach(function(promise, index){
exports.when(promise, function(value){
if (!fulfilled) {
fulfilled = true;
deferred.resolve(value);
}
},
function(error){
if (!fulfilled) {
fulfilled = true;
deferred.resolve(error);
}
});
});
return deferred.promise;
};
/**
* Takes an array of asynchronous functions (that return promises) and
* executes them sequentially. Each funtion is called with the return value of the last function
* @param array The array of function
* @param startingValue The value to pass to the first function
* @return the value returned from the last function
*/
exports.seq = function(array, startingValue){
array = array.concat(); // make a copy
var deferred = new Deferred();
function next(value){
var nextAction = array.shift();
if(nextAction){
exports.when(nextAction(value), next, deferred.reject);
}
else {
deferred.resolve(value);
}
}
next(startingValue);
return deferred.promise;
};
/**
* Delays for a given amount of time and then fulfills the returned promise.
* @param milliseconds The number of milliseconds to delay
* @return A promise that will be fulfilled after the delay
*/
if(typeof setTimeout !== "undefined") {
exports.delay = function(milliseconds) {
var deferred = new Deferred();
setTimeout(function(){
deferred.resolve();
}, milliseconds);
return deferred.promise;
};
}
/**
* Runs a function that takes a callback, but returns a Promise instead.
* @param func node compatible async function which takes a callback as its last argument
* @return promise for the return value from the callback from the function
*/
exports.execute = function(asyncFunction){
var args = Array.prototype.slice.call(arguments, 1);
var deferred = new Deferred();
args.push(function(error, result){
if(error) {
deferred.emitError(error);
}
else {
if(arguments.length > 2){
// if there are multiple success values, we return an array
Array.prototype.shift.call(arguments, 1);
deferred.emitSuccess(arguments);
}
else{
deferred.emitSuccess(result);
}
}
});
asyncFunction.apply(this, args);
return deferred.promise;
};
/**
* Converts a Node async function to a promise returning function
* @param func node compatible async function which takes a callback as its last argument
* @return A function that returns a promise
*/
exports.convertNodeAsyncFunction = function(asyncFunction, callbackNotDeclared){
var arity = asyncFunction.length;
if(callbackNotDeclared){
arity++;
}
return function(){
var deferred = new Deferred();
arguments.length = arity;
arguments[arity - 1] = function(error, result){
if(error) {
deferred.emitError(error);
}
else {
if(arguments.length > 2){
// if there are multiple success values, we return an array
Array.prototype.shift.call(arguments, 1);
deferred.emitSuccess(arguments);
}
else{
deferred.emitSuccess(result);
}
}
};
asyncFunction.apply(this, arguments);
return deferred.promise;
};
};