|
11 | 11 | [clojure.core.async.flow :as-alias flow]
|
12 | 12 | [clojure.core.async.flow.spi :as spi]
|
13 | 13 | [clojure.core.async.flow.impl.graph :as graph]
|
| 14 | + [clojure.core.async.impl.dispatch :as disp] |
14 | 15 | [clojure.walk :as walk]
|
15 | 16 | [clojure.datafy :as datafy])
|
16 | 17 | (:import [java.util.concurrent Future Executors ExecutorService TimeUnit]
|
17 | 18 | [java.util.concurrent.locks ReentrantLock]))
|
18 | 19 |
|
19 | 20 | (set! *warn-on-reflection* true)
|
20 | 21 |
|
21 |
| -;;TODO - something specific, e.g. make aware of JDK version and vthreads |
22 |
| -(defonce mixed-exec clojure.lang.Agent/soloExecutor) |
23 |
| -(defonce io-exec clojure.lang.Agent/soloExecutor) |
24 |
| -(defonce compute-exec clojure.lang.Agent/pooledExecutor) |
25 |
| - |
26 | 22 | (defn datafy [x]
|
27 | 23 | (condp instance? x
|
28 | 24 | clojure.lang.Fn (-> x str symbol)
|
|
32 | 28 |
|
33 | 29 | (defn futurize ^Future [f {:keys [exec]}]
|
34 | 30 | (fn [& args]
|
35 |
| - (let [^ExecutorService e (case exec |
36 |
| - :compute compute-exec |
37 |
| - :io io-exec |
38 |
| - :mixed mixed-exec |
39 |
| - exec)] |
| 31 | + (let [^ExecutorService e (if (instance? ExecutorService exec) |
| 32 | + exec |
| 33 | + (disp/executor-for exec))] |
40 | 34 | (.submit e ^Callable #(apply f args)))))
|
41 | 35 |
|
42 | 36 | (defn prep-proc [ret pid {:keys [proc, args, chan-opts] :or {chan-opts {}}}]
|
|
53 | 47 |
|
54 | 48 | (defn create-flow
|
55 | 49 | "see lib ns for docs"
|
56 |
| - [{:keys [procs conns mixed-exec io-exec compute-exec] |
57 |
| - :or {mixed-exec mixed-exec, io-exec io-exec, compute-exec compute-exec}}] |
| 50 | + [{:keys [procs conns mixed-exec io-exec compute-exec]}] |
58 | 51 | (let [lock (ReentrantLock.)
|
59 | 52 | chans (atom nil)
|
60 | 53 | execs {:mixed mixed-exec :io io-exec :compute compute-exec}
|
61 |
| - _ (assert (every? #(instance? ExecutorService %) (vals execs)) |
| 54 | + _ (assert (every? #(or (nil? %) (instance? ExecutorService %)) (vals execs)) |
62 | 55 | "mixed-exe, io-exec and compute-exec must be ExecutorServices")
|
63 | 56 | pdescs (reduce-kv prep-proc {} procs)
|
64 | 57 | allopts (fn [iok] (into {} (mapcat #(map (fn [[k opts]] [[(:pid %) k] opts]) (iok %)) (vals pdescs))))
|
|
136 | 129 | resolver (reify spi/Resolver
|
137 | 130 | (get-write-chan [_ coord]
|
138 | 131 | (write-chan coord))
|
139 |
| - (get-exec [_ context] (execs context))) |
| 132 | + (get-exec [_ context] (or (execs context) (disp/executor-for context)))) |
140 | 133 | start-proc
|
141 | 134 | (fn [{:keys [pid proc args ins outs]}]
|
142 | 135 | (try
|
|
0 commit comments