2021-02-12 16:01:59 +01:00
|
|
|
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
;;
|
2022-09-20 23:23:22 +02:00
|
|
|
;; Copyright (c) KALEIDOS INC
|
2021-02-12 16:01:59 +01:00
|
|
|
|
|
|
|
(ns app.msgbus
|
|
|
|
"The msgbus abstraction implemented using redis as underlying backend."
|
|
|
|
(:require
|
2022-03-18 12:36:42 +01:00
|
|
|
[app.common.data :as d]
|
2021-02-22 23:40:42 +01:00
|
|
|
[app.common.exceptions :as ex]
|
2021-09-29 16:39:25 +02:00
|
|
|
[app.common.logging :as l]
|
2021-02-12 16:01:59 +01:00
|
|
|
[app.common.spec :as us]
|
2022-03-18 12:36:42 +01:00
|
|
|
[app.common.transit :as t]
|
2021-02-24 13:08:44 +01:00
|
|
|
[app.config :as cfg]
|
2022-08-30 14:26:54 +02:00
|
|
|
[app.redis :as redis]
|
2022-03-18 12:36:42 +01:00
|
|
|
[app.util.async :as aa]
|
2021-02-22 23:14:53 +01:00
|
|
|
[app.util.time :as dt]
|
2022-03-18 12:36:42 +01:00
|
|
|
[app.worker :as wrk]
|
2021-02-12 16:01:59 +01:00
|
|
|
[clojure.core.async :as a]
|
|
|
|
[clojure.spec.alpha :as s]
|
|
|
|
[integrant.core :as ig]
|
2022-08-30 14:26:54 +02:00
|
|
|
[promesa.core :as p]))
|
2021-02-12 16:01:59 +01:00
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(set! *warn-on-reflection* true)
|
|
|
|
|
2021-03-22 12:13:11 +01:00
|
|
|
(def ^:private prefix (cfg/get :tenant))
|
|
|
|
|
|
|
|
(defn- prefix-topic
|
|
|
|
[topic]
|
|
|
|
(str prefix "." topic))
|
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(def ^:private xform-prefix-topic
|
|
|
|
(map (fn [obj] (update obj :topic prefix-topic))))
|
2021-03-07 20:30:41 +01:00
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(declare ^:private redis-connect)
|
|
|
|
(declare ^:private redis-disconnect)
|
|
|
|
(declare ^:private redis-pub)
|
|
|
|
(declare ^:private redis-sub)
|
|
|
|
(declare ^:private redis-unsub)
|
2022-09-05 19:00:20 +02:00
|
|
|
(declare ^:private start-io-loop!)
|
|
|
|
(declare ^:private subscribe-to-topics)
|
|
|
|
(declare ^:private unsubscribe-channels)
|
2021-02-12 16:01:59 +01:00
|
|
|
|
|
|
|
(defmethod ig/prep-key ::msgbus
|
|
|
|
[_ cfg]
|
2022-03-18 12:36:42 +01:00
|
|
|
(merge {:buffer-size 128
|
|
|
|
:timeout (dt/duration {:seconds 30})}
|
|
|
|
(d/without-nils cfg)))
|
2021-02-12 16:01:59 +01:00
|
|
|
|
2022-09-05 19:00:20 +02:00
|
|
|
(s/def ::cmd-ch ::aa/channel)
|
|
|
|
(s/def ::rcv-ch ::aa/channel)
|
|
|
|
(s/def ::pub-ch ::aa/channel)
|
|
|
|
(s/def ::state ::us/agent)
|
|
|
|
(s/def ::pconn ::redis/connection)
|
|
|
|
(s/def ::sconn ::redis/connection)
|
|
|
|
(s/def ::msgbus
|
|
|
|
(s/keys :req [::cmd-ch ::rcv-ch ::pub-ch ::state ::pconn ::sconn ::wrk/executor]))
|
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(s/def ::buffer-size ::us/integer)
|
2021-02-22 19:10:05 +01:00
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(defmethod ig/pre-init-spec ::msgbus [_]
|
2022-08-30 14:26:54 +02:00
|
|
|
(s/keys :req-un [::buffer-size ::redis/timeout ::redis/redis ::wrk/executor]))
|
2021-03-22 12:13:11 +01:00
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(defmethod ig/init-key ::msgbus
|
2022-09-05 19:00:20 +02:00
|
|
|
[_ {:keys [buffer-size executor] :as cfg}]
|
2022-08-30 14:26:54 +02:00
|
|
|
(l/info :hint "initialize msgbus" :buffer-size buffer-size)
|
2022-03-18 12:36:42 +01:00
|
|
|
(let [cmd-ch (a/chan buffer-size)
|
|
|
|
rcv-ch (a/chan (a/dropping-buffer buffer-size))
|
|
|
|
pub-ch (a/chan (a/dropping-buffer buffer-size) xform-prefix-topic)
|
2022-09-05 19:00:20 +02:00
|
|
|
state (agent {})
|
|
|
|
msgbus (-> (redis-connect cfg)
|
2022-03-18 12:36:42 +01:00
|
|
|
(assoc ::cmd-ch cmd-ch)
|
|
|
|
(assoc ::rcv-ch rcv-ch)
|
|
|
|
(assoc ::pub-ch pub-ch)
|
2022-09-05 19:00:20 +02:00
|
|
|
(assoc ::state state)
|
|
|
|
(assoc ::wrk/executor executor))]
|
|
|
|
|
|
|
|
(us/verify! ::msgbus msgbus)
|
|
|
|
|
|
|
|
(set-error-handler! state #(l/error :cause % :hint "unexpected error on agent" ::l/async false))
|
|
|
|
(set-error-mode! state :continue)
|
|
|
|
(start-io-loop! msgbus)
|
|
|
|
|
|
|
|
msgbus))
|
|
|
|
|
|
|
|
(defn sub!
|
|
|
|
[{:keys [::state ::wrk/executor] :as cfg} & {:keys [topic topics chan]}]
|
|
|
|
(let [done-ch (a/chan)
|
|
|
|
topics (into [] (map prefix-topic) (if topic [topic] topics))]
|
|
|
|
(l/debug :hint "subscribe" :topics topics)
|
|
|
|
(send-via executor state subscribe-to-topics cfg topics chan done-ch)
|
|
|
|
done-ch))
|
2022-03-18 12:36:42 +01:00
|
|
|
|
2022-09-05 19:00:20 +02:00
|
|
|
(defn pub!
|
|
|
|
[{::keys [pub-ch]} & {:as params}]
|
|
|
|
(a/go
|
|
|
|
(a/>! pub-ch params)))
|
2021-02-12 16:01:59 +01:00
|
|
|
|
2022-09-05 19:00:20 +02:00
|
|
|
(defn purge!
|
|
|
|
[{:keys [::state ::wrk/executor] :as msgbus} chans]
|
|
|
|
(l/trace :hint "purge" :chans (count chans))
|
|
|
|
(let [done-ch (a/chan)]
|
|
|
|
(send-via executor state unsubscribe-channels msgbus chans done-ch)
|
|
|
|
done-ch))
|
2021-02-12 16:01:59 +01:00
|
|
|
|
|
|
|
(defmethod ig/halt-key! ::msgbus
|
2022-09-05 19:00:20 +02:00
|
|
|
[_ msgbus]
|
|
|
|
(redis-disconnect msgbus)
|
|
|
|
(a/close! (::cmd-ch msgbus))
|
|
|
|
(a/close! (::rcv-ch msgbus))
|
|
|
|
(a/close! (::pub-ch msgbus)))
|
2021-03-22 12:13:11 +01:00
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
;; --- IMPL
|
2021-03-22 12:13:11 +01:00
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(defn- redis-connect
|
2022-08-30 14:26:54 +02:00
|
|
|
[{:keys [timeout redis] :as cfg}]
|
|
|
|
(let [pconn (redis/connect redis :timeout timeout)
|
|
|
|
sconn (redis/connect redis :type :pubsub :timeout timeout)]
|
2022-09-05 19:00:20 +02:00
|
|
|
{::pconn pconn
|
|
|
|
::sconn sconn}))
|
2021-03-07 20:30:41 +01:00
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(defn- redis-disconnect
|
2022-08-30 14:26:54 +02:00
|
|
|
[{:keys [::pconn ::sconn] :as cfg}]
|
|
|
|
(redis/close! pconn)
|
|
|
|
(redis/close! sconn))
|
2021-03-07 20:30:41 +01:00
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(defn- conj-subscription
|
|
|
|
"A low level function that is responsible to create on-demand
|
|
|
|
subscriptions on redis. It reuses the same subscription if it is
|
|
|
|
already established. Intended to be executed in agent."
|
|
|
|
[nsubs cfg topic chan]
|
|
|
|
(let [nsubs (if (nil? nsubs) #{chan} (conj nsubs chan))]
|
|
|
|
(when (= 1 (count nsubs))
|
|
|
|
(l/trace :hint "open subscription" :topic topic ::l/async false)
|
|
|
|
(redis-sub cfg topic))
|
|
|
|
nsubs))
|
|
|
|
|
|
|
|
(defn- disj-subscription
|
|
|
|
"A low level function responsible on removing subscriptions. The
|
:wrench: Fix typos in source code
Found via `codespell -q 3 -S *.po,./frontend/yarn.lock -L childs,clen,fpr,inflight,ody,ot,ro,te,trys,ue`
2022-10-02 14:00:19 -04:00
|
|
|
subscription is truly removed from redis once no single local
|
2022-03-18 12:36:42 +01:00
|
|
|
subscription is look for it. Intended to be executed in agent."
|
|
|
|
[nsubs cfg topic chan]
|
|
|
|
(let [nsubs (disj nsubs chan)]
|
|
|
|
(when (empty? nsubs)
|
|
|
|
(l/trace :hint "close subscription" :topic topic ::l/async false)
|
|
|
|
(redis-unsub cfg topic))
|
|
|
|
nsubs))
|
|
|
|
|
|
|
|
(defn- subscribe-to-topics
|
|
|
|
"Function responsible to attach local subscription to the
|
|
|
|
state. Intended to be used in agent."
|
|
|
|
[state cfg topics chan done-ch]
|
|
|
|
(aa/with-closing done-ch
|
|
|
|
(let [state (update state :chans assoc chan topics)]
|
|
|
|
(reduce (fn [state topic]
|
|
|
|
(update-in state [:topics topic] conj-subscription cfg topic chan))
|
|
|
|
state
|
|
|
|
topics))))
|
|
|
|
|
|
|
|
(defn- unsubscribe-single-channel
|
:wrench: Fix typos in source code
Found via `codespell -q 3 -S *.po,./frontend/yarn.lock -L childs,clen,fpr,inflight,ody,ot,ro,te,trys,ue`
2022-10-02 14:00:19 -04:00
|
|
|
"Auxiliary function responsible on removing a single local
|
2022-03-18 12:36:42 +01:00
|
|
|
subscription from the state."
|
|
|
|
[state cfg chan]
|
|
|
|
(let [topics (get-in state [:chans chan])
|
|
|
|
state (update state :chans dissoc chan)]
|
|
|
|
(reduce (fn [state topic]
|
|
|
|
(update-in state [:topics topic] disj-subscription cfg topic chan))
|
|
|
|
state
|
|
|
|
topics)))
|
|
|
|
|
|
|
|
(defn- unsubscribe-channels
|
|
|
|
"Function responsible from detach from state a seq of channels,
|
|
|
|
useful when client disconnects or in-bulk unsubscribe
|
|
|
|
operations. Intended to be executed in agent."
|
|
|
|
[state cfg channels done-ch]
|
|
|
|
(aa/with-closing done-ch
|
|
|
|
(reduce #(unsubscribe-single-channel %1 cfg %2) state channels)))
|
|
|
|
|
|
|
|
(defn- create-listener
|
|
|
|
[rcv-ch]
|
2022-08-30 14:26:54 +02:00
|
|
|
(redis/pubsub-listener
|
|
|
|
:on-message (fn [_ topic message]
|
|
|
|
;; There are no back pressure, so we use a slidding
|
|
|
|
;; buffer for cases when the pubsub broker sends
|
|
|
|
;; more messages that we can process.
|
|
|
|
(let [val {:topic topic :message (t/decode message)}]
|
|
|
|
(when-not (a/offer! rcv-ch val)
|
|
|
|
(l/warn :msg "dropping message on subscription loop"))))))
|
2022-03-18 12:36:42 +01:00
|
|
|
|
2022-09-05 19:00:20 +02:00
|
|
|
(defn start-io-loop!
|
|
|
|
[{:keys [::sconn ::rcv-ch ::pub-ch ::state ::wrk/executor] :as cfg}]
|
2022-08-30 14:26:54 +02:00
|
|
|
(redis/add-listener! sconn (create-listener rcv-ch))
|
2022-03-18 12:36:42 +01:00
|
|
|
(letfn [(send-to-topic [topic message]
|
|
|
|
(a/go-loop [chans (seq (get-in @state [:topics topic]))
|
|
|
|
closed #{}]
|
|
|
|
(if-let [ch (first chans)]
|
|
|
|
(if (a/>! ch message)
|
|
|
|
(recur (rest chans) closed)
|
|
|
|
(recur (rest chans) (conj closed ch)))
|
|
|
|
(seq closed))))
|
|
|
|
|
|
|
|
(process-incoming [{:keys [topic message]}]
|
|
|
|
(a/go
|
|
|
|
(when-let [closed (a/<! (send-to-topic topic message))]
|
|
|
|
(send-via executor state unsubscribe-channels cfg closed nil))))
|
|
|
|
]
|
|
|
|
|
|
|
|
(a/go-loop []
|
|
|
|
(let [[val port] (a/alts! [pub-ch rcv-ch])]
|
|
|
|
(cond
|
|
|
|
(nil? val)
|
|
|
|
(do
|
:wrench: Fix typos in source code
Found via `codespell -q 3 -S *.po,./frontend/yarn.lock -L childs,clen,fpr,inflight,ody,ot,ro,te,trys,ue`
2022-10-02 14:00:19 -04:00
|
|
|
(l/trace :hint "stopping io-loop, nil received")
|
2022-03-18 12:36:42 +01:00
|
|
|
(send-via executor state (fn [state]
|
|
|
|
(->> (vals state)
|
|
|
|
(mapcat identity)
|
|
|
|
(filter some?)
|
|
|
|
(run! a/close!))
|
|
|
|
nil)))
|
|
|
|
|
|
|
|
(= port rcv-ch)
|
|
|
|
(do
|
|
|
|
(a/<! (process-incoming val))
|
|
|
|
(recur))
|
|
|
|
|
|
|
|
(= port pub-ch)
|
|
|
|
(let [result (a/<! (redis-pub cfg val))]
|
|
|
|
(when (ex/exception? result)
|
|
|
|
(l/error :hint "unexpected error on publishing" :message val
|
|
|
|
:cause result))
|
|
|
|
(recur)))))))
|
|
|
|
|
|
|
|
(defn- redis-pub
|
|
|
|
"Publish a message to the redis server. Asynchronous operation,
|
|
|
|
intended to be used in core.async go blocks."
|
|
|
|
[{:keys [::pconn] :as cfg} {:keys [topic message]}]
|
|
|
|
(let [message (t/encode message)
|
2022-08-30 14:26:54 +02:00
|
|
|
res (a/chan 1)]
|
|
|
|
(-> (redis/publish! pconn topic message)
|
2022-03-18 12:36:42 +01:00
|
|
|
(p/finally (fn [_ cause]
|
2022-08-30 14:26:54 +02:00
|
|
|
(when (and cause (redis/open? pconn))
|
2022-03-18 12:36:42 +01:00
|
|
|
(a/offer! res cause))
|
2021-02-12 16:01:59 +01:00
|
|
|
(a/close! res))))
|
|
|
|
res))
|
|
|
|
|
2022-03-18 12:36:42 +01:00
|
|
|
(defn redis-sub
|
|
|
|
"Create redis subscription. Blocking operation, intended to be used
|
|
|
|
inside an agent."
|
|
|
|
[{:keys [::sconn] :as cfg} topic]
|
2022-08-30 14:26:54 +02:00
|
|
|
(redis/subscribe! sconn topic))
|
2022-03-18 12:36:42 +01:00
|
|
|
|
|
|
|
(defn redis-unsub
|
|
|
|
"Removes redis subscription. Blocking operation, intended to be used
|
|
|
|
inside an agent."
|
|
|
|
[{:keys [::sconn] :as cfg} topic]
|
2022-08-30 14:26:54 +02:00
|
|
|
(redis/unsubscribe! sconn topic))
|