-
Notifications
You must be signed in to change notification settings - Fork 11
/
rustic-compile.el
611 lines (531 loc) · 23.9 KB
/
rustic-compile.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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
;;; rustic-compile.el --- Compile facilities -*-lexical-binding: t-*-
;;; Commentary:
;; Unlike compile.el, rustic makes use of a non dumb terminal in order to receive
;; all ANSI control sequences, which get translated by xterm-color.
;; This file also adds a derived compilation mode. Error matching regexes from
;; compile.el are removed.
;;; Code:
(require 'markdown-mode)
(require 'xterm-color)
(require 's)
(require 'compile)
(require 'rustic)
(defvar rustic-format-trigger)
(defvar rustic-format-on-save)
;;; Customization
(defgroup rustic-compilation nil
"Rust Compilation."
:group 'rustic
:group 'processes)
(defcustom rustic-compile-command (purecopy "cargo build")
"Default command for rust compilation."
:type 'string
:group 'rustic-compilation)
(defcustom rustic-compile-command-remote "~/.cargo/bin/cargo"
"Default command for remote rust compilation."
:type 'string
:group 'rustic-compilation)
(defun rustic-compile-command ()
(if (file-remote-p (or (buffer-file-name) ""))
rustic-compile-command-remote
rustic-compile-command))
(defcustom rustic-compile-display-method 'display-buffer
"Default function used for displaying compilation buffer."
:type 'function
:group 'rustic-compilation)
(defcustom rustic-compile-backtrace (or (getenv "RUST_BACKTRACE") "0")
"Set environment variable `RUST_BACKTRACE'."
:type '(choice (string :tag "0")
(string :tag "1")
(string :tag "full"))
:group 'rustic-compilation)
(defcustom rustic-compile-rustflags (or (getenv "RUSTFLAGS") "")
"String used for RUSTFLAGS."
:type 'string
:group 'rustic-compilation)
(defcustom rustic-list-project-buffers-function
(if (fboundp 'projectile-project-buffers)
'projectile-project-buffers
'rustic-project-buffer-list)
"Function used to list buffers belonging to current project."
:type '(choice (const projectile-project-buffers)
(const rustic-project-buffer-list)
function)
:group 'rustic)
;;; Faces
(define-obsolete-face-alias 'rustic-message-face
'rustic-message "1.2")
(define-obsolete-face-alias 'rustic-compilation-error-face
'rustic-compilation-error "1.2")
(define-obsolete-face-alias 'rustic-compilation-warning-face
'rustic-compilation-warning "1.2")
(define-obsolete-face-alias 'rustic-compilation-info-face
'rustic-compilation-info "1.2")
(define-obsolete-face-alias 'rustic-compilation-line-face
'rustic-compilation-line "1.2")
(define-obsolete-face-alias 'rustic-compilation-column-face
'rustic-compilation-column "1.2")
(defface rustic-message
'((t :inherit default))
"Don't use `compilation-message-face', as ansi colors get messed up."
:group 'rustic-compilation)
(defface rustic-compilation-error
'((t :inherit default))
"Override `compilation-error-face' for rust compilation."
:group 'rustic-compilation)
(defface rustic-compilation-warning
'((t :inherit default))
"Override `compilation-warning-face' for rust compilation."
:group 'rustic-compilation)
(defface rustic-compilation-info
'((t :inherit default))
"Override `compilation-info-face' for rust compilation."
:group 'rustic-compilation)
(defface rustic-compilation-line
'((t :inherit default))
"Override `compilation-line-face' for rust compilation."
:group 'rustic-compilation)
(defface rustic-compilation-column
'((t :inherit default))
"Override `compilation-column-face' for rust compilation."
:group 'rustic-compilation)
;;; Compilation-mode
(defvar rustic-compilation-mode-map
(let ((map (make-sparse-keymap)))
(suppress-keymap map t)
(set-keymap-parent map compilation-mode-map)
(define-key map "p" 'rustic-popup)
(define-key map [remap recompile] 'rustic-recompile)
map)
"Keymap for rust compilation log buffers.")
(defvar rustic-compilation-error
(let ((err "^error[^:]*:[^\n]*\n\s*-->\s")
(file "\\([^\n]+\\)")
(start-line "\\([0-9]+\\)")
(start-col "\\([0-9]+\\)"))
(let ((re (concat err file ":" start-line ":" start-col)))
(cons re '(1 2 3))))
"Create hyperlink in compilation buffers for rust errors.")
(defvar rustic-compilation-warning
(let ((warning "^warning:[^\n]*\n\s*-->\s")
(file "\\([^\n]+\\)")
(start-line "\\([0-9]+\\)")
(start-col "\\([0-9]+\\)"))
(let ((re (concat warning file ":" start-line ":" start-col)))
(cons re '(1 2 3 1)))) ;; 1 for warning
"Create hyperlink in compilation buffers for rust warnings.")
(defvar rustic-compilation-info
(let ((file "\\([^\n]+\\)")
(start-line "\\([0-9]+\\)")
(start-col "\\([0-9]+\\)"))
(let ((re (concat "^ *::: " file ":" start-line ":" start-col)))
(cons re '(1 2 3 0)))) ;; 0 for info type
"Create hyperlink in compilation buffers for file paths preceded by ':::'.")
(defvar rustic-compilation-panic
(let ((panic "thread '[^']+' panicked at ")
(file "\\([^\n]+\\)")
(start-line "\\([0-9]+\\)")
(start-col "\\([0-9]+\\)"))
(let ((re (concat panic file ":" start-line ":" start-col ":")))
(cons re '(1 2 3))))
"Match thread panics.")
(define-compilation-mode rustic-compilation-mode "rust-compilation"
"Rust compilation mode.
Error matching regexes from compile.el are removed."
(setq-local compilation-message-face 'rustic-message)
(setq-local compilation-error-face 'rustic-compilation-error)
(setq-local compilation-warning-face 'rustic-compilation-warning)
(setq-local compilation-info-face 'rustic-compilation-info)
(setq-local compilation-column-face 'rustic-compilation-column)
(setq-local compilation-line-face 'rustic-compilation-line)
(setq-local compilation-error-regexp-alist-alist nil)
(add-to-list 'compilation-error-regexp-alist-alist
(cons 'rustic-error rustic-compilation-error))
(add-to-list 'compilation-error-regexp-alist-alist
(cons 'rustic-warning rustic-compilation-warning))
(add-to-list 'compilation-error-regexp-alist-alist
(cons 'rustic-info rustic-compilation-info))
(add-to-list 'compilation-error-regexp-alist-alist
(cons 'rustic-panic rustic-compilation-panic))
(setq-local compilation-error-regexp-alist nil)
(add-to-list 'compilation-error-regexp-alist 'rustic-error)
(add-to-list 'compilation-error-regexp-alist 'rustic-warning)
(add-to-list 'compilation-error-regexp-alist 'rustic-info)
(add-to-list 'compilation-error-regexp-alist 'rustic-panic)
(add-hook 'compilation-filter-hook #'rustic-insert-errno-button nil t)
(setq-local rustic-compilation-workspace (rustic-buffer-workspace)))
;;; Compilation Process
(defvar-local rustic-compilation-directory nil
"original directory for rust compilation process.")
(defvar rustic-compilation-process-name "rustic-compilation-process"
"Process name for rust compilation processes.")
(defvar rustic-compilation-buffer-name "*rustic-compilation*"
"Buffer name for rust compilation process buffers.")
(defun rustic-make-process (&rest args)
"Wrapper for `make-process'.
Set environment variables for rust process."
(let ((coding-system-for-read 'binary)
(process-environment (nconc
(list
(format "TERM=%s" "ansi")
(format "RUST_BACKTRACE=%s" rustic-compile-backtrace))
process-environment)))
(when (> (length rustic-compile-rustflags) 0)
(setq process-environment
(nconc (list (format "RUSTFLAGS=%s" rustic-compile-rustflags))
process-environment)))
(let ((process (apply
#'start-file-process (plist-get args :name)
(plist-get args :buffer)
(plist-get args :command))))
(run-hook-with-args 'compilation-start-hook process)
(set-process-filter process (plist-get args :filter))
(set-process-sentinel process (plist-get args :sentinel))
(set-process-coding-system process 'utf-8-emacs-unix 'utf-8-emacs-unix)
(process-put process 'command (plist-get args :command))
(process-put process 'workspace (plist-get args :workspace))
(process-put process 'file-buffer (plist-get args :file-buffer))
process)))
(defun rustic-compilation-setup-buffer (buf dir mode &optional no-mode-line)
"Prepare BUF for compilation process."
(let ((inhibit-read-only t))
(with-current-buffer buf
(erase-buffer)
(setq default-directory dir)
(funcall mode)
(setq-local rustic-compilation-directory dir)
(unless no-mode-line
(setq mode-line-process
'((:propertize ":%s" face compilation-mode-line-run)
compilation-mode-line-errors)))
(force-mode-line-update)
(if (or compilation-auto-jump-to-first-error
(eq compilation-scroll-output 'first-error))
(set (make-local-variable 'compilation-auto-jump-to-next) t))
(sit-for 0))))
(defvar rustic-before-compilation-hook nil)
(defun rustic-compilation-start (command &optional args)
"Start a compilation process COMMAND with ARGS.
ARGS is a plist that affects how the process is run,
see `rustic-compilation' for details. First run
`rustic-before-compilation-hook' and if any of these
functions fails, then do not start compilation."
(save-excursion
(when (run-hook-with-args-until-failure 'rustic-before-compilation-hook (plist-get args :clippy-fix))
(rustic-compilation command args))))
(defun rustic-compilation (command &optional args)
"Start a compilation process with COMMAND.
ARGS is a plist that affects how the process is run.
- `:no-display' don't display buffer when starting compilation process
- `:buffer' name for process buffer
- `:process' name for compilation process
- `:mode' mode for process buffer
- `:directory' set `default-directory'
- `:sentinel' process sentinel"
(rustic--inheritenv
(let* ((buf (get-buffer-create
(or (plist-get args :buffer) rustic-compilation-buffer-name)))
(process (or (plist-get args :process) rustic-compilation-process-name))
(mode (or (plist-get args :mode) 'rustic-compilation-mode))
(directory (or (plist-get args :directory) (funcall rustic-compile-directory-method)))
(workspace (rustic-buffer-workspace (plist-get args :no-default-dir)))
(sentinel (or (plist-get args :sentinel) #'rustic-compilation-sentinel))
(file-buffer (current-buffer)))
(rustic-compilation-setup-buffer buf directory mode)
(setq next-error-last-buffer buf)
(unless (plist-get args :no-display)
(funcall rustic-compile-display-method buf))
(with-current-buffer buf
(setq compilation--start-time (float-time))
(let ((inhibit-read-only t))
(insert (format "%s \n" (s-join " " command))))
(rustic-make-process :name process
:buffer buf
:command command
:file-buffer file-buffer
:filter #'rustic-compilation-filter
:sentinel sentinel
:workspace workspace
:file-handler t)))))
(defun rustic-compilation-filter (proc string)
"Insert the text emitted by PROC.
Translate STRING with `xterm-color-filter'."
(let ((buffer (process-buffer proc))
buffer-empty-p)
(when (buffer-live-p buffer)
(with-current-buffer buffer
(when (= (buffer-size) 0)
(setq buffer-empty-p t))
(let ((inhibit-read-only t)
;; `save-excursion' doesn't use the right insertion-type for us.
(pos (copy-marker (point) t))
;; `save-restriction' doesn't use the right insertion type either:
;; If we are inserting at the end of the accessible part of the
;; buffer, keep the inserted text visible.
(min (point-min-marker))
(max (copy-marker (point-max) t))
(compilation-filter-start (marker-position (process-mark proc)))
(xterm-string (xterm-color-filter string)))
(unwind-protect
(progn
(widen)
(goto-char compilation-filter-start)
;; We used to use `insert-before-markers', so that windows with
;; point at `process-mark' scroll along with the output, but we
;; now use window-point-insertion-type instead.
(insert xterm-string)
(compilation--ensure-parse (point-max))
(unless comint-inhibit-carriage-motion
(comint-carriage-motion (process-mark proc) (point)))
(set-marker (process-mark proc) (point))
(run-hooks 'compilation-filter-hook))
(goto-char pos)
(narrow-to-region min max)
(set-marker pos nil)
(set-marker min nil)
(set-marker max nil))))
;; Issue #101: set window point to `point-min' when `compilation-scroll-output' is nil
(when (and (not compilation-scroll-output) buffer-empty-p)
(let ((win (get-buffer-window buffer)))
(set-window-start win (point-min))
(set-window-point win (point-min)))))))
;; we only use this sentinel to set `default-directory' to the workspace
;; dir to ensure goto-error functions work
(defun rustic-compilation-sentinel (proc msg)
"Sentinel for compilation buffers."
(let ((buffer (process-buffer proc)))
(with-current-buffer buffer
(setq default-directory (process-get proc 'workspace)))
(if (memq (process-status proc) '(exit signal))
(if (null (buffer-name buffer))
;; buffer killed
(set-process-buffer proc nil)
(with-current-buffer buffer
;; Write something in the compilation buffer
;; and hack its mode line.
(compilation-handle-exit (process-status proc)
(process-exit-status proc)
msg)
;; Since the buffer and mode line will show that the
;; process is dead, we can delete it now. Otherwise it
;; will stay around until M-x list-processes.
(delete-process proc)))
(setq compilation-in-progress (delq proc compilation-in-progress))
(compilation--update-in-progress-mode-line))))
(defun rustic-compilation-process-live (&optional nosave)
"Ask to kill live rustic process if any and call `rustic-save-some-buffers'.
If optional NOSAVE is non-nil, then do not do the latter.
Return non-nil if there was a live process."
(let ((procs (mapcan (lambda (proc)
(and proc
(let ((proc (get-process proc)))
(and (process-live-p proc)
(list proc)))))
(list rustic-compilation-process-name
(bound-and-true-p rustic-format-process-name)
(bound-and-true-p rustic-clippy-process-name)
(bound-and-true-p rustic-run-process-name)
(bound-and-true-p rustic-test-process-name)
(bound-and-true-p rustic-expand-process-name)
(bound-and-true-p rustic-spellcheck-process-name)))))
(when (> (length procs) 1)
(error "BUG: Multiple live rustic processes: %s" procs))
(when procs
(rustic-process-kill-p (car procs)))
(unless nosave
(rustic-save-some-buffers t))
procs))
(defun rustic-process-kill-p (proc &optional no-error)
"Don't allow two rust processes at once.
If NO-ERROR is t, don't throw error if user chooses not to kill running process."
(if (yes-or-no-p
(format "`%s' is running; kill it? " proc))
(condition-case ()
(progn
(interrupt-process proc)
(sit-for 0.5)
(delete-process proc))
(error nil))
(unless no-error
(error "Cannot have two rust processes at once"))))
(defun rustic-save-some-buffers (&optional pre-compile)
"Unlike `save-some-buffers', only consider project related files.
The optional argument `pre-compile' is used for rustic compile commands
that make use of `compilation-ask-about-save'. If called without
the optional argument, `buffer-save-without-query' determines if
buffers will saved automatically.
Buffers are formatted after saving if turned on by `rustic-format-trigger'."
(let ((buffers (cl-remove-if-not
#'buffer-file-name
(if (fboundp rustic-list-project-buffers-function)
(funcall rustic-list-project-buffers-function)
(buffer-list))))
(b (get-buffer (bound-and-true-p rustic-format-buffer-name))))
(when (buffer-live-p b)
(kill-buffer b))
(dolist (buffer buffers)
(when (and (buffer-live-p buffer)
(buffer-modified-p buffer))
(with-current-buffer buffer
(let ((saved-p nil))
;; also set rustic-format-on-save for backwards compatibility
(let ((rustic-format-trigger nil)
(rustic-format-on-save nil))
(setq saved-p
(if (if pre-compile
(not compilation-ask-about-save)
buffer-save-without-query)
(progn (save-buffer) t)
(if (yes-or-no-p (format "Save file %s ? "
(buffer-file-name buffer)))
(progn (save-buffer) t)
nil))))
(when (and saved-p
(eq major-mode 'rustic-mode)
(fboundp 'rustic-maybe-format-after-save))
(rustic-maybe-format-after-save buffer))))))))
(defun rustic-compile-goto-error-hook (orig-fun &rest args)
"Provide possibility use `compile-goto-error' on line numbers in compilation buffers.
This hook checks if there's a line number at the beginning of the
current line in an error section."
(-if-let* ((rustic-p (derived-mode-p 'rustic-compilation-mode))
(default-directory rustic-compilation-workspace)
(line-contents (buffer-substring-no-properties
(line-beginning-position)
(line-end-position)))
(line-number-p (string-match "^[0-9]+\s+\|" line-contents))
(line-number (car (split-string line-contents))))
(save-excursion
;; find compilation message in error
(while (not (or (get-text-property (point) 'compilation-message)
(bobp)))
(forward-line -1))
;; get file of text property
(let* ((msg (get-text-property (point) 'compilation-message))
(loc (compilation--message->loc msg))
(file (caar (compilation--loc->file-struct loc))))
;; open file of error and goto line number that we parsed from the line we are on
(with-current-buffer (find-file-other-window file)
(save-restriction
(widen)
(goto-char (point-min))
(forward-line (1- (string-to-number line-number)))))))
(apply orig-fun args)))
(advice-add 'compile-goto-error :around #'rustic-compile-goto-error-hook)
(defun rustic-compile-send-input ()
"Read string from minibuffer and send it to the rust process of the current
buffer."
(interactive)
(let ((input (read-from-minibuffer "Send input to rust process: "))
(proc (get-buffer-process (current-buffer)))
(inhibit-read-only t))
(process-send-string proc (concat input "\n"))))
;;; Rustc
(defface rustic-errno-face
'((t :foreground "red3"))
"Error number face"
:group 'rustic-compilation)
(defun rustic-insert-errno-button ()
"Insert buttons in `rustic-compilation-mode'."
(save-excursion
(let ((start compilation-filter-start)
(end (point)))
(goto-char start)
(save-match-data
(while (re-search-forward (concat "error\\[E[0-9]+\\]") end t)
(make-button (match-beginning 0)
(match-end 0)
:type 'rustc-errno))))))
(defun rustic-explain-error (button)
"Open buffer with explanation for error at point."
(rustic--inheritenv
(let* ((button-string (button-label button))
(errno (progn (string-match "E[0-9]+" button-string)
(match-string 0 button-string)))
(buf (get-buffer-create "*rust errno*"))
(inhibit-read-only t))
(with-current-buffer buf
(erase-buffer)
(insert (shell-command-to-string
(concat "rustc --explain=" errno)))
(markdown-view-mode)
(setq
header-line-format
(concat (propertize " " 'display
`(space :align-to (- right-fringe ,(1+ (length errno)))))
(propertize errno 'face 'rustic-errno-face)))
(setq-local markdown-fontify-code-blocks-natively t)
(setq-local markdown-fontify-code-block-default-mode 'rustic-mode)
(markdown-toggle-markup-hiding 1)
(goto-char (point-min)))
(pop-to-buffer buf))))
(define-button-type 'rustc-errno
'action #'rustic-explain-error
'follow-link t
'face 'rustic-errno-face
'help-echo "mouse-1, RET: Explain errno")
;;; Interactive
;;;###autoload
(defun rustic-compile (command)
"Run COMMAND in the current Rust workspace root.
Interactively, prompts for the command if the variable
`compilation-read-command' is non-nil; otherwise uses
`rustic-compile-command'."
(interactive
(list
(if compilation-read-command
(compilation-read-command (or (car compilation-arguments)
(rustic-compile-command)))
(rustic-compile-command))))
(rustic-set-compilation-arguments command)
(setq compilation-directory (funcall rustic-compile-directory-method))
(rustic-compilation-process-live)
(rustic-compilation-start (split-string (car compilation-arguments))
(list :directory compilation-directory
:clippy-fix t)))
;; TODO: we don't use the other options stored in `compilation-arguments',
;; but probably we should
(defun rustic-set-compilation-arguments (command)
"Set `compilation-arguments' using COMMAND.
It's a list that looks like (list command mode name-function highlight-regexp)."
;; TODO: compile.el uses setq-local, but that does seem weird right ?
(setq compilation-arguments (list command nil nil nil)))
;;;###autoload
(defun rustic-recompile ()
"Re-compile the program using `compilation-arguments'."
(interactive)
(let* ((command (or (car compilation-arguments) (format "%s %s" (rustic-compile-command) rustic-cargo-build-arguments)))
(dir compilation-directory))
(rustic-compilation-process-live)
(rustic-compilation-start (split-string command)
(list :directory dir :clippy-fix t))))
;;; Spinner
(require 'spinner)
(defcustom rustic-display-spinner t
"Display spinner."
:type 'boolean
:group 'rustic)
(defcustom rustic-spinner-type 'horizontal-moving
"Holds the type of spinner to be used in the mode-line.
Takes a value accepted by `spinner-start'."
:type `(choice (choice :tag "Choose a spinner by name"
,@(mapcar (lambda (c) (list 'const (car c)))
spinner-types))
(const :tag "A random spinner" random)
(repeat :tag "A list of symbols from `spinner-types' to randomly choose from"
(choice :tag "Choose a spinner by name"
,@(mapcar (lambda (c) (list 'const (car c)))
spinner-types)))
(vector :tag "A user defined vector"
(repeat :inline t string))))
(defmacro rustic-with-spinner (spinner val mode-line &rest body)
(declare (indent defun))
`(when rustic-display-spinner
(when (spinner-p ,spinner)
(spinner-stop ,spinner))
(setq ,spinner ,val)
(setq mode-line-process ,mode-line)
,@body))
;;; _
(provide 'rustic-compile)
;;; rustic-compile.el ends here