forked from brotzeit/rustic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrustic-rustfmt.el
More file actions
381 lines (330 loc) · 14.1 KB
/
Copy pathrustic-rustfmt.el
File metadata and controls
381 lines (330 loc) · 14.1 KB
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
;;; rustic-rustfmt.el --- Support for rustfmt -*- lexical-binding:t -*-
;;; Commentary:
;; This library implements support for `rustfmt', a tool that formats
;; Rust code according to style guidelines.
;;; Code:
(require 'project)
(require 'rustic-cargo)
;;; Options
(defcustom rustic-rustfmt-bin "rustfmt"
"Path to rustfmt executable."
:type 'string
:group 'rustic)
(defcustom rustic-rustfmt-bin-remote "~/.cargo/bin/rustfmt"
"Path to remote rustfmt executable."
:type 'string
:group 'rustic)
(defun rustic-rustfmt-bin ()
(if (file-remote-p (or (buffer-file-name) ""))
rustic-rustfmt-bin-remote
rustic-rustfmt-bin))
(defcustom rustic-rustfmt-args ""
"String of additional arguments."
:type 'string
:group 'rustic)
(defcustom rustic-rustfmt-config-alist nil
"An alist of (KEY . VAL) pairs that are passed to rustfmt.
KEY is a symbol that corresponds to a config value of rustfmt.
VALUE is a string, an integer or a boolean."
:type '(alist :key-type symbol
:value-type (choice string integer boolean))
:group 'rustic)
(defcustom rustic-format-trigger nil
"This option allows you to automatically run rustfmt when saving
or before using a compilation/cargo command.
`on-compile' calls 'cargo fmt' in the directory that is returned by
the function used in `rustic-compile-directory-method'."
:type '(choice (const :tag "Format buffer before saving." on-save)
(const :tag "Run 'cargo fmt' before compilation." on-compile)
(const :tag "Don't format automatically." nil))
:group 'rustic)
(defcustom rustic-format-on-save-method 'rustic-format-file
"Default function used for formatting before saving.
This function will only be used when `rustic-format-trigger' is set
to 'on-save."
:type 'function
:group 'rustic)
(defcustom rustic-format-display-method 'pop-to-buffer
"Default function used for displaying rustfmt buffer."
:type 'function
:group 'rustic)
;;; _
(defvar rustic-format-process-name "rustic-rustfmt-process"
"Process name for rustfmt processes.")
(defvar rustic-format-buffer-name "*rustfmt*"
"Buffer name for rustfmt process buffers.")
(defvar rustic-save-pos nil
"Marker, holding location of the cursor's position before
running rustfmt.")
(defun rustic-format-start-process (sentinel &rest args)
"Run rustfmt with ARGS.
:buffer BUFFER -- BUFFER is the buffer that is being formatted.
:stdin STRING -- STRING will be written to the standard input of rustfmt.
When `:files' is non-nil, STRING will be ignored by rustfmt.
:files FILES -- FILES is a string or list of strings that
specify the input file or files to rustfmt.
:command COMMAND -- COMMAND is a string or a list of strings.
When COMMAND is non-nil, it replaces the default command.
When COMMAND is a string, it is the program file name.
When COMMAND is a list, it's `car' is the program file name
and it's `cdr' is a list of arguments."
(let* ((err-buf (get-buffer-create rustic-format-buffer-name))
(inhibit-read-only t)
(dir (funcall rustic-compile-directory-method))
(buffer (plist-get args :buffer))
(string (plist-get args :stdin))
(files (plist-get args :files))
(files (if (listp files) files (list files)))
(command (or (plist-get args :command)
(rustic-compute-rustfmt-args)))
(command (if (listp command) command (list command))))
(setq rustic-save-pos (set-marker (make-marker) (point) (current-buffer)))
(rustic-compilation-setup-buffer err-buf dir 'rustic-format-mode t)
(--each files
(unless (file-exists-p it)
(error (format "File %s does not exist." it))))
(with-current-buffer err-buf
(let* ((c `(,(rustic-rustfmt-bin)
,rustic-rustfmt-args
,@command "--" ,@files))
(proc (rustic-make-process :name rustic-format-process-name
:buffer err-buf
:command (remove "" c)
:filter #'rustic-compilation-filter
:sentinel sentinel
:file-handler t)))
(setq next-error-last-buffer buffer)
(when string
(while (not (process-live-p proc))
(sleep-for 0.01))
(process-send-string proc (concat string "\n"))
(process-send-eof proc))
proc))))
(defun rustic-compute-rustfmt-args ()
"Compute the arguments to rustfmt from `rustic-rustfmt-config-alist'."
(let (args)
(cl-dolist (elem rustic-rustfmt-config-alist args)
(cl-destructuring-bind (key . val) elem
(push (format "%s=%s" key (if (booleanp val) (if val "true" "false") val)) args)
(push "--config" args)))))
(defun rustic-compute-rustfmt-file-lines-args (file start end)
"Compute the arguments to rustfmt to modify a particular region."
(list "--unstable-features"
"--file-lines"
(format "[{\"file\":\"%s\",\"range\":[%d,%d]}]" file start end)))
(defun rustic-format-sentinel (proc output)
"Sentinel for rustfmt processes when using stdin."
(ignore-errors
(let ((proc-buffer (process-buffer proc))
(inhibit-read-only t))
(with-current-buffer proc-buffer
(if (string-match-p "^finished" output)
(let ((file-buffer next-error-last-buffer)
;; replace-buffer-contents was in emacs 26.1, but it
;; was broken for non-ASCII strings, so we need 26.2.
(use-replace (version<= "26.2" emacs-version)))
(unless use-replace
(copy-to-buffer file-buffer (point-min) (point-max)))
(with-current-buffer file-buffer
(if use-replace
(replace-buffer-contents proc-buffer))
(goto-char rustic-save-pos))
(kill-buffer proc-buffer)
(message "Formatted buffer with rustfmt."))
(goto-char (point-min))
(when-let ((file (buffer-file-name next-error-last-buffer)))
(save-excursion
(save-match-data
(when (search-forward "<stdin>" nil t)
(replace-match file)))))
(with-current-buffer next-error-last-buffer
(goto-char rustic-save-pos))
(funcall rustic-format-display-method proc-buffer)
(message "Rustfmt error."))))))
(defun rustic-format-file-sentinel (proc output)
"Sentinel for rustfmt processes when formatting a file."
(ignore-errors
(let ((proc-buffer (process-buffer proc)))
(with-current-buffer proc-buffer
(if (string-match-p "^finished" output)
(and
(with-current-buffer next-error-last-buffer
(revert-buffer t t))
(kill-buffer proc-buffer))
(sit-for 0.1)
(with-current-buffer next-error-last-buffer
(goto-char rustic-save-pos))
(goto-char (point-min))
(funcall rustic-format-display-method proc-buffer)
(message "Rustfmt error."))))))
(define-derived-mode rustic-format-mode rustic-compilation-mode "rustfmt"
:group 'rustic)
(define-derived-mode rustic-cargo-fmt-mode rustic-compilation-mode "cargo-fmt"
:group 'rustic)
;;;###autoload
(defun rustic-cargo-fmt ()
"Use rustfmt via cargo."
(interactive)
(let ((command (list (rustic-cargo-bin) "fmt"))
(buffer rustic-format-buffer-name)
(proc rustic-format-process-name)
(mode 'rustic-cargo-fmt-mode))
(rustic-compilation-process-live)
(rustic-compilation command
(list
:no-display t
:buffer buffer
:process proc
:mode mode
:sentinel #'rustic-cargo-fmt-sentinel))))
(defun rustic-cargo-fmt-sentinel (proc output)
"Sentinel for formatting with `rustic-cargo-fmt'."
(let ((proc-buffer (process-buffer proc))
(inhibit-read-only t))
(with-current-buffer proc-buffer
(if (not (string-match-p "^finished" output))
(funcall rustic-compile-display-method proc-buffer)
(when (fboundp rustic-list-project-buffers-function)
(let ((buffers (cl-remove-if-not
#'buffer-file-name
(funcall rustic-list-project-buffers-function))))
(dolist (b buffers)
(with-current-buffer b
(revert-buffer t t)))))
(kill-buffer proc-buffer)
(message "Workspace formatted with cargo-fmt.")))))
(defun rustic--get-line-number (pos)
(let ((line-number 0))
(save-excursion
(goto-char pos)
(setq line-number (string-to-number (format-mode-line "%l"))))
line-number))
;;;###autoload
(defun rustic-format-region (begin end)
"Format the current active region using rustfmt.
This operation requires a nightly version of rustfmt.
"
(interactive "r")
(unless (or (eq major-mode 'rustic-mode)
(eq major-mode 'rustic-macro-expansion-mode))
(error "Not a rustic-mode buffer."))
(if (not (region-active-p)) (rustic-format-buffer)
(unless (equal (call-process "cargo" nil nil nil "+nightly") 0)
(error "Need nightly toolchain to format region."))
(let* ((buf (current-buffer))
(file (buffer-file-name buf))
(start (rustic--get-line-number begin))
(finish (rustic--get-line-number end)))
(rustic-compilation-process-live t)
(rustic-format-start-process
'rustic-format-file-sentinel
:buffer buf
:command
(append (list (rustic-cargo-bin) "+nightly" "fmt" "--")
(rustic-compute-rustfmt-file-lines-args file
start
finish))))))
;;;###autoload
(defun rustic-format-buffer ()
"Format the current buffer using rustfmt.
Provide optional argument NO-STDIN for `rustic-before-save-hook' since there
were issues when using stdin for formatting."
(interactive)
(unless (or (eq major-mode 'rustic-mode)
(eq major-mode 'rustic-macro-expansion-mode))
(error "Not a rustic-mode buffer."))
(rustic-compilation-process-live t)
(rustic-format-start-process 'rustic-format-sentinel
:buffer (current-buffer)
:stdin (buffer-string)))
;;;###autoload
(defun rustic-format-file (&optional file)
"Unlike `rustic-format-buffer' format file directly and revert the buffer."
(interactive "P")
(let* ((buf (current-buffer))
(file (or (if file (read-from-minibuffer "Format file: ") nil)
(buffer-file-name buf)
(read-from-minibuffer "Format file: ")))
(string (buffer-string)))
(write-region string nil file nil 0)
(let ((proc (rustic-format-start-process 'rustic-format-file-sentinel
:buffer buf
:files file)))
(while (eq (process-status proc) 'run)
(sit-for 0.05)))))
(defun rustic-project-root (project)
"Runs the correct version of project-root function for
different emacs versions."
(if (version<= emacs-version "28.0")
(car (funcall 'project-roots project))
(funcall 'project-root project)))
(defun rustic-project-buffer-list ()
"Return a list of the buffers belonging to the current project.
This is basically a wrapper around `project--buffer-list'."
(when-let ((pr (project-current)))
(if (fboundp 'project--buffer-list)
(project--buffer-list pr)
;; Like the above function but for releases before Emacs 28.
(let ((root (rustic-project-root pr))
bufs)
(dolist (buf (buffer-list))
(let ((filename (or (buffer-file-name buf)
(buffer-local-value 'default-directory buf))))
(when (and filename (file-in-directory-p filename root))
(push buf bufs))))
(nreverse bufs)))))
;;; Hooks
(defun rustic-maybe-format-before-compilation ()
(if (eq rustic-format-trigger 'on-compile)
(let ((proc (rustic-cargo-fmt)))
(while (eq (process-status proc) 'run)
(sit-for 0.1))
(and (not (zerop (process-exit-status proc)))
(funcall rustic-compile-display-method (process-buffer proc))
t))
t))
(add-hook 'rustic-before-compilation-hook
#'rustic-maybe-format-before-compilation)
(defun rustic-before-save-hook ()
"Don't throw error if rustfmt isn't installed, as it makes saving impossible."
(when (and (rustic-format-on-save-p)
(not (rustic-compilation-process-live t)))
(condition-case nil
(progn
(if (file-remote-p (buffer-file-name))
(rustic-format-buffer)
(funcall rustic-format-on-save-method))
(sit-for 0.1))
(error nil))))
(defun rustic-after-save-hook ()
"Check if rustfmt is installed after saving the file."
(when (rustic-format-on-save-p)
(unless (executable-find (rustic-rustfmt-bin))
(error "Could not locate executable \"%s\"" (rustic-rustfmt-bin)))))
(defun rustic-maybe-format-after-save (buffer)
(when (rustic-format-on-save-p)
(let* ((file (buffer-file-name buffer))
(proc (rustic-format-start-process
'rustic-format-file-sentinel
:buffer buffer
:files file)))
(while (eq (process-status proc) 'run)
(sit-for 0.1)))))
(defvar rustic-format-on-save nil
"Format rust buffers before saving using rustfmt.")
(make-obsolete 'rustic-format-on-save 'rustic-format-trigger "Rustic 0.19")
(defun rustic-format-on-save-p ()
"Return non-nil if formatting should happen when saving.
See option `rustic-format-trigger'. For backward compatibility,
if obsolete `rustic-format-on-save' is non-nil, then also return
non-nil."
(or rustic-format-on-save (eq rustic-format-trigger 'on-save)))
(defun rustic-save-some-buffers-advice (orig-fun &rest args)
(let ((rustic-format-trigger nil)
(rustic-format-on-save nil))
(apply orig-fun args)))
(advice-add 'save-some-buffers :around
#'rustic-save-some-buffers-advice)
;;; _
(provide 'rustic-rustfmt)
;;; rustic-rustfmt.el ends here