Skip to content

Commit ee35c30

Browse files
alexander-yakushevbbatsov
authored andcommitted
Always use plists to represent nrepl requests
1 parent e125d3e commit ee35c30

9 files changed

+105
-138
lines changed

cider-client.el

+28-41
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ you need to encode it as the following plist:
254254
:group 'cider
255255
:package-version '(cider . "1.1.0"))
256256

257-
(defun cider--nrepl-format-code-request-map (&optional format-options)
257+
(defun cider--nrepl-format-code-request-options (&optional format-options)
258258
"Map to merge into requests that require code formatting.
259259
If non-nil, FORMAT-OPTIONS specifies the options cljfmt will use to format
260260
the code. See `cider-format-code-options' for details."
@@ -271,15 +271,11 @@ the code. See `cider-format-code-options' for details."
271271
(map-pairs)
272272
(seq-mapcat #'identity)
273273
(apply #'nrepl-dict)))))
274-
(thread-last
275-
(map-merge 'list
276-
(when indents-dict
277-
`(("indents" ,indents-dict)))
278-
(when alias-map-dict
279-
`(("alias-map" ,alias-map-dict))))
280-
(map-pairs)
281-
(seq-mapcat #'identity)
282-
(apply #'nrepl-dict)))))
274+
(nrepl-dict
275+
`(,@(when indents-dict
276+
`("indents" ,indents-dict))
277+
,@(when alias-map-dict
278+
`("alias-map" ,alias-map-dict)))))))
283279

284280
(defcustom cider-print-fn 'pprint
285281
"Sets the function to use for printing.
@@ -388,7 +384,7 @@ The result will be a string."
388384
(result (cdr (assoc printer (cadr (assoc name cider--print-options-mapping))))))
389385
(symbol-name (or result name))))
390386

391-
(defun cider--nrepl-print-request-map (&optional right-margin)
387+
(defun cider--nrepl-print-request-plist (&optional right-margin)
392388
"Map to merge into requests that require pretty-printing.
393389
RIGHT-MARGIN specifies the maximum column-width of the printed result, and
394390
is included in the request if non-nil."
@@ -400,35 +396,29 @@ is included in the request if non-nil."
400396
(map-pairs)
401397
(seq-mapcat #'identity)
402398
(apply #'nrepl-dict))))
403-
(map-merge 'list
404-
`(("nrepl.middleware.print/stream?" "1"))
405-
(when cider-print-fn
406-
`(("nrepl.middleware.print/print" ,(cider--print-fn))))
407-
(when cider-print-quota
408-
`(("nrepl.middleware.print/quota" ,cider-print-quota)))
409-
(when cider-print-buffer-size
410-
`(("nrepl.middleware.print/buffer-size" ,cider-print-buffer-size)))
411-
(unless (nrepl-dict-empty-p print-options)
412-
`(("nrepl.middleware.print/options" ,print-options))))))
413-
414-
(defun cider--nrepl-pr-request-map ()
399+
`("nrepl.middleware.print/stream?" "1"
400+
,@(when cider-print-fn
401+
`("nrepl.middleware.print/print" ,(cider--print-fn)))
402+
,@(when cider-print-quota
403+
`("nrepl.middleware.print/quota" ,cider-print-quota))
404+
,@(when cider-print-buffer-size
405+
`("nrepl.middleware.print/buffer-size" ,cider-print-buffer-size))
406+
,@(unless (nrepl-dict-empty-p print-options)
407+
`("nrepl.middleware.print/options" ,print-options)))))
408+
409+
(defun cider--nrepl-pr-request-plist ()
415410
"Map to merge into requests that do not require pretty printing."
416411
(let ((print-options (thread-last
417412
cider-print-options
418413
(map-pairs)
419414
(seq-mapcat #'identity)
420415
(apply #'nrepl-dict))))
421-
(map-merge 'list
422-
`(("nrepl.middleware.print/print" "cider.nrepl.pprint/pr")
423-
("nrepl.middleware.print/stream?" nil))
424-
(unless (nrepl-dict-empty-p print-options)
425-
`(("nrepl.middleware.print/options" ,print-options)))
426-
(when cider-print-quota
427-
`(("nrepl.middleware.print/quota" ,cider-print-quota))))))
428-
429-
(defun cider--nrepl-content-type-map ()
430-
"Map to be merged into an eval request to make it use content-types."
431-
'(("content-type" "true")))
416+
`("nrepl.middleware.print/print" "cider.nrepl.pprint/pr"
417+
"nrepl.middleware.print/stream?" nil
418+
,@(unless (nrepl-dict-empty-p print-options)
419+
`("nrepl.middleware.print/options" ,print-options))
420+
,@(when cider-print-quota
421+
`("nrepl.middleware.print/quota" ,cider-print-quota)))))
432422

433423
(defun cider-tooling-eval (input callback &optional ns connection)
434424
"Send the request INPUT to CONNECTION and register the CALLBACK.
@@ -877,7 +867,7 @@ The result entries are relative to the classpath."
877867
"Perform nREPL \"format-code\" op with CODE.
878868
FORMAT-OPTIONS is an optional configuration map for cljfmt."
879869
(let* ((request `("op" "format-code"
880-
"options" ,(cider--nrepl-format-code-request-map format-options)
870+
"options" ,(cider--nrepl-format-code-request-options format-options)
881871
"code" ,code))
882872
(response (cider-nrepl-send-sync-request request))
883873
(err (nrepl-dict-get response "err")))
@@ -889,12 +879,9 @@ FORMAT-OPTIONS is an optional configuration map for cljfmt."
889879

890880
(defun cider-sync-request:format-edn (edn right-margin)
891881
"Perform \"format-edn\" op with EDN and RIGHT-MARGIN."
892-
(let* ((request (thread-last
893-
(map-merge 'list
894-
`(("op" "format-edn")
895-
("edn" ,edn))
896-
(cider--nrepl-print-request-map right-margin))
897-
(seq-mapcat #'identity)))
882+
(let* ((request `("op" "format-edn"
883+
"edn" ,edn
884+
,@(cider--nrepl-print-request-plist right-margin)))
898885
(response (cider-nrepl-send-sync-request request))
899886
(err (nrepl-dict-get response "err")))
900887
(when err

cider-debug.el

+2-5
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,8 @@ configure `cider-debug-prompt' instead."
143143
(defun cider--debug-init-connection ()
144144
"Initialize a connection with the cider.debug middleware."
145145
(cider-nrepl-send-request
146-
(thread-last
147-
(map-merge 'list
148-
'(("op" "init-debugger"))
149-
(cider--nrepl-print-request-map fill-column))
150-
(seq-mapcat #'identity))
146+
`("op" "init-debugger"
147+
,@(cider--nrepl-print-request-plist fill-column))
151148
#'cider--debug-response-handler))
152149

153150

cider-eval.el

+27-30
Original file line numberDiff line numberDiff line change
@@ -354,11 +354,8 @@ into a new error buffer."
354354
;; Causes are returned as a series of messages, which we aggregate in `causes'
355355
(let (causes ex-phase)
356356
(cider-nrepl-send-request
357-
(thread-last
358-
(map-merge 'list
359-
'(("op" "analyze-last-stacktrace"))
360-
(cider--nrepl-print-request-map fill-column))
361-
(seq-mapcat #'identity))
357+
`("op" "analyze-last-stacktrace"
358+
,@(cider--nrepl-print-request-plist fill-column))
362359
(lambda (response)
363360
(nrepl-dbind-response response (phase)
364361
(when phase
@@ -691,13 +688,12 @@ REPL buffer. This is controlled via
691688
(cider-current-repl))))
692689
(when (cider-nrepl-op-supported-p "analyze-last-stacktrace" conn)
693690
(let ((nrepl-sync-request-timeout 4)) ;; ensure that this feature cannot possibly create an overly laggy UX
694-
(when-let* ((result (nrepl-send-sync-request (thread-last (map-merge 'list
695-
'(("op" "analyze-last-stacktrace"))
696-
(cider--nrepl-print-request-map fill-column))
697-
(seq-mapcat #'identity))
698-
conn
699-
'abort-on-input ;; favor responsiveness over this feature, in case something went wrong.
700-
)))
691+
(when-let* ((result (nrepl-send-sync-request
692+
`("op" "analyze-last-stacktrace"
693+
,@(cider--nrepl-print-request-plist fill-column))
694+
conn
695+
'abort-on-input ;; favor responsiveness over this feature, in case something went wrong.
696+
)))
701697
(nrepl-dict-get result "phase")))))))
702698

703699
(defcustom cider-inline-error-message-function #'cider--shorten-error-message
@@ -1026,11 +1022,12 @@ API. Most other interactive eval functions should rely on this function.
10261022
If CALLBACK is nil use `cider-interactive-eval-handler'.
10271023
BOUNDS, if non-nil, is a list of two numbers marking the start and end
10281024
positions of FORM in its buffer.
1029-
ADDITIONAL-PARAMS is a map to be merged into the request message.
1025+
ADDITIONAL-PARAMS is a plist to be merged into the request message.
10301026
10311027
If `cider-interactive-eval-override' is a function, call it with the same
10321028
arguments and only proceed with evaluation if it returns nil."
10331029
(let ((form (or form (apply #'buffer-substring-no-properties bounds)))
1030+
(additional-params (nrepl--alist-to-plist additional-params))
10341031
(start (car-safe bounds))
10351032
(end (car-safe (cdr-safe bounds))))
10361033
(when (and start end)
@@ -1057,7 +1054,7 @@ arguments and only proceed with evaluation if it returns nil."
10571054
(if (cider-ns-form-p form) "user" (cider-current-ns))
10581055
(when start (line-number-at-pos start))
10591056
(when start (cider-column-number-at-pos start))
1060-
(seq-mapcat #'identity additional-params)
1057+
additional-params
10611058
connection))))))
10621059

10631060
(defun cider-eval-region (start end)
@@ -1066,7 +1063,7 @@ arguments and only proceed with evaluation if it returns nil."
10661063
(cider-interactive-eval nil
10671064
nil
10681065
(list start end)
1069-
(cider--nrepl-pr-request-map)))
1066+
(cider--nrepl-pr-request-plist)))
10701067

10711068
(defun cider-eval-last-sexp (&optional output-to-current-buffer)
10721069
"Evaluate the expression preceding point.
@@ -1076,7 +1073,7 @@ buffer."
10761073
(cider-interactive-eval nil
10771074
(when output-to-current-buffer (cider-eval-print-handler))
10781075
(cider-last-sexp 'bounds)
1079-
(cider--nrepl-pr-request-map)))
1076+
(cider--nrepl-pr-request-plist)))
10801077

10811078
(defun cider-eval-last-sexp-and-replace ()
10821079
"Evaluate the expression preceding point and replace it with its result."
@@ -1091,7 +1088,7 @@ buffer."
10911088
(cider-interactive-eval last-sexp
10921089
(cider-eval-print-handler)
10931090
nil
1094-
(cider--nrepl-pr-request-map))))
1091+
(cider--nrepl-pr-request-plist))))
10951092

10961093
(defun cider-eval-list-at-point (&optional output-to-current-buffer)
10971094
"Evaluate the list (eg. a function call, surrounded by parens) around point.
@@ -1118,7 +1115,7 @@ buffer."
11181115
(cider-interactive-eval tapped-form
11191116
(when output-to-current-buffer (cider-eval-print-handler))
11201117
nil
1121-
(cider--nrepl-pr-request-map))))
1118+
(cider--nrepl-pr-request-plist))))
11221119

11231120
(defun cider-tap-sexp-at-point (&optional output-to-current-buffer)
11241121
"Evaluate and tap the expression around point.
@@ -1167,7 +1164,7 @@ When GUESS is non-nil, attempt to extract the context from parent let-bindings."
11671164
(cider-interactive-eval code
11681165
nil
11691166
bounds
1170-
(cider--nrepl-pr-request-map))))
1167+
(cider--nrepl-pr-request-plist))))
11711168

11721169
(defun cider-eval-last-sexp-in-context (guess)
11731170
"Evaluate the preceding sexp in user-supplied context.
@@ -1206,7 +1203,7 @@ With the prefix arg INSERT-BEFORE, insert before the form, otherwise afterwards.
12061203
(set-marker (make-marker) insertion-point)
12071204
cider-comment-prefix)
12081205
bounds
1209-
(cider--nrepl-pr-request-map))))
1206+
(cider--nrepl-pr-request-plist))))
12101207

12111208
(defun cider-pprint-form-to-comment (form-fn insert-before)
12121209
"Evaluate the form selected by FORM-FN and insert result as comment.
@@ -1236,7 +1233,7 @@ If INSERT-BEFORE is non-nil, insert before the form, otherwise afterwards."
12361233
cider-comment-continued-prefix
12371234
comment-postfix)
12381235
bounds
1239-
(cider--nrepl-print-request-map fill-column))))
1236+
(cider--nrepl-print-request-plist fill-column))))
12401237

12411238
(defun cider-pprint-eval-last-sexp-to-comment (&optional insert-before)
12421239
"Evaluate the last sexp and insert result as comment.
@@ -1290,13 +1287,13 @@ honoring SWITCH-TO-REPL, REQUEST-MAP."
12901287
"Evaluate the expression preceding point and insert its result in the REPL.
12911288
If invoked with a PREFIX argument, switch to the REPL buffer."
12921289
(interactive "P")
1293-
(cider--eval-last-sexp-to-repl prefix (cider--nrepl-pr-request-map)))
1290+
(cider--eval-last-sexp-to-repl prefix (cider--nrepl-pr-request-plist)))
12941291

12951292
(defun cider-pprint-eval-last-sexp-to-repl (&optional prefix)
12961293
"Evaluate expr before point and insert its pretty-printed result in the REPL.
12971294
If invoked with a PREFIX argument, switch to the REPL buffer."
12981295
(interactive "P")
1299-
(cider--eval-last-sexp-to-repl prefix (cider--nrepl-print-request-map fill-column)))
1296+
(cider--eval-last-sexp-to-repl prefix (cider--nrepl-print-request-plist fill-column)))
13001297

13011298
(defun cider-eval-print-last-sexp (&optional pretty-print)
13021299
"Evaluate the expression preceding point.
@@ -1307,8 +1304,8 @@ With an optional PRETTY-PRINT prefix it pretty-prints the result."
13071304
(cider-eval-print-handler)
13081305
(cider-last-sexp 'bounds)
13091306
(if pretty-print
1310-
(cider--nrepl-print-request-map fill-column)
1311-
(cider--nrepl-pr-request-map))))
1307+
(cider--nrepl-print-request-plist fill-column)
1308+
(cider--nrepl-pr-request-plist))))
13121309

13131310
(defun cider--pprint-eval-form (form)
13141311
"Pretty print FORM in popup buffer."
@@ -1319,7 +1316,7 @@ With an optional PRETTY-PRINT prefix it pretty-prints the result."
13191316
(cider-interactive-eval (when (stringp form) form)
13201317
handler
13211318
(when (consp form) form)
1322-
(cider--nrepl-print-request-map fill-column)))))
1319+
(cider--nrepl-print-request-plist fill-column)))))
13231320

13241321
(defun cider-pprint-eval-last-sexp (&optional output-to-current-buffer)
13251322
"Evaluate the sexp preceding point and pprint its value.
@@ -1383,7 +1380,7 @@ command `cider-debug-defun-at-point'."
13831380
(concat "#dbg\n" (cider-defun-at-point)))
13841381
nil
13851382
(cider-defun-at-point 'bounds)
1386-
(cider--nrepl-pr-request-map))))
1383+
(cider--nrepl-pr-request-plist))))
13871384

13881385
(defun cider--insert-closing-delimiters (code)
13891386
"Closes all open parenthesized or bracketed expressions of CODE."
@@ -1415,7 +1412,7 @@ buffer. It constructs an expression to eval in the following manner:
14151412
(when output-to-current-buffer
14161413
(cider-eval-print-handler))
14171414
(list beg-of-defun (point))
1418-
(cider--nrepl-pr-request-map))))
1415+
(cider--nrepl-pr-request-plist))))
14191416

14201417
(defun cider--matching-delimiter (delimiter)
14211418
"Get the matching (opening/closing) delimiter for DELIMITER."
@@ -1446,7 +1443,7 @@ buffer. It constructs an expression to eval in the following manner:
14461443
(when output-to-current-buffer
14471444
(cider-eval-print-handler))
14481445
(list beg-of-sexp (point))
1449-
(cider--nrepl-pr-request-map))))
1446+
(cider--nrepl-pr-request-plist))))
14501447

