Skip to content

Commit 32fd7cd

Browse files
committed
Send traces to channel
1 parent b828d68 commit 32fd7cd

File tree

5 files changed

+249
-78
lines changed

5 files changed

+249
-78
lines changed

.dir-locals.el

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
((clojure-mode
2+
(cider-clojure-cli-aliases . "test")))

server/src/lsp4clj/server.clj

+15-15
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
(logger/debug "received unexpected notification" method))
129129

130130
(defrecord ChanServer [parallelism
131-
trace?
131+
trace-ch
132132
input
133133
output
134134
^java.time.Clock clock
@@ -162,7 +162,7 @@
162162
now (.instant clock)
163163
req (json-rpc.messages/request id method body)
164164
pending-request (pending-request id method now this)]
165-
(when trace? (logger/debug (trace/sending-request id method body now)))
165+
(some-> trace-ch (async/put! (trace/sending-request id method body now)))
166166
;; Important: record request before sending it, so it is sure to be
167167
;; available during receive-response.
168168
(swap! pending-requests* assoc id pending-request)
@@ -172,37 +172,37 @@
172172
(send-notification [_this method body]
173173
(let [now (.instant clock)
174174
notif (json-rpc.messages/request method body)]
175-
(when trace? (logger/debug (trace/sending-notification method body now)))
175+
(some-> trace-ch (async/put! (trace/sending-notification method body now)))
176176
;; respect back pressure from clients that are slow to read; (go (>!)) will not suffice
177177
(async/>!! output notif)))
178178
(receive-response [_this {:keys [id] :as resp}]
179-
(if-let [{:keys [id method p started]} (get @pending-requests* id)]
180-
(let [now (.instant clock)
181-
error (:error resp)
182-
result (:result resp)]
183-
(when trace? (logger/debug (trace/received-response id method result error started now)))
184-
(swap! pending-requests* dissoc id)
185-
(deliver p (if error resp result)))
186-
(logger/debug "received response for unmatched request:" resp)))
179+
(let [now (.instant clock)]
180+
(if-let [{:keys [id method p started]} (get @pending-requests* id)]
181+
(let [error (:error resp)
182+
result (:result resp)]
183+
(some-> trace-ch (async/put! (trace/received-response id method result error started now)))
184+
(swap! pending-requests* dissoc id)
185+
(deliver p (if error resp result)))
186+
(some-> trace-ch (async/put! (trace/received-unmatched-response now resp))))))
187187
(receive-request [_this context {:keys [id method params]}]
188188
(let [started (.instant clock)]
189-
(when trace? (logger/debug (trace/received-request id method params started)))
189+
(some-> trace-ch (async/put! (trace/received-request id method params started)))
190190
(let [result (receive-request method context params)
191191
resp (json-rpc.messages/response id result)
192192
finished (.instant clock)]
193-
(when trace? (logger/debug (trace/sending-response id method result started finished)))
193+
(some-> trace-ch (async/put! (trace/sending-response id method result started finished)))
194194
resp)))
195195
(receive-notification [_this context {:keys [method params]}]
196-
(when trace? (logger/debug (trace/received-notification method params (.instant clock))))
196+
(some-> trace-ch (async/put! (trace/received-notification method params (.instant clock))))
197197
(receive-notification method context params)))
198198

199199
(defn chan-server [{:keys [output input parallelism trace? clock]
200200
:or {parallelism 4, trace? false, clock (java.time.Clock/systemDefaultZone)}}]
201201
(map->ChanServer
202202
{:parallelism parallelism
203-
:trace? trace?
204203
:output output
205204
:input input
205+
:trace-ch (when trace? (async/chan (async/sliding-buffer 20)))
206206
:clock clock
207207
:request-id* (atom 0)
208208
:pending-requests* (atom {})

server/src/lsp4clj/trace.clj

+29-21
Original file line numberDiff line numberDiff line change
@@ -2,56 +2,64 @@
22
(:require
33
[cheshire.core :as json]))
44

5+
(defn ^:private trace-tag [at]
6+
(format "[Trace - %s]"
7+
(str (.truncatedTo at java.time.temporal.ChronoUnit/MILLIS))))
8+
59
(defn ^:private trace-header
6-
([at description method]
7-
(format "[Trace - %s] %s '%s'"
8-
(str (.truncatedTo at java.time.temporal.ChronoUnit/MILLIS))
9-
description
10-
method))
11-
([at description method id]
12-
(format "[Trace - %s] %s '%s - (%s)'"
13-
(str (.truncatedTo at java.time.temporal.ChronoUnit/MILLIS))
14-
description
15-
method
16-
id)))
10+
([description method]
11+
(format "%s '%s'" description method))
12+
([description method id]
13+
(format "%s '%s - (%s)'" description method id)))
1714

1815
(defn ^:private trace-body
1916
([params] (trace-body "Params" params))
2017
([label params] (str label ": " (json/generate-string params {:pretty true}))))
2118

2219
(defn ^:private trace-str
23-
([header latency body]
24-
(trace-str (str header latency) body))
25-
([header body]
26-
(str header "\n"
20+
([tag header latency body]
21+
(trace-str tag (str header latency) body))
22+
([tag header body]
23+
(str tag " " header "\n"
2724
body "\n\n\n")))
2825

2926
(defn ^:private latency [started finished]
3027
(- (.toEpochMilli finished) (.toEpochMilli started)))
3128

3229
(defn received-notification [method params at]
33-
(trace-str (trace-header at "Received notification" method)
30+
(trace-str (trace-tag at)
31+
(trace-header "Received notification" method)
3432
(trace-body params)))
3533

3634
(defn received-request [id method params at]
37-
(trace-str (trace-header at "Received request" method id)
35+
(trace-str (trace-tag at)
36+
(trace-header "Received request" method id)
3837
(trace-body params)))
3938

4039
(defn received-response [id method result error started finished]
41-
(trace-str (trace-header finished "Received response" method id)
40+
(trace-str (trace-tag finished)
41+
(trace-header "Received response" method id)
4242
(str (format " in %sms." (latency started finished))
4343
(when error (format " Request failed: %s (%s)." (:message error) (:code error))))
4444
(if error (trace-body "Error data" (:data error)) (trace-body "Result" result))))
4545

46+
(defn received-unmatched-response [at resp]
47+
(trace-str (trace-tag at)
48+
"Received response for unmatched request:"
49+
(trace-body "Body" resp)))
50+
4651
(defn sending-notification [method params at]
47-
(trace-str (trace-header at "Sending notification" method)
52+
(trace-str (trace-tag at)
53+
(trace-header "Sending notification" method)
4854
(trace-body params)))
4955

5056
(defn sending-request [id method params at]
51-
(trace-str (trace-header at "Sending request" method id)
57+
(trace-str (trace-tag at)
58+
(trace-header "Sending request" method id)
5259
(trace-body params)))
5360

5461
(defn sending-response [id method params started finished]
55-
(trace-str (trace-header finished "Sending response" method id)
62+
(trace-str (trace-tag finished)
63+
(trace-header "Sending response" method id)
5664
(format ". Processing request took %sms" (latency started finished))
5765
(trace-body "Result" params)))

0 commit comments

Comments
 (0)