-
Notifications
You must be signed in to change notification settings - Fork 71
/
idris-common-utils.el
460 lines (414 loc) · 19.4 KB
/
idris-common-utils.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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
;;; idris-common-utils.el --- Useful utilities -*- lexical-binding: t -*-
;; Copyright (C) 2013-2015 Hannes Mehnert and David Raymond Christiansen
;; Author: Hannes Mehnert <hannes@mehnert.org> and David Raymond Christiansen <david@davidchristiansen.dk>
;; License:
;; Inspiration is taken from SLIME/DIME (http://common-lisp.net/project/slime/) (https://github.com/dylan-lang/dylan-mode)
;; Therefore license is GPL
;; This file 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 3, or (at your option)
;; any later version.
;; This file 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 GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary
;; This file contains various useful things that are employed
;; throughout idris-mode.
;;; Code:
(require 'idris-core)
(require 'idris-settings)
(require 'cl-lib)
;;; These variables are here because many things depend on them
(defvar-local idris-buffer-dirty-p t
"An Idris buffer is dirty if it have been modified since it was last loaded.")
(defvar idris-currently-loaded-buffer nil
"The buffer currently loaded by the running Idris.")
(defvar idris-loaded-region-overlay nil
"The region loaded by Idris, should such a thing exist.")
(defvar idris-process-current-working-directory ""
"Working directory of Idris process.")
(defvar idris-command-line-option-functions nil
"A list of functions to call to compute the `command-line' arguments to Idris.
Each function should take no arguments and return a list of
strings that are suitable arguments to `start-process'.")
(defvar idris-mode-path nil
"Directory containing the `idris-mode' package.
This is used to load resource files such as images. The default
value is automatically computed from the location of the Emacs
Lisp package.")
(when load-file-name ;; guard to allow M-x eval-buffer
(setq idris-mode-path (file-name-directory load-file-name)))
(defun idris-buffer-name (type)
(cl-assert (keywordp type))
(concat (format "*idris-%s*" (substring (symbol-name type) 1))))
(defun idris-kill-buffer (buffer)
(let ((buf (cond
((symbolp buffer)
(get-buffer (idris-buffer-name buffer)))
((stringp buffer)
(get-buffer buffer))
((bufferp buffer)
buffer)
(t (message "don't know how to kill buffer"))))
(return-buffer (seq-find (lambda (b) (eq 'idris-mode (buffer-local-value 'major-mode b)))
(buffer-list))))
(when (and buf (buffer-live-p buf))
(let ((win (get-buffer-window buf)))
(kill-buffer buf)
(when (and (null (window-prev-buffers win)) (< 1 (length (window-list))))
(delete-window win))))
(when return-buffer (pop-to-buffer return-buffer `(display-buffer-reuse-window)))))
(defun idris-minibuffer-respecting-message (text &rest args)
"Display TEXT as a message, without hiding any minibuffer contents."
(let ((mtext (format " [%s]" (apply #'format text args))))
(if (minibuffer-window-active-p (minibuffer-window))
(minibuffer-message mtext)
(message "%s" mtext))))
(defun idris-same-line-p (pos1 pos2)
"Return t if buffer positions POS1 and POS2 are on the same line."
(save-excursion (goto-char (min pos1 pos2))
(<= (max pos1 pos2) (line-end-position))))
(defmacro idris-save-marker (marker &rest body)
"Save the contents of the marker MARKER while executing BODY."
(declare (indent 1))
(let ((pos (gensym "pos")))
`(let ((,pos (marker-position ,marker)))
(prog1 (progn . ,body)
(set-marker ,marker ,pos)))))
(defmacro idris-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."
(declare (indent 1))
(let ((start (gensym "foo")))
`(let ((,start (point)))
(prog1 (progn ,@body)
(add-text-properties ,start (point) ,props)))))
(defmacro idris-propertize-spans (spans &rest body)
"Execute BODY and add the properties indicated by SPANS to the
inserted text (that is, relative to point prior to insertion)."
(declare (indent 1))
(let ((start (gensym)))
`(let ((,start (point)))
(prog1 (progn ,@body)
(cl-loop for (begin length props) in ,spans
do (add-text-properties (+ ,start begin)
(+ ,start begin length)
props))))))
;;; TODO: Take care of circular dependency issue
(autoload 'idris-eval "inferior-idris.el")
(defun idris-make-link-keymap (url)
"Compute the keymap for a clickable link to URL."
(let ((map (make-sparse-keymap))
(browse (lambda () (interactive) (browse-url url))))
(define-key map [mouse-1] browse)
(define-key map [mouse-2] browse)
(define-key map (kbd "RET") browse)
map))
(defconst idris-semantic-properties-clickable-decors
'(:type :data :function :metavar :module :namespace :postulate)
"The decors that should light up as responsive to mouse clicks.")
(defun idris-semantic-properties-face (props)
"Compute the text property `face' from the Idris properties (PROPS) for a region."
(let* ((decor (assoc :decor props))
(implicit (assoc :implicit props))
(text-format (assoc :text-formatting props))
(idris-err (assoc :error props))
(link-href (assoc :link-href props))
(qquote (assoc :quasiquotation props))
(aquote (assoc :antiquotation props))
(decor-face (if decor
(pcase (cadr decor)
(:type '(idris-semantic-type-face))
(:data '(idris-semantic-data-face))
(:function '(idris-semantic-function-face))
(:keyword '(idris-keyword-face))
(:metavar '(idris-hole-face))
(:bound '(idris-semantic-bound-face))
(:namespace '(idris-semantic-namespace-face))
(:postulate '(idris-semantic-postulate-face))
(:module '(idris-semantic-module-face))
(_ nil))
nil))
(implicit-face (if (and implicit (equal (cadr implicit) :True))
'(idris-semantic-implicit-face)
nil))
(err-face (if idris-err
'(idris-warning-face)
()))
(text-face (pcase (cadr text-format)
(:bold '(bold))
(:italic '(italic))
(:underline '(underline))
(_ nil)))
(link-face (if link-href '(idris-link-face) ()))
(unique-val (gensym)) ; HACK to stop consecutive mouse-faces from interfering
(mousable-face
(cond ((member (cadr decor) idris-semantic-properties-clickable-decors)
`((:inherit (,decor-face highlight) :hack ,unique-val)))
(idris-err
`((:inherit ('idris-warning-face highlight))))
(link-href
'(highlight))
(t nil)))
(qquote-face (when qquote '(idris-quasiquotation-face)))
(aquote-face (when aquote '(idris-antiquotation-face)))
(computed-face (append text-face
implicit-face
decor-face
err-face
link-face
qquote-face
aquote-face)))
(append (if computed-face (list 'face computed-face) ())
(if mousable-face (list 'mouse-face mousable-face) ()))))
(defun idris-semantic-properties-eldoc (props)
"Compute an Eldoc string from Idris semantic properties (PROPS)."
(let* ((name (assoc :name props))
(namespace (assoc :namespace props))
(source-file (assoc :source-file props))
(type (pcase (assoc :type props)
(`(:type ,ty)
(concat " : " ty))
(_ "")))
(doc-overview (pcase (assoc :doc-overview props)
(`(:doc-overview ,docs)
(if (string-match "[^ ]" docs)
(concat "\n"
;; Emacs will do its own line-wrapping in Eldoc
(replace-regexp-in-string "\\\n" " " docs))
""))
(_ ""))))
(cond (name (list 'idris-eldoc
(concat (cadr name)
;; Emacs will do its own line-wrapping in Eldoc
(replace-regexp-in-string "\\\n" " " type)
doc-overview)))
((and namespace source-file)
(list 'idris-eldoc
(file-relative-name (cadr source-file))))
(namespace (list 'idris-eldoc
(cadr namespace)))
(t nil))))
(defun idris-semantic-properties-help-echo (props)
(let* ((name (assoc :name props))
(decor (assoc :decor props))
(namespace (assoc :namespace props))
(idris-err (assoc :error props))
(link-href (assoc :link-href props))
(image (assoc :image props))
(type (pcase (assoc :type props)
(`(:type ,ty) (concat " : " ty))
(_ "")))
(doc-overview (pcase (assoc :doc-overview props)
(`(:doc-overview ,docs) (concat "\n" docs))
(_ "")))
(mouse-help
(cond ((member (cadr decor) idris-semantic-properties-clickable-decors)
"\n<mouse-3> context menu")
(idris-err (idris-eval `(:error-string ,(cadr idris-err))))
(t ""))))
(cond (name (list 'help-echo
(concat (cadr name)
type
doc-overview
mouse-help)))
(namespace (list 'help-echo (concat (cadr namespace) "\n" mouse-help)))
(link-href (list 'help-echo (concat "<mouse-1> browse " (cadr link-href))))
(image (list 'help-echo (cadr image)))
(t nil))))
(defun idris-semantic-properties (props)
"Compute how to highlight with Idris compiler properties (PROPS)."
(let* ((name (assoc :name props))
(decor (assoc :decor props))
(term (assoc :tt-term props))
(key (assoc :key props))
(namespace (assoc :namespace props))
(source-file (assoc :source-file props))
(idris-err (assoc :error props))
(link-href (assoc :link-href props))
(image (assoc :image props)))
(append '(rear-nonsticky t)
(cond (name
(if (and (member (cadr decor)
'(:type :data :function :metavar))
name)
(append (list 'idris-ref (cadr name)
'idris-ref-style (cadr decor))
(when namespace
(list 'idris-namespace (cadr namespace))))
()))
(namespace
(if (or (equal (cadr decor) :module)
(equal (cadr decor) :namespace))
(append (list 'idris-namespace (cadr namespace))
(when source-file
(list 'idris-source-file (cadr source-file))))
()))
(link-href
(list 'keymap (idris-make-link-keymap (cadr link-href))
'idris-url (cadr link-href)))
(image
(list 'display
`(image :type imagemagick
:file ,(expand-file-name (cl-caddr image)
(file-name-directory idris-process-current-working-directory)))))
(t nil))
(if term
(list 'idris-tt-term (cadr term))
())
(if (and key (not (string-empty-p (cadr key))))
(list 'idris-name-key (concat "{{{{{" (cadr key) "}}}}}"))
())
(if idris-err
(list 'idris-tt-error (cadr idris-err))
())
(idris-semantic-properties-help-echo props)
(idris-semantic-properties-face props)
(idris-semantic-properties-eldoc props))))
(defun idris-repl-semantic-text-props (highlighting)
(cl-loop for (start length props) in highlighting
collecting (list start
length
(idris-semantic-properties props))))
(defun idris-add-overlay-properties (overlay plist)
"Add the contents of PLIST to the properties of OVERLAY."
(while (and plist (cdr plist))
(overlay-put overlay (car plist) (cadr plist))
(setq plist (cddr plist))))
;;; Was originally slime-search-property - thanks SLIME!
(defun idris-search-property (prop &optional backward prop-value-fn)
"Search for the next text range where PROP is non-nil.
Return the value of PROP, or nil if it is not found.
If BACKWARD is non-nil, search backward.
If PROP-VALUE-FN is non-nil use it to extract PROP's value."
(let ((next-candidate (if backward
#'previous-single-char-property-change
#'next-single-char-property-change))
(prop-value-fn (or prop-value-fn
(lambda ()
(get-text-property (point) prop))))
(start (point))
(prop-value))
(while (progn
(goto-char (funcall next-candidate (point) prop))
(not (or (setq prop-value (funcall prop-value-fn))
(eobp)
(bobp)))))
(cond (prop-value)
(t (goto-char start) nil))))
;;; Dispatching of events and helpers
(defmacro destructure-case (value &rest patterns)
"Dispatch VALUE to one of PATTERNS.
A cross between `cl-case' and `cl-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."
(declare (indent 1))
(let ((operator (gensym "op-"))
(operands (gensym "rand-"))
(tmp (gensym "tmp-")))
`(let* ((,tmp ,value)
(,operator (car ,tmp))
(,operands (cdr ,tmp)))
(cl-case ,operator
,@(mapcar (lambda (clause)
(if (eq (car clause) t)
`(t ,@(cdr clause))
(cl-destructuring-bind ((op &rest rands) &rest body) clause
`(,op (cl-destructuring-bind ,rands ,operands
. ,body)))))
patterns)
,@(if (eq (caar (last patterns)) t)
'()
`((t (error "ELISP destructure-case failed: %S" ,tmp))))))))
(defun idris-lidr-p (&optional buffer)
"Return t if BUFFER is a literate Idris file, or nil otherwise.
Use the current buffer if BUFFER is not supplied or is nil."
(let ((file-name (buffer-file-name buffer)))
;; We check for nil here because idris-lidr-p might be called on
;; buffers that don't have associated files, such as the REPL
;; buffer or an info buffer
(and (stringp file-name)
(string= (file-name-extension file-name) "lidr"))))
(defun idris-make-file-link-overlay (start end keymap help-echo)
(let ((overlay (make-overlay start end)))
(overlay-put overlay 'idris-file-link t)
(overlay-put overlay 'keymap keymap)
(overlay-put overlay 'mouse-face 'highlight)
(overlay-put overlay 'help-echo help-echo)))
(defun idris-clear-file-link-overlays (&optional mode)
"Remove all file link overlays from the current buffer."
(when (or (not mode) (eq major-mode mode))
(remove-overlays (point-min) (point-max) 'idris-file-link t)))
(defun idris-make-module-link (start end src-dir)
"Attempt to make the region between START and END into a
clickable link to open a module for editing, with modules located
relative to SRC-DIR"
(let* ((name (buffer-substring-no-properties start end))
(fname (split-string name "\\."))
(basename (concat (mapconcat 'file-name-as-directory (cons src-dir (butlast fname)) "")
(car (last fname))))
(idr (concat basename ".idr"))
(lidr (concat basename ".lidr")))
(cl-flet ((make-link (src-name)
(let ((map (make-sparse-keymap)))
(define-key map [mouse-2] #'(lambda ()
(interactive)
(find-file src-name)))
(idris-make-file-link-overlay start end map "mouse-2: edit module"))))
(if (file-exists-p idr)
(make-link idr)
(when (file-exists-p lidr)
(make-link lidr))))))
(defvar idris-protocol-version 0 "The protocol version.")
(defvar idris-protocol-version-minor 0 "The protocol minor version.")
(defun >=-protocol-version (major minor)
(or (> idris-protocol-version major)
(and (>= idris-protocol-version major)
(>= idris-protocol-version-minor minor))))
(defun idris-get-line-num (position)
"Get the absolute line number at POSITION."
;; In Emacs 26.1 > line-number-at-pos accepts
;; additional optional argument ABSOLUTE which
;; removes need for `save-restriction' and `widen'
(save-restriction
(widen)
(line-number-at-pos position)))
(defun idris-operator-at-position-p (pos)
"Return t if syntax lookup is `.' or char after POS is `-'."
(or (equal (syntax-after pos) (string-to-syntax "."))
(eq (char-after pos) ?-)))
(defun idris-thing-at-point ()
"Return the line number and name at point as a cons.
Use this in Idris source buffers."
(let ((line (idris-get-line-num (point))))
(cons
(if (idris-operator-at-position-p (point))
(save-excursion
(skip-syntax-backward ".")
(let ((beg (point)))
(skip-syntax-forward ".")
(buffer-substring-no-properties beg (point))))
;; Try if we're on a symbol or fail otherwise.
(or (current-word t)
(user-error "Nothing identifiable under point")))
line)))
(defun idris-name-at-point ()
"Return the name at point, taking into account semantic annotations.
Use this in Idris source buffers or in compiler-annotated output.
Does not return a line number."
(let ((ref (cl-remove-if
#'null
(cons (get-text-property (point) 'idris-ref)
(cl-loop for overlay in (overlays-at (point))
collecting (overlay-get overlay 'idris-ref))))))
(car (or ref (idris-thing-at-point)))))
(provide 'idris-common-utils)