14511448
(defun cider-pprint-eval-defun-at-point (&optional output-to-current-buffer)
14521449
"Evaluate the \"top-level\" form at point and pprint its value.
@@ -1485,7 +1482,7 @@ If VALUE is non-nil, it is inserted into the minibuffer as initial input."
14851482
(cider-interactive-eval form
14861483
nil
14871484
nil
1488-
(cider--nrepl-pr-request-map))))))
1485+
(cider--nrepl-pr-request-plist))))))
14891486

14901487
(defun cider-read-and-eval-defun-at-point ()
14911488
"Insert the toplevel form at point in the minibuffer and output its result.

cider-log.el

+5-7
Original file line numberDiff line numberDiff line change
@@ -282,13 +282,11 @@ It will not be used if the package hasn't been installed."
282282
"Format the log EVENT from the APPENDER of the log FRAMEWORK."
283283
(cider-ensure-op-supported "cider/log-format-event")
284284
(thread-first
285-
(seq-mapcat #'identity
286-
(map-merge 'list
287-
(cider--nrepl-print-request-map fill-column)
288-
`(("op" "cider/log-format-event")
289-
("framework" ,(cider-log-framework-id framework))
290-
("appender" ,(cider-log-appender-id appender))
291-
("event" ,(cider-log-event-id event)))))
285+
`("op" "cider/log-format-event"
286+
"framework" ,(cider-log-framework-id framework)
287+
"appender" ,(cider-log-appender-id appender)
288+
"event" ,(cider-log-event-id event)
289+
,@(cider--nrepl-print-request-plist fill-column))
292290
(cider-nrepl-send-sync-request)
293291
(nrepl-dict-get "cider/log-format-event")))
294292

0 commit comments

Comments
 (0)