-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsort.ts
57 lines (51 loc) · 1.32 KB
/
sort.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
import type { Result } from "./types.ts";
import { promisify } from "./promisify.ts";
/** settleしたPromiseから順番に返す関数
*
* @param list Promiseのリスト
*/
export async function* sortSettled<T, E = unknown>(
list: Promise<T>[],
): AsyncGenerator<Result<T, E>, void, unknown> {
const [shift, push] = promisify<Result<T, E>>();
/** Promiseが解決したらqueueにいれるよう仕掛けておく */
for (const item of list) {
item.then((value) =>
push({
success: true,
value,
})
)
.catch((reason: E) =>
push({
success: false,
reason,
})
);
}
/** 終わったものから順次返す */
for (let i = 0; i < list.length; i++) {
yield await shift();
}
}
/** 解決したPromiseから順番に返す関数
*
* 例外は全て無視する
*
* @param list Promiseのリスト
*/
export async function* sort<T>(
list: Promise<T>[],
): AsyncGenerator<T, void, unknown> {
const [shift, push] = promisify<T>();
let count = 0;
/** Promiseが解決したらqueueにいれるよう仕掛けておく */
for (const item of list) {
count++;
item.then((value) => push(value)).catch(() => count--);
}
/** 終わったものから順次返す */
for (let i = 0; i < count; i++) {
yield await shift();
}
}