This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
promises.ts
242 lines (189 loc) · 6.91 KB
/
promises.ts
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
namespace Kurve {
// Adapted from the original source: https://github.com/DirtyHairy/typescript-deferred
export class Error {
public status: number;
public statusText: string;
public text: string;
public other: any;
}
function DispatchDeferred(closure: () => void) {
setTimeout(closure, 0);
}
enum PromiseState { Pending, ResolutionInProgress, Resolved, Rejected }
export interface PromiseCallback<T> {
(error: Error, result?: T): void;
}
class Client {
constructor(
private _dispatcher: (closure: () => void) => void,
private _successCB: any,
private _errorCB: any
) {
this.result = new Deferred<any, any>(_dispatcher);
}
resolve(value: any, defer: boolean): void {
if (typeof (this._successCB) !== 'function') {
this.result.resolve(value);
return;
}
if (defer) {
this._dispatcher(() => this._dispatchCallback(this._successCB, value));
} else {
this._dispatchCallback(this._successCB, value);
}
}
reject(error: any, defer: boolean): void {
if (typeof (this._errorCB) !== 'function') {
this.result.reject(error);
return;
}
if (defer) {
this._dispatcher(() => this._dispatchCallback(this._errorCB, error));
} else {
this._dispatchCallback(this._errorCB, error);
}
}
private _dispatchCallback(callback: (arg: any) => any, arg: any): void {
var result: any,
then: any,
type: string;
try {
result = callback(arg);
this.result.resolve(result);
} catch (err) {
this.result.reject(err);
return;
}
}
result: Deferred<any, any>;
}
export class Deferred<T, E> {
private _dispatcher: (closure: () => void)=> void;
constructor();
constructor(dispatcher: (closure: () => void) => void);
constructor(dispatcher?: (closure: () => void) => void) {
if (dispatcher)
this._dispatcher = dispatcher;
else
this._dispatcher = DispatchDeferred;
this.promise = new Promise<T, E>(this);
}
private DispatchDeferred(closure: () => void) {
setTimeout(closure, 0);
}
then(successCB: any, errorCB: any): any {
if (typeof (successCB) !== 'function' && typeof (errorCB) !== 'function') {
return this.promise;
}
var client = new Client(this._dispatcher, successCB, errorCB);
switch (this._state) {
case PromiseState.Pending:
case PromiseState.ResolutionInProgress:
this._stack.push(client);
break;
case PromiseState.Resolved:
client.resolve(this._value, true);
break;
case PromiseState.Rejected:
client.reject(this._error, true);
break;
}
return client.result.promise;
}
resolve(value?: T): Deferred<T, E>;
resolve(value?: Promise<T, E>): Deferred<T, E>;
resolve(value?: any): Deferred<T, E> {
if (this._state !== PromiseState.Pending) {
return this;
}
return this._resolve(value);
}
private _resolve(value: any): Deferred<T, E> {
var type = typeof (value),
then: any,
pending = true;
try {
if (value !== null &&
(type === 'object' || type === 'function') &&
typeof (then = value.then) === 'function') {
if (value === this.promise) {
throw new TypeError('recursive resolution');
}
this._state = PromiseState.ResolutionInProgress;
then.call(value,
(result: any): void => {
if (pending) {
pending = false;
this._resolve(result);
}
},
(error: any): void => {
if (pending) {
pending = false;
this._reject(error);
}
}
);
} else {
this._state = PromiseState.ResolutionInProgress;
this._dispatcher(() => {
this._state = PromiseState.Resolved;
this._value = value;
var i: number,
stackSize = this._stack.length;
for (i = 0; i < stackSize; i++) {
this._stack[i].resolve(value, false);
}
this._stack.splice(0, stackSize);
});
}
} catch (err) {
if (pending) {
this._reject(err);
}
}
return this;
}
reject(error?: E): Deferred<T, E> {
if (this._state !== PromiseState.Pending) {
return this;
}
return this._reject(error);
}
private _reject(error?: any): Deferred<T, E> {
this._state = PromiseState.ResolutionInProgress;
this._dispatcher(() => {
this._state = PromiseState.Rejected;
this._error = error;
var stackSize = this._stack.length,
i = 0;
for (i = 0; i < stackSize; i++) {
this._stack[i].reject(error, false);
}
this._stack.splice(0, stackSize);
});
return this;
}
promise: Promise<T, E>;
private _stack: Array<Client> = [];
private _state = PromiseState.Pending;
private _value: T;
private _error: any;
}
export class Promise<T, E> {
constructor(private _deferred: Deferred<T, E>) { }
then<R>(
successCallback?: (result: T) => R,
errorCallback?: (error: E) => R
);
then(successCallback: any, errorCallback: any): any {
return this._deferred.then(successCallback, errorCallback);
}
fail<R>(
errorCallback?: (error: E) => R
);
fail(errorCallback: any): any {
return this._deferred.then(undefined, errorCallback);
}
}
}