grub-fork/src/clj/grub/websocket.clj

33 lines
1.1 KiB
Clojure
Raw Normal View History

(ns grub.websocket
(:require [grub.db :as db]
[org.httpkit.server :as httpkit]
[clojure.core.async :as a :refer [<! >! chan go]]
[cognitect.transit :as t])
(:import [java.io ByteArrayInputStream ByteArrayOutputStream]))
2014-08-19 20:24:19 +00:00
(defn disconnected [status ws-channel to from]
(println "Client disconnected:" (.toString ws-channel) "with status" status)
(a/close! to)
(a/close! from))
(defn write-msg [msg]
(let [out (ByteArrayOutputStream. 4096)
writer (t/writer out :json)]
(t/write writer msg)
(.toString out)))
(defn read-msg [msg]
(let [in (ByteArrayInputStream. (.getBytes msg))
reader (t/reader in :json)
received (t/read reader)]
received))
2014-08-19 20:24:19 +00:00
(defn add-connected-client! [ws-channel to from]
(println "Client connected:" (.toString ws-channel))
2014-08-19 20:24:19 +00:00
(a/go-loop [] (if-let [event (<! to)]
(do (httpkit/send! ws-channel (write-msg event))
2014-08-19 20:24:19 +00:00
(recur))
(httpkit/close ws-channel)))
(httpkit/on-receive ws-channel #(a/put! from (read-msg %)))
2014-08-19 20:24:19 +00:00
(httpkit/on-close ws-channel #(disconnected % ws-channel to from)))