2013-08-05 15:19:52 +00:00
|
|
|
(ns grub.websocket
|
2013-09-30 10:11:59 +00:00
|
|
|
(:require [grub.db :as db]
|
2013-08-05 15:19:52 +00:00
|
|
|
[org.httpkit.server :as httpkit]
|
2013-09-30 10:11:59 +00:00
|
|
|
[clojure.core.async :as a :refer [<! >! chan go]]))
|
2013-08-05 15:19:52 +00:00
|
|
|
|
|
|
|
(def incoming-events (chan))
|
|
|
|
|
2013-09-30 10:11:59 +00:00
|
|
|
(def connected-clients (atom []))
|
2013-08-05 15:19:52 +00:00
|
|
|
|
|
|
|
(def ws-channel-id-count (atom 0))
|
|
|
|
|
2013-09-30 10:11:59 +00:00
|
|
|
(defn get-unique-ws-id []
|
|
|
|
(swap! ws-channel-id-count inc))
|
2013-08-05 15:19:52 +00:00
|
|
|
|
2013-09-30 10:11:59 +00:00
|
|
|
(defn add-connected-client! [ws-channel]
|
|
|
|
(let [ws-channel-id (get-unique-ws-id)
|
|
|
|
client-chan (chan)]
|
|
|
|
(swap! connected-clients
|
|
|
|
conj
|
|
|
|
{:id ws-channel-id :channel client-chan})
|
|
|
|
[ws-channel-id client-chan]))
|
2013-08-05 15:19:52 +00:00
|
|
|
|
2013-09-05 09:39:10 +00:00
|
|
|
|
2013-09-30 10:11:59 +00:00
|
|
|
(defn add-event-to-incoming-channel [raw-event ws-channel-id]
|
2013-08-05 15:19:52 +00:00
|
|
|
(let [parsed-event (read-string raw-event)
|
|
|
|
event (assoc parsed-event :ws-channel ws-channel-id)]
|
|
|
|
(println "Received event" event)
|
2013-09-30 10:11:59 +00:00
|
|
|
(go (>! incoming-events event))))
|
|
|
|
|
|
|
|
(defn forward-client-events-to-others [ws-channel ws-channel-id]
|
|
|
|
(httpkit/on-receive ws-channel
|
|
|
|
#(add-event-to-incoming-channel % ws-channel-id)))
|
|
|
|
|
|
|
|
(defn forward-other-events-to-client [c ws-channel]
|
|
|
|
(a/go-loop [] (let [event (<! c)
|
|
|
|
event-str (str event)]
|
|
|
|
(println "Send to client '" event-str "'")
|
|
|
|
(httpkit/send! ws-channel event-str))
|
|
|
|
(recur)))
|
|
|
|
|
2013-08-05 15:19:52 +00:00
|
|
|
|
2013-09-30 10:11:59 +00:00
|
|
|
(defn send-current-grubs-and-recipes-to-client [client-chan]
|
|
|
|
(a/pipe (db/get-current-grubs-as-events) client-chan false)
|
|
|
|
(a/pipe (db/get-current-recipes-as-events) client-chan false))
|
|
|
|
|
|
|
|
(defn setup-new-connection [ws-channel]
|
|
|
|
(let [[ws-channel-id client-chan] (add-connected-client! ws-channel)]
|
|
|
|
(println "Channel connected:" (.toString ws-channel))
|
|
|
|
(forward-client-events-to-others ws-channel ws-channel-id)
|
|
|
|
(forward-other-events-to-client client-chan ws-channel)
|
|
|
|
(send-current-grubs-and-recipes-to-client client-chan)))
|
2013-08-05 15:19:52 +00:00
|
|
|
|
|
|
|
(defn websocket-handler [request]
|
2013-09-30 10:11:59 +00:00
|
|
|
(httpkit/with-channel request ws-channel (setup-new-connection ws-channel)))
|
|
|
|
|
|
|
|
(defn get-other-clients [my-ws-channel-id]
|
|
|
|
(filter #(not (= (:id %) my-ws-channel-id))
|
|
|
|
@connected-clients))
|
|
|
|
|
|
|
|
(defn push-event-to-others [orig-event]
|
|
|
|
(let [my-ws-channel-id (:ws-channel orig-event)
|
|
|
|
event (dissoc orig-event :ws-channel)]
|
|
|
|
(go (doseq [{ch :channel} (get-other-clients my-ws-channel-id)]
|
|
|
|
(>! ch event)))))
|
|
|
|
|
|
|
|
(defn pass-received-events-to-clients-and-db [db-chan]
|
|
|
|
(let [in' (a/mult incoming-events)
|
|
|
|
to-others (chan)
|
|
|
|
to-database (chan)]
|
|
|
|
(a/tap in' to-others)
|
|
|
|
(a/tap in' to-database)
|
|
|
|
(a/go-loop [] (let [event (<! to-others)]
|
|
|
|
(push-event-to-others event)
|
|
|
|
(recur)))
|
|
|
|
(a/pipe to-database (a/map> #(dissoc % :ws-channel) db-chan))))
|