-
Notifications
You must be signed in to change notification settings - Fork 0
/
Inshin.js
277 lines (169 loc) · 6.14 KB
/
Inshin.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
/**
* 描述:
* - 该脚本实现了一个符合 Promises/A+ 规范的Promise polyfill,名为Inshin。
* - 该脚本中的Inshin仅提供构造器和then方法,而不包括catch、finaly等其他方法。
* - 如果你想获取一个符合ECMAScript规范的Promise polyfill,那么请使用和参阅另
* 一个名为InshinPlus.js的文件。
*/
const PENDING_STATE = "pending";
const FULFILLED_STATE = "fulfilled";
const REJECTED_STATE = "rejected";
/**
* 通过 Promises/A+ 测试的 Promise polyfill。
* @param { Function } execute - 该入参等同于原生Promise的入参。
* @returns { Object } - Inshin实例,等同于Promise实例。
*/
function Inshin ( execute ) {
/* Inshin实例的内部数据。 */
const self = this;
self._state = PENDING_STATE;
self._fulfilled_value = undefined;
self._rejected_value = undefined;
self._fulfilled_events = [];
self._rejected_events = [];
/* */
execute( resolve, reject );
/**
* resolve函数,用于敲定Inshin实例。
* @param { * } fulfilled_value Inshin实例的fulfilled值,代表敲定后的值。
* @returns { undefined } - undefined。
*/
function resolve ( fulfilled_value ) {
if ( self._state !== PENDING_STATE ) return;
self._state = FULFILLED_STATE;
self._fulfilled_value = fulfilled_value;
self._fulfilled_events.forEach( function ( handleThen ) {
const microtask = _ => handleThen( self._fulfilled_value );
globalThis.queueMicrotask( microtask );
} );
};
/**
* rejecte函数,用于拒绝Inshin实例。
* @param { * } rejected_value - Inshin实例的rejected值,代表被拒绝的原因。
* @returns { undefined } - undefined。
*/
function reject ( rejected_value ) {
if ( self._state !== PENDING_STATE ) return;
self._state = REJECTED_STATE;
self._rejected_value = rejected_value;
self._rejected_events.forEach( function ( handleThen ) {
const microtask = _ => handleThen( self._rejected_value );
globalThis.queueMicrotask( microtask );
} );
};
}
/**
* then方法。
* @param { Function } handleFulfilled - Inshin实例的fulfilled订阅函数。
* @param { Function } handleRejected - Inshin实例的rejected订阅函数。
* @returns { Object } - 一个新的Inshin实例或一个新的thenable对象。
*/
Inshin.prototype.then = function then ( handleFulfilled, handleRejected ) {
/* */
let inshinResolve;
let inshinReject;
const inshin = new Inshin( ( resolve, reject ) => {
inshinResolve = resolve;
inshinReject = reject;
} );
/* */
this._fulfilled_events.push( handleFulfilledAndInshin );
if ( this._state === FULFILLED_STATE ) {
const microtask = _ => handleFulfilledAndInshin( this._fulfilled_value );
globalThis.queueMicrotask( microtask );
}
/**
* handleFulfilled函数的代理者。
* @param { * } fulfilled_value - Inshin实例的fulfilled值。
* @returns { undefined } - undefined。
*/
function handleFulfilledAndInshin ( fulfilled_value ) {
if ( typeof handleFulfilled === "function" ) {
let x;
try {
x = handleFulfilled( fulfilled_value );
} catch ( error ) {
inshinReject( error );
}
inshinResolutionProcedure( inshin, x );
} else {
inshinResolve( fulfilled_value );
}
}
/* */
this._rejected_events.push( handleRejectedAndInshin );
if ( this._state === REJECTED_STATE ) {
const microtask = _ => handleRejectedAndInshin( this._rejected_value );
globalThis.queueMicrotask( microtask );
}
/**
* handleRejected函数的代理者
* @param { * } rejected_value - Inshin实例的rejected值。
* @returns { undefined } - undefined。
*/
function handleRejectedAndInshin ( rejected_value ) {
if ( typeof handleRejected === "function" ) {
let x;
try {
x = handleRejected( rejected_value );
} catch ( error ) {
inshinReject( error );
}
inshinResolutionProcedure( inshin, x );
} else {
inshinReject( rejected_value );
}
}
/* [[Resolve]]( inshin, x ) */
/**
* The Promise Resolution Procedure,详见规范的2.3。
* @param { Object } inshin - Inshin实例或thenable对象。
* @param { * } x - handleFulfilled函数或handleRejected函数的返回值。
* @returns { undefined } - undefine。
*/
function inshinResolutionProcedure ( inshin, x ) {
if ( x === null ) {
inshinResolve( x );
return;
}
if ( typeof x !== "object" && typeof x !== "function" ) {
inshinResolve( x );
return;
}
if ( x === inshin ) {
inshinReject( new TypeError( "Chaining cycle detected for promise" ) );
return;
}
if ( typeof x === "object" || typeof x === "function" ) {
let then;
try {
then = x.then;
} catch ( error ) {
inshinReject( error );
}
if ( typeof then === "function" ) {
let is_finish = false;
const resolve = function resolve ( y ) {
if ( is_finish ) return;
is_finish = true;
inshinResolutionProcedure( inshin, y )
};
const reject = function reject ( r ) {
if ( is_finish ) return;
is_finish = true;
inshinReject( r )
};
try {
then.call( x, resolve, reject );
} catch ( error ) {
if ( ! is_finish ) inshinReject( error );
}
return;
}
inshinResolve( x );
}
}
/* */
return inshin;
}
module.exports = Inshin;