2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-05-02 05:48:33 +00:00
|
|
|
// This module is browser compatible.
|
2020-07-29 00:44:34 +00:00
|
|
|
|
2023-12-01 02:19:22 +00:00
|
|
|
/** Error message emitted from the thrown error while mapping. */
|
2024-08-22 06:02:58 +00:00
|
|
|
const ERROR_WHILE_MAPPING_MESSAGE =
|
|
|
|
"Cannot complete the mapping as an error was thrown from an item";
|
2022-05-19 05:05:49 +00:00
|
|
|
|
2020-07-29 00:44:34 +00:00
|
|
|
/**
|
|
|
|
* pooledMap transforms values from an (async) iterable into another async
|
|
|
|
* iterable. The transforms are done concurrently, with a max concurrency
|
|
|
|
* defined by the poolLimit.
|
2021-01-22 11:45:29 +00:00
|
|
|
*
|
|
|
|
* If an error is thrown from `iterableFn`, no new transformations will begin.
|
|
|
|
* All currently executing transformations are allowed to finish and still
|
|
|
|
* yielded on success. After that, the rejections among them are gathered and
|
|
|
|
* thrown by the iterator in an `AggregateError`.
|
|
|
|
*
|
2024-05-22 05:08:36 +00:00
|
|
|
* @example Usage
|
2023-12-01 02:19:22 +00:00
|
|
|
* ```ts
|
2024-04-29 02:57:30 +00:00
|
|
|
* import { pooledMap } from "@std/async/pool";
|
refactor(assert,async,bytes,cli,collections,crypto,csv,data-structures,datetime,dotenv,encoding,expect,fmt,front-matter,fs,html,http,ini,internal,io,json,jsonc,log,media-types,msgpack,net,path,semver,streams,testing,text,toml,ulid,url,uuid,webgpu,yaml): import from `@std/assert` (#5199)
* refactor: import from `@std/assert`
* update
2024-06-30 08:30:10 +00:00
|
|
|
* import { assertEquals } from "@std/assert";
|
2022-11-25 11:40:23 +00:00
|
|
|
*
|
|
|
|
* const results = pooledMap(
|
|
|
|
* 2,
|
|
|
|
* [1, 2, 3],
|
|
|
|
* (i) => new Promise((r) => setTimeout(() => r(i), 1000)),
|
|
|
|
* );
|
|
|
|
*
|
2024-06-03 04:10:27 +00:00
|
|
|
* assertEquals(await Array.fromAsync(results), [1, 2, 3]);
|
2022-11-25 11:40:23 +00:00
|
|
|
* ```
|
|
|
|
*
|
2024-05-22 00:40:43 +00:00
|
|
|
* @typeParam T the input type.
|
|
|
|
* @typeParam R the output type.
|
2021-01-22 11:45:29 +00:00
|
|
|
* @param poolLimit The maximum count of items being processed concurrently.
|
2020-07-29 00:44:34 +00:00
|
|
|
* @param array The input array for mapping.
|
|
|
|
* @param iteratorFn The function to call for every item of the array.
|
2024-05-22 00:40:43 +00:00
|
|
|
* @returns The async iterator with the transformed values.
|
2020-07-29 00:44:34 +00:00
|
|
|
*/
|
|
|
|
export function pooledMap<T, R>(
|
|
|
|
poolLimit: number,
|
|
|
|
array: Iterable<T> | AsyncIterable<T>,
|
|
|
|
iteratorFn: (data: T) => Promise<R>,
|
|
|
|
): AsyncIterableIterator<R> {
|
|
|
|
// Create the async iterable that is returned from this function.
|
|
|
|
const res = new TransformStream<Promise<R>, R>({
|
|
|
|
async transform(
|
|
|
|
p: Promise<R>,
|
|
|
|
controller: TransformStreamDefaultController<R>,
|
2021-04-05 11:49:05 +00:00
|
|
|
) {
|
2022-05-19 05:05:49 +00:00
|
|
|
try {
|
|
|
|
const s = await p;
|
|
|
|
controller.enqueue(s);
|
|
|
|
} catch (e) {
|
|
|
|
if (
|
|
|
|
e instanceof AggregateError &&
|
2023-08-25 09:04:43 +00:00
|
|
|
e.message === ERROR_WHILE_MAPPING_MESSAGE
|
2022-05-19 05:05:49 +00:00
|
|
|
) {
|
|
|
|
controller.error(e as unknown);
|
|
|
|
}
|
|
|
|
}
|
2020-07-29 00:44:34 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
// Start processing items from the iterator
|
2021-04-05 11:49:05 +00:00
|
|
|
(async () => {
|
2020-07-29 00:44:34 +00:00
|
|
|
const writer = res.writable.getWriter();
|
|
|
|
const executing: Array<Promise<unknown>> = [];
|
2021-01-22 11:45:29 +00:00
|
|
|
try {
|
|
|
|
for await (const item of array) {
|
|
|
|
const p = Promise.resolve().then(() => iteratorFn(item));
|
|
|
|
// Only write on success. If we `writer.write()` a rejected promise,
|
|
|
|
// that will end the iteration. We don't want that yet. Instead let it
|
|
|
|
// fail the race, taking us to the catch block where all currently
|
|
|
|
// executing jobs are allowed to finish and all rejections among them
|
|
|
|
// can be reported together.
|
2022-05-19 05:05:49 +00:00
|
|
|
writer.write(p);
|
2021-01-22 11:45:29 +00:00
|
|
|
const e: Promise<unknown> = p.then(() =>
|
|
|
|
executing.splice(executing.indexOf(e), 1)
|
|
|
|
);
|
|
|
|
executing.push(e);
|
|
|
|
if (executing.length >= poolLimit) {
|
|
|
|
await Promise.race(executing);
|
|
|
|
}
|
2020-07-29 00:44:34 +00:00
|
|
|
}
|
2021-01-22 11:45:29 +00:00
|
|
|
// Wait until all ongoing events have processed, then close the writer.
|
|
|
|
await Promise.all(executing);
|
|
|
|
writer.close();
|
|
|
|
} catch {
|
|
|
|
const errors = [];
|
|
|
|
for (const result of await Promise.allSettled(executing)) {
|
2023-08-25 09:04:43 +00:00
|
|
|
if (result.status === "rejected") {
|
2021-01-22 11:45:29 +00:00
|
|
|
errors.push(result.reason);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
writer.write(Promise.reject(
|
2022-05-19 05:05:49 +00:00
|
|
|
new AggregateError(errors, ERROR_WHILE_MAPPING_MESSAGE),
|
2021-01-22 11:45:29 +00:00
|
|
|
)).catch(() => {});
|
2020-07-29 00:44:34 +00:00
|
|
|
}
|
|
|
|
})();
|
2023-05-02 05:48:33 +00:00
|
|
|
// Feature test until browser coverage is adequate
|
|
|
|
return Symbol.asyncIterator in res.readable &&
|
|
|
|
typeof res.readable[Symbol.asyncIterator] === "function"
|
|
|
|
? (res.readable[Symbol.asyncIterator] as () => AsyncIterableIterator<R>)()
|
|
|
|
: (async function* () {
|
|
|
|
const reader = res.readable.getReader();
|
|
|
|
while (true) {
|
|
|
|
const { done, value } = await reader.read();
|
|
|
|
if (done) break;
|
|
|
|
yield value;
|
|
|
|
}
|
|
|
|
reader.releaseLock();
|
|
|
|
})();
|
2020-07-29 00:44:34 +00:00
|
|
|
}
|