forked from edani/ensime-emacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ensime-macros.el
315 lines (269 loc) · 11.3 KB
/
ensime-macros.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
;;; ensime-macros.el
;;
;;;; License
;;
;; Copyright (C) 2010 Aemon Cannon
;;
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2 of
;; the License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public
;; License along with this program; if not, write to the Free
;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
;; MA 02111-1307, USA.
(eval-when-compile (require 'cl))
(defmacro ensime-with-conn-interactive (conn-sym &rest body)
"Surround body forms with a check to see if we're connected.
If not, message the user."
`(let* ((,conn-sym (or (ensime-connection-or-nil)
(ensime-prompt-for-connection))))
(if conn
(progn ,@body)
(message
"This command requires a connection to an ENSIME server."))))
(defmacro* when-let ((var value) &rest body)
"Evaluate VALUE, if the result is non-nil bind it to VAR and eval BODY.
\(fn (VAR VALUE) &rest BODY)"
`(let ((,var ,value))
(when ,var ,@body)))
(defmacro* ensime-with-popup-buffer ((name &optional connection select major-mode-fn)
&body body)
"Similar to `with-output-to-temp-buffer'.
Bind standard-output and initialize some buffer-local variables.
Restore window configuration when closed.
NAME is the name of the buffer to be created.
CONNECTION is the value for `ensime-buffer-connection'.
If nil, no explicit connection is associated with
the buffer. If t, the current connection is taken.
SELECT determines whether the new window is selected.
MAJOR-MODE-FN, if non-nil, is executed immediately after the new
buffer is created, for example to set the major mode.
"
`(let* ((vars% (list ,(if (eq connection t) '(ensime-connection) connection)))
(standard-output (ensime-make-popup-buffer ,name vars% ,major-mode-fn)))
(with-current-buffer standard-output
(prog1
(progn
,@body)
(assert (eq (current-buffer) standard-output))
(setq buffer-read-only t)
(set-window-point (ensime-display-popup-buffer ,(or select 'nil))
(point))))))
(defmacro ensime-assert-buffer-saved-interactive (&rest body)
"Offer to save buffer if buffer is modified. Execute body only if
buffer is saved."
`(if (buffer-modified-p)
(if (y-or-n-p "Buffer must be saved to continue. Save now? ")
(progn
(ensime-save-buffer-no-hooks)
,@body))
(progn
,@body)))
(defmacro* ensime-with-connection-buffer ((&optional process) &rest body)
"Execute BODY in the process-buffer of PROCESS.
If PROCESS is not specified, `ensime-connection' is used.
\(fn (&optional PROCESS) &body BODY))"
`(with-current-buffer
(process-buffer (or ,process (ensime-connection)
(error "No connection")))
,@body))
(defmacro* ensime-with-inspector-buffer ((name object &optional select)
&body body)
"Extend the standard popup buffer with inspector-specific bindings."
`(ensime-with-popup-buffer
(,name t ,select 'ensime-inspector-mode)
(let ((conn ensime-buffer-connection))
(setq ensime-buffer-connection conn))
(when (not ensime-inspector-paging-in-progress)
;; Clamp the history cursor
(setq ensime-inspector-history-cursor
(max 0 ensime-inspector-history-cursor))
(setq ensime-inspector-history-cursor
(min (- (length ensime-inspector-history) 1)
ensime-inspector-history-cursor))
;; Remove all elements preceding the cursor (the 'redo' history)
(setq ensime-inspector-history
(subseq ensime-inspector-history
ensime-inspector-history-cursor))
;; Add the new history item
(push ,object ensime-inspector-history)
;; Set cursor to point to the new item
(setq ensime-inspector-history-cursor 0)
)
,@body
))
(defmacro destructure-case (value &rest patterns)
"Dispatch VALUE to one of PATTERNS.
A cross between `case' and `destructuring-bind'.
The pattern syntax is:
((HEAD . ARGS) . BODY)
The list of patterns is searched for a HEAD `eq' to the car of
VALUE. If one is found, the BODY is executed with ARGS bound to the
corresponding values in the CDR of VALUE."
(let ((operator (gensym "op-"))
(operands (gensym "rand-"))
(tmp (gensym "tmp-")))
`(let* ((,tmp ,value)
(,operator (car ,tmp))
(,operands (cdr ,tmp)))
(case ,operator
,@(mapcar (lambda (clause)
(if (eq (car clause) t)
`(t ,@(cdr clause))
(destructuring-bind ((op &rest rands) &rest body) clause
`(,op (destructuring-bind ,rands ,operands
. ,body)))))
patterns)
,@(if (eq (caar (last patterns)) t)
'()
`((t (error "Elisp destructure-case failed: %S" ,tmp))))))))
(defmacro ensime-define-keys (keymap &rest key-command)
"Define keys in KEYMAP. Each KEY-COMMAND is a list of (KEY COMMAND)."
`(progn . ,(mapcar (lambda (k-c) `(define-key ,keymap . ,k-c))
key-command)))
(defmacro* with-struct ((conc-name &rest slots) struct &body body)
"Like with-slots but works only for structs.
\(fn (CONC-NAME &rest SLOTS) STRUCT &body BODY)"
(flet ((reader (slot) (intern (concat (symbol-name conc-name)
(symbol-name slot)))))
(let ((struct-var (gensym "struct")))
`(let ((,struct-var ,struct))
(symbol-macrolet
,(mapcar (lambda (slot)
(etypecase slot
(symbol `(,slot (,(reader slot) ,struct-var)))
(cons `(,(first slot) (,(reader (second slot))
,struct-var)))))
slots)
. ,body)))))
(defvar ensime-qualified-type-regexp
"^\\(?:object \\)?\\(\\(?:[a-z0-9_]+\\.\\)*\\)\\(?:\\([^\\.]+?\\)\\$\\)?\\(\\$\\$anon\\|[^\\.$]+\\$?\\)$"
"Match strings of form pack.pack1.pack2.Types$Type or pack.pack1.pack2.Type")
(defmacro* ensime-with-name-parts (str (path outer-type-name name) &rest body)
"Evaluate BODY with path bound to the dot-separated path of
this type-name, and name bound to the final type name."
(let ((tmp (gensym)))
`(let ((matchedp (integerp (string-match
ensime-qualified-type-regexp
,str))))
(let* ((,tmp (if matchedp (match-string 1 ,str) nil))
(,path (if (> (length ,tmp) 0)
(substring ,tmp 0 (- (length ,tmp) 1)) ,tmp))
(,outer-type-name (if matchedp (match-string 2 ,str) nil))
(,name (if matchedp (match-string 3 ,str) ,str)))
,@body))))
(defvar ensime-qualified-path-and-name-regexp
"^\\(\\(?:[a-z0-9_]+\\.\\)*\\)\\([^\\.]*\\)$")
(defmacro* ensime-with-path-and-name (str (path name) &rest body)
"Evaluate body with path bound to all sections up to the
last, concatenated, and name bound to the last section."
(let ((tmp (gensym)))
`(let ((matchedp (integerp (string-match
ensime-qualified-path-and-name-regexp
,str))))
(let* ((,tmp (if matchedp (match-string 1 ,str) nil))
(,path (if (> (length ,tmp) 0)
(substring ,tmp 0 (- (length ,tmp) 1)) ,tmp))
(,name (if matchedp (match-string 2 ,str) nil)))
,@body))))
(defmacro* ensime-with-buffer-written-to-tmp ((file-sym) &rest body)
"Write latest buffer state to a temp file, bind the temp filename
to file-sym, and eval body. The idea is to not disturb the original
file's state."
`(let ((,file-sym (ensime-temp-file-name
(concat ".tmp_" (file-name-nondirectory
buffer-file-name)))))
(ensime-write-buffer ,file-sym)
,@body))
(defmacro ensime-propertize-region (props &rest body)
"Execute BODY and add PROPS to all the text it inserts.
More precisely, PROPS are added to the region between the point's
positions before and after executing BODY."
(let ((start (gensym)))
`(let ((,start (point)))
(prog1 (progn ,@body)
(add-text-properties ,start (point) ,props)))))
(defmacro ensime-with-rigid-indentation (level &rest body)
"Execute BODY and then rigidly indent its text insertions.
Assumes all insertions are made at point."
(let ((start (gensym)) (l (gensym)))
`(let ((,start (point)) (,l ,(or level '(current-column))))
(prog1 (progn ,@body)
(ensime-indent-rigidly ,start (point) ,l)))))
(put 'ensime-with-rigid-indentation 'lisp-indent-function 1)
(defmacro ensime-def-connection-var (varname &rest initial-value-and-doc)
"Define a connection-local variable.
The value of the variable can be read by calling the function of the
same name (it must not be accessed directly). The accessor function is
setf-able.
The actual variable bindings are stored buffer-local in the
process-buffers of connections. The accessor function refers to
the binding for `ensime-connection'."
(let ((real-var (intern (format "%s:connlocal" varname)))
(store-var (gensym)))
`(progn
;; Variable
(make-variable-buffer-local
(defvar ,real-var ,@initial-value-and-doc))
;; Accessor
(defun ,varname (&optional process)
(ensime-with-connection-buffer (process) ,real-var))
;; Setf
(defsetf ,varname (&optional process) (store)
`(let ((,',store-var ,store))
(ensime-with-connection-buffer (,process)
(setq ,',real-var ,',store-var)
,',store-var)))
'(\, varname))))
(put 'ensime-def-connection-var 'lisp-indent-function 2)
(put 'ensime-indulge-pretty-colors 'ensime-def-connection-var t)
;;; `ensime-rex' is the RPC primitive which is used to implement both
;;; `ensime-eval' and `ensime-eval-async'. You can use it directly if
;;; you need to, but the others are usually more convenient.
(defmacro* ensime-rex ((&rest saved-vars)
sexp
&rest continuations)
"(ensime-rex (VAR ...) SEXP CLAUSES ...)
Remote EXecute SEXP.
VARs are a list of saved variables visible in the other forms. Each
VAR is either a symbol or a list (VAR INIT-VALUE).
SEXP is evaluated and the princed version is sent to Lisp.
CLAUSES is a list of patterns with same syntax as
`destructure-case'. The result of the evaluation of SEXP is
dispatched on CLAUSES. The result is either a sexp of the
form (:ok VALUE) or (:abort REASON). CLAUSES is executed
asynchronously.
Note: don't use backquote syntax for SEXP, because various Emacs
versions cannot deal with that."
(let ((result (gensym)))
`(lexical-let ,(loop for var in saved-vars
collect (etypecase var
(symbol (list var var))
(cons var)))
(ensime-dispatch-event
(list :swank-rpc ,sexp
(lambda (,result)
(destructure-case ,result
,@continuations)))))))
(put 'ensime-rex 'lisp-indent-function 2)
(defmacro ensime-set-key (conf key val)
`(setq ,conf (plist-put ,conf ,key ,val)))
(defmacro* ensime-db-with-active-thread ((tid-sym) &rest body)
`(if ensime-db-active-thread-id
(let ((,tid-sym ensime-db-active-thread-id))
,@body)
(message "No active debug thread.")))
(defmacro ensime--propertize-inserted-text (prop-list &rest body)
`(let ((start-props-point (point)))
,@body
(add-text-properties start-props-point (point) (list ,@prop-list))))
(provide 'ensime-macros)
;; Local Variables:
;; End: