« get me outta code hell

aggregate: receiveAggregate, aggregate.receive - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2024-05-06 09:59:09 -0300
committer(quasar) nebula <qznebula@protonmail.com>2024-05-06 09:59:09 -0300
commitc8ebe6b73dfec575f765029845bcbc77ed7e1db2 (patch)
tree883325d5105e9cca87f3fb1095b364ef0a3c195a
parentf2d97c17d274078075e4d3d514afd89a86c061d8 (diff)
aggregate: receiveAggregate, aggregate.receive
-rw-r--r--src/util/aggregate.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/util/aggregate.js b/src/util/aggregate.js
index 5ba80b5..2e4d9de 100644
--- a/src/util/aggregate.js
+++ b/src/util/aggregate.js
@@ -91,6 +91,22 @@ export function openAggregate({
     return aggregate.callAsync(() => withAggregateAsync(...args));
   };
 
+  aggregate.receive = (results) => {
+    if (!Array.isArray(results)) {
+      throw new Error(`Expected an array`);
+    }
+
+    return results.map(({aggregate, result}) => {
+      try {
+        aggregate.close();
+      } catch (error) {
+        errors.push(error);
+      }
+
+      return result;
+    });
+  };
+
   aggregate.map = (...args) => {
     const parent = aggregate;
     const {result, aggregate: child} = mapAggregate(...args);
@@ -148,6 +164,21 @@ function _reorganizeAggregateArguments(arg1, arg2, desire = v => typeof v === 'f
   }
 }
 
+// Takes a list of {aggregate, result} objects, puts all the aggregates into
+// a new aggregate, and puts all the results into an array, returning both on
+// a new {aggregate, result} object. This is essentailly the generalized
+// composable version of functions like mapAggregate or filterAggregate.
+export function receiveAggregate(arg1, arg2) {
+  const [array, opts] = _reorganizeAggregateArguments(arg1, arg2, Array.isArray);
+  if (!array) {
+    throw new Error(`Expected an array`);
+  }
+
+  const aggregate = openAggregate(opts);
+  const result = aggregate.receive(array);
+  return {aggregate, result};
+}
+
 // Performs an ordinary array map with the given function, collating into a
 // results array (with errored inputs filtered out) and an error aggregate.
 //