-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-promise.js
183 lines (172 loc) · 5.09 KB
/
simple-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
/*
Promise构造函数字段说明:
value: Promsie对象成功的值或者拒绝的原因
status: 表示Promise对象的状态, 有三种情况(pending,resolved,rejected)
task: 是一个数组,Promise对象每执行一次then方法就会向task中push如下相应信息
resolved: then方法的第一个参数
rejected: then方法的第二个参数
promise: then方法返回的新Promise对象
isdone: 用于标记resolved或rejected是否已经执行过了
*/
function Promise(func) {
this.value = undefined;
this.status = "pending";
this.tasks = [];
if (isFunction(func)) {
try {
func.call(this, onFulfilled.bind(this), onRejected.bind(this));
} catch (err) {
onRejected.bind(this);
}
} else {
throw TypeError("Promise构造函数必须传函数");
}
}
/*
* then方法做了如下处理:
* 1. status为resolved或rejected,则执行task中相应的队列
* 2. 向task中添加任务
*/
Promise.prototype.then = function (resolveFunc, rejectFunc) {
var promise = new Promise(function () {}),
self = this;
this.tasks.push({
resolved: resolveFunc,
rejected: rejectFunc,
promise: promise,
isdone: false
});
if (this.status == "resolved" || this.status == 'rejected') {
asyncExcuteTasks.call(self, this.status);
promise.value = this.value;
}
return promise;
};
/**
* 执行resolved对应的队列
* @param {*} value
*/
function onFulfilled(value) {
if (this.status == "pending") {
asyncExcuteTasks.call(this, "resolved");
this.status = "resolved";
this.value = value;
}
}
function onRejected(value) {
if (this.status == "pending") {
asyncExcuteTasks.call(this, "rejected");
this.status = "rejected";
this.value = value;
}
}
/**
* 异步执行fn,这里简单的用setTimeout进行了模拟
* @param {Function} fn
*/
function asyncExcute(fn) {
setTimeout(function () {
fn();
}, 0);
}
/**
* 根据Promise的状态值status来按照顺序异步执行tasks中相应的队列
* @param {String} status
*/
function asyncExcuteTasks(status) {
var tasks = this.tasks,
self = this;
asyncExcute(function () {
var taskLength = tasks.length,
i = -1,
func,
result;
while (i < taskLength - 1) {
i++;
// 只能被调用一次(防止当promise对象不为pending时,重复执行之前通过then方法注册的函数)
if (tasks[i].isdone) {
continue;
}
tasks[i].isdone = true;
func = tasks[i][status];
if (isFunction(func)) {
try {
result = func(self.value);
// resolvePromise会根据resolve传入的val,来执行onFulfilled或者onRejected(如果val为Promise对象或者thenable对象,则根据val的状态来执行相应的队列)
resolvePromise(tasks[i].promise, result);
} catch (err) {
onRejected.call(tasks[i].promise, err);
}
} else {
// eg: promise2 = promise1.then(onFulfilled, onRejected);
// onFulfilled或者onRejected不是函数,则promise2的值和状态会和promise1保持一致(实际达到的效果等价于忽略了这个then方法)
if (status == "resolved") {
// 如果是resolved状态,则以promise1的value值进行resolved
resolvePromise(tasks[i].promise, self.value);
} else {
onRejected.call(tasks[i].promise, self.value);
}
}
}
});
}
function isFunction(func) {
return typeof func == "function";
}
/**
* @param {Promise} pro: then方法返回的Promise对象
* @param {*} x: then方法接受2个函数作为参数,这2个函数return的值即为x
*/
function resolvePromise(pro, x) {
var isdone = false;
if (x == pro) {
onRejected.call(pro, TypeError("不能相等"));
} else if (isFunction(x) || (x != null && typeof x == "object")) {
// x为Promise对象或者thenable对象
try {
var then = x.then;
} catch (err) {
onRejected.call(pro, err);
return;
}
try {
if (isFunction(then)) {
then.call(
x,
function (y) {
if (isdone) {
/*
isdone用于确保thenable对象的状态只能改变一次(不可逆).
由于第三方的thenable的实现,状态可能可以任意改变,promise A+规范对此进行了限制,对于可能执行多次的地方都需要防止重复执行
可能多次执行的3处地方: 传入then内的2个方法 + 执行then时抛出异常
*/
return;
}
isdone = true;
resolvePromise(pro, y);
},
function (y) {
if (isdone) {
return;
}
isdone = true;
onRejected.call(pro, y);
}
);
} else {
onFulfilled.call(pro, x);
}
} catch (err) {
if (isdone) {
// 如果状态已经改变(不是pending),就算抛出异常也直接无视
return;
}
isdone = true;
onRejected.call(pro, err);
}
} else {
// x为其他值
onFulfilled.call(pro, x);
}
}
module.exports = Promise;