promise实现要点

promises-aplus-tests测试
要点:

  1. 异步处理
  2. 兼容其他实现处理
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
// 【标准】
// 1. 仅包含then的规范,返回新promise
// 2. 不同promise实现可以相互调用
type Status = "pending" | "resolved" | "rejected";

function resolvePromise(
promise2: Promise, // 本地返回的
x, // 执行结果
resolve: Function,
reject: Function
) {
let then;
let thenCalledOrThrow = false;

if (promise2 === x) {
return reject(new TypeError("Chaining cycle detected for promise!"));
}

if (x instanceof Promise) {
if (x.status === "pending") {
//because x could resolved by a Promise Object
x.then(function (v) {
resolvePromise(promise2, v, resolve, reject);
}, reject);
} else {
//but if it is resolved, it will never resolved by a Promise Object but a static value;
x.then(resolve, reject);
}
return;
}

if (x !== null && (typeof x === "object" || typeof x === "function")) {
try {
then = x.then; //because x.then could be a getter
if (typeof then === "function") {
then.call(
x,
function rs(y) {
if (thenCalledOrThrow) return;
thenCalledOrThrow = true;
return resolvePromise(promise2, y, resolve, reject);
},
function rj(r) {
if (thenCalledOrThrow) return;
thenCalledOrThrow = true;
return reject(r);
}
);
} else {
resolve(x);
}
} catch (e) {
if (thenCalledOrThrow) return;
thenCalledOrThrow = true;
return reject(e);
}
} else {
resolve(x);
}
}

export class Promise {
status: Status = "pending";
data: any; // Promise的值
onResolvedCallback: Function[] = [];
onRejectedCallback: Function[] = [];

constructor(executor: { (resolve: Function, reject: Function): any }) {
const resolve = (value: any) => {
if (value instanceof Promise) {
return value.then(resolve, reject);
}
setTimeout(() => {
if (this.status === "pending") {
this.status = "resolved";
this.data = value;
this.onResolvedCallback.forEach((fn) => fn(value));
}
});
};
const reject = (value: any) => {
setTimeout(() => {
// 异步执行所有的回调函数
if (this.status === "pending") {
this.status = "rejected";
this.data = value;
this.onRejectedCallback.forEach((fn) => fn(value));
}
});
};

try {
// 考虑到执行executor的过程中有可能出错,所以我们用try/catch块给包起来,并且在出错后以catch到的值reject掉这个Promise
executor(resolve, reject); // 执行executor
} catch (e) {
reject(e);
}
}

then(onResolved: Function, onRejected: Function) {
// 根据标准,如果then的参数不是function,则我们需要忽略它,此处以如下方式处理
onResolved = typeof onResolved === "function" ? onResolved : (v) => v;
onRejected =
typeof onRejected === "function"
? onRejected
: (v) => {
throw v;
};
let promise2: Promise;

if (this.status === "resolved") {
return (promise2 = new Promise((resolve, reject) => {
setTimeout(() => {
// 异步执行onResolved
try {
const x = onResolved(this.data);
resolvePromise(promise2, x, resolve, reject);
} catch (reason) {
reject(reason);
}
});
}));
}

if (this.status === "rejected") {
return (promise2 = new Promise((resolve, reject) => {
setTimeout(() => {
// 异步执行onRejected
try {
const x = onRejected(this.data);
resolvePromise(promise2, x, resolve, reject);
} catch (reason) {
reject(reason);
}
});
}));
}

if (this.status === "pending") {
return (promise2 = new Promise((resolve, reject) => {
this.onResolvedCallback.push((value) => {
try {
const x = onResolved(value);
resolvePromise(promise2, x, resolve, reject);
} catch (r) {
reject(r);
}
});

this.onRejectedCallback.push((reason) => {
try {
const x = onRejected(reason);
resolvePromise(promise2, x, resolve, reject);
} catch (r) {
reject(r);
}
});
}));
}
}

catch(onRejected) {
return this.then(null, onRejected);
}

static deferred = () => {
const dfd: any = {};
dfd.promise = new Promise(function (resolve, reject) {
dfd.resolve = resolve;
dfd.reject = reject;
});
return dfd;
};
static defer = Promise.deferred;
}
// module.exports = Promise;