-
Notifications
You must be signed in to change notification settings - Fork 11
/
rustic-babel.el
522 lines (463 loc) · 21.2 KB
/
rustic-babel.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
;;; rustic-babel.el --- org-babel facilities for cargo -*-lexical-binding: t-*-
;;; Code:
(require 'org)
(require 'org-element)
(require 'ob)
(require 'ob-eval)
(require 'ob-ref)
(require 'ob-core)
(require 'rustic-rustfmt)
(defvar rustic-info nil)
(add-to-list 'org-src-lang-modes '("rust" . rustic))
(add-to-list 'org-babel-tangle-lang-exts '("rustic" . "rs"))
(defalias 'org-babel-execute:rust #'org-babel-execute:rustic)
(defcustom rustic-babel-display-compilation-buffer nil
"Whether to display compilation buffer."
:type 'boolean
:group 'rustic-babel)
(defcustom rustic-babel-display-error-popup t
"Diplay compilation error or panic in error popup.
On failures and panic during execution, should the error be
displayed separately or as part of popup or should it be part of
results block ? By default we display it as separate popup."
:type 'boolean
:group 'rustic-babel)
(defcustom rustic-babel-auto-wrap-main t
"Whether to auto wrap body in `fn main' to function call if none exists."
:type 'boolean
:group 'rustic-babel)
(defcustom rustic-babel-format-src-block t
"Whether to format a src block automatically after successful execution."
:type 'boolean
:group 'rustic-babel)
(defcustom rustic-babel-default-toolchain nil
"Active toolchain for babel blocks.
When passing a toolchain to a block as argument, this variable won't be
considered."
:type '(choice (string :tag "String")
(const :tag "Nil" nil))
:group 'rustic-babel)
(defvar rustic-babel-buffer-name '((:default . "*rust-babel*")))
(defvar rustic-babel-process-name "rustic-babel-process"
"Process name for org-babel rust compilation processes.")
(defvar rustic-babel-compilation-buffer-name "*rustic-babel-compilation-buffer*"
"Buffer name for org-babel rust compilation process buffers.")
(defvar rustic-babel-dir nil
"Holds the latest rust babel project directory.")
(defvar rustic-babel-src-location nil
"Marker, holding location of last evaluated src block.")
(defvar rustic-babel-params nil
"Babel parameters.")
(defvar rustic-babel-spinner nil)
(defun rustic-babel-eval (dir toolchain-kw-or-string main-p)
"Start a rust babel compilation process.
Compilation is started in directory DIR with appropriate
TOOLCHAIN-KW-OR-STRING and MAIN-P indicates if a main function
should be wrapped in which case we will disable rustfmt."
(rustic--inheritenv
(let* ((err-buff (get-buffer-create rustic-babel-compilation-buffer-name))
(default-directory dir)
(toolchain (cond ((eq toolchain-kw-or-string 'nightly) "+nightly")
((eq toolchain-kw-or-string 'beta) "+beta")
((eq toolchain-kw-or-string 'stable) "+stable")
(toolchain-kw-or-string (format "+%s" toolchain-kw-or-string))
(rustic-babel-default-toolchain (format "+%s" rustic-babel-default-toolchain))
(t nil)))
(params (remove nil (list (rustic-cargo-bin) toolchain "build" "--quiet")))
(inhibit-read-only t))
(rustic-compilation-setup-buffer err-buff dir 'rustic-compilation-mode)
(when rustic-babel-display-compilation-buffer
(display-buffer err-buff))
(rustic-make-process
:name rustic-babel-process-name
:buffer err-buff
:command params
:filter #'rustic-compilation-filter
:sentinel (lambda (proc output)
(rustic-babel-build-sentinel toolchain proc output main-p))))))
(defun rustic-babel-format-block ()
"Format babel block at point."
(interactive)
(save-excursion
(let ((babel-body
(org-element-property :value (org-element-at-point)))
(proc
(make-process :name "rustic-babel-format"
:buffer "rustic-babel-format-buffer"
:command `(,(rustic-rustfmt-bin)
,@(rustic-compute-rustfmt-args))
:filter #'rustic-compilation-filter
:sentinel #'rustic-babel-format-sentinel)))
(while (not (process-live-p proc))
(sleep-for 0.01))
(process-send-string proc babel-body)
(process-send-eof proc)
proc)))
(defun rustic-babel-build-sentinel (toolchain proc _output main-p)
"Sentinel for rust babel compilation process PROC.
MAIN-P indicates if the :main attribute is passed to the org header.
If `rustic-babel-format-src-block' is t, format src-block after successful
execution with rustfmt."
(rustic--inheritenv
(let ((proc-buffer (process-buffer proc))
(inhibit-read-only t))
(if (zerop (process-exit-status proc))
(let* ((default-directory rustic-babel-dir))
;; format babel block
(when (and rustic-babel-format-src-block (not rustic-babel-auto-wrap-main) (not main-p))
(let ((proc (rustic-babel-format-block)))
(while (eq (process-status proc) 'run)
(sit-for 0.1))))
;; run project
(let* ((err-buff (get-buffer-create rustic-babel-compilation-buffer-name))
(params (remove nil (list (rustic-cargo-bin) toolchain "run" "--quiet")))
(inhibit-read-only t))
(rustic-make-process
:name rustic-babel-process-name
:buffer err-buff
:command params
:filter #'rustic-compilation-filter
:sentinel #'rustic-babel-run-sentinel)))
(let* ((project (car (reverse (split-string rustic-babel-dir "/"))))
(result (format "error: Could not compile `%s`." project)))
(rustic-babel-build-update-result-block result))
(rustic-with-spinner rustic-babel-spinner nil nil)
(if rustic-babel-display-error-popup
(if (= (length (with-current-buffer proc-buffer (buffer-string))) 0)
(kill-buffer proc-buffer)
(pop-to-buffer proc-buffer))
(if (> (length (with-current-buffer proc-buffer (buffer-string))) 0)
(progn
(with-current-buffer proc-buffer
(save-excursion
(save-match-data
(goto-char (point-min))
(setq result (buffer-string))
(rustic-babel-run-update-result-block result))))
(kill-buffer proc-buffer))
(kill-buffer proc-buffer)))))))
(defun rustic-babel-run-sentinel (proc _output)
"Sentinel for babel project execution."
(let ((proc-buffer (process-buffer proc))
result)
(if (zerop (process-exit-status proc))
(progn
(with-current-buffer proc-buffer
(setq result (buffer-string)))
(rustic-babel-run-update-result-block result)
(rustic-with-spinner rustic-babel-spinner nil nil)
(unless rustic-babel-display-compilation-buffer
(kill-buffer proc-buffer)))
(progn
(with-current-buffer proc-buffer
(save-excursion
(save-match-data
(goto-char (point-min))
(if rustic-babel-display-error-popup
(when (re-search-forward "^thread '[^']+' panicked at .*")
(goto-char (match-beginning 0))
(setq result (buffer-substring-no-properties (point) (line-end-position))))
(setq result (buffer-string))))))
(rustic-babel-run-update-result-block result)
(rustic-with-spinner rustic-babel-spinner nil nil)
(when rustic-babel-display-error-popup
(pop-to-buffer proc-buffer))))))
(defun rustic-babel-build-update-result-block (result)
"Update result block with RESULT."
(let ((marker rustic-babel-src-location))
(with-current-buffer (marker-buffer marker)
(goto-char marker)
(org-babel-remove-result)
(org-babel-insert-result result))))
(defun rustic-babel-run-update-result-block (result)
"Update result block with RESULT."
(let ((marker rustic-babel-src-location))
(with-current-buffer (marker-buffer marker)
(goto-char marker)
(let ((file (cdr (assq :file rustic-babel-params)))
(results-params (cdr (assq :result-params rustic-babel-params))))
;; If non-empty result and :file then write to :file.
(when (and file results-params)
(when result
(with-temp-file file
(insert (org-babel-format-result
result (cdr (assq :sep rustic-babel-params))))))
(setq result file))
(org-babel-remove-result rustic-info)
(org-babel-insert-result result results-params rustic-info)))))
(defun rustic-babel-format-sentinel (proc output)
"This sentinel is used by the process `rustic-babel-format', that runs
after successful compilation."
(ignore-errors
(let ((proc-buffer (process-buffer proc))
(marker rustic-babel-src-location))
(save-excursion
(with-current-buffer proc-buffer
(when (string-match-p "^finished" output)
(with-current-buffer (marker-buffer marker)
(goto-char marker)
(org-babel-update-block-body
(with-current-buffer "rustic-babel-format-buffer"
(buffer-string)))))))
(kill-buffer "rustic-babel-format-buffer"))))
(defvar rustic-org-babel-temporary-directory
(make-temp-file "babel-" t))
(defun rustic-babel-generate-project (&optional expand)
"Create rust project in `rustic-org-babel-temporary-directory'.
Return full path if EXPAND is t."
(let* ((default-directory rustic-org-babel-temporary-directory)
(dir (make-temp-file-internal "cargo" 0 "" nil)))
(shell-command-to-string (format "%s new %s --bin --quiet" (rustic-cargo-bin) dir))
(if expand
(concat (expand-file-name dir) "/")
dir)))
(defun rustic-babel-project ()
"In order to reduce the execution time when the project has
dependencies, the project name is stored as a text property in the
header of the org-babel block to check if the project already exists
in `rustic-org-babel-temporary-directory'. If the project exists, reuse it.
Otherwise create it with `rustic-babel-generate-project'."
(let* ((beg (org-babel-where-is-src-block-head))
(end (save-excursion (goto-char beg)
(line-end-position)))
(line (buffer-substring beg end)))
(let* ((project (symbol-name (get-text-property 0 'project line)))
(path (concat rustic-org-babel-temporary-directory "/" project "/")))
(if (file-directory-p path)
(progn
(put-text-property beg end 'project (make-symbol project))
project)
(let ((new (rustic-babel-generate-project)))
(put-text-property beg end 'project (make-symbol new))
new)))))
(defun crate-dependencies (name version features path)
"Generate a Cargo.toml [dependencies] entry for crate NAME.
Use VERSION, FEATURES and PATH."
(let* ((version-string (concat "version = \"" version "\""))
(features-string
(when features
(concat "features = [" (mapconcat (lambda (s) (concat "\"" s "\"")) features ", ") "]")))
(path-string
(when path
(concat "path = \"" path "\"")))
(toml-entry (string-join (remove nil (list version-string features-string path-string)) ", ")))
(concat name " = {" toml-entry "}")))
(defun cargo-toml-dependencies (crate-versions crate-features crate-paths)
"Generate the [dependencies] section of a Cargo.toml file given crates and their versions & features."
(let ((dependencies ""))
(dolist (crate-and-version crate-versions)
(let* ((name (if (listp crate-and-version)
(car crate-and-version)
crate-and-version))
(version (if (listp crate-and-version)
(cdr crate-and-version)
"*"))
(features (cdr (assoc name crate-features)))
(path (cdr (assoc name crate-paths))))
;; make sure it works with symbols and strings
(when (symbolp name)
(setq name (symbol-name name)))
(when (numberp version)
(setq version (number-to-string version)))
(when (symbolp version)
(setq version (symbol-name version)))
(when (not (listp features))
(setq features (list features)))
(let ((cargo-toml-entry (crate-dependencies name version features path)))
(setq dependencies (concat dependencies cargo-toml-entry "\n")))))
(setq dependencies (concat "[dependencies]\n" dependencies))))
(defun rustic-babel-cargo-toml (dir params)
"Append crates to Cargo.toml.
Use org-babel parameter crates from PARAMS and add them to the project in
directory DIR."
(let ((crates (cdr (assq :crates params)))
(features (cdr (assq :features params)))
(paths (cdr (assq :paths params)))
(toml (expand-file-name "Cargo.toml" dir)))
(let ((dependencies (cargo-toml-dependencies crates features paths)))
(make-directory (file-name-directory toml) t)
(with-temp-file toml
(condition-case nil
(insert-file-contents toml)
(file-missing))
(let ((s (nth 0 (split-string (buffer-string) "\\[dependencies]"))))
(erase-buffer)
(insert s)
(insert dependencies))))))
(defun rustic-babel-ensure-main-wrap (body)
"Wrap BODY in a 'fn main' function call if none exists."
(if (string-match "^[ \t]*\\(pub \\)?\\(async \\)?[fn]+[ \t\n\r]*main[ \t]*(.*)" body)
body
(format "fn main() {\n%s\n}\n" body)))
(defun rustic-babel-include-blocks (blocks)
"Insert contents of BLOCKS to the 'main block' that is being
executed with the parameter `:include'."
(let ((contents ""))
(with-current-buffer (current-buffer)
(save-excursion
(dolist (b (mapcar (lambda (b) (if (symbolp b) (symbol-name b) b)) blocks))
(when-let ((c (rustic-babel-block-contents b)))
(setq contents (concat contents c))))))
contents))
(defun rustic-babel-block-contents (block-name)
"Return contents of block with the name BLOCK-NAME"
(with-current-buffer (current-buffer)
(save-excursion
(org-babel-goto-named-src-block block-name)
(org-element-property :value (org-element-at-point)))))
(defun rustic-babel-insert-mod (mods)
"Build string with module declarations for MODS and return it."
(let ((c ""))
(dolist (m mods)
(setq c (concat c (format "mod %s;\n" m))))
c))
(defun rustic-babel-generate-modules (root blocks)
"Create module files for BLOCKS in the project with ROOT."
(dolist (b (mapcar (lambda (b) (if (symbolp b) (symbol-name b) b)) blocks))
(let* ((contents (rustic-babel-block-contents b))
(src-dir (concat root "/src/"))
(module (expand-file-name (format "%s.rs" b) src-dir)))
(write-region contents nil module nil 0))))
(defun rustic-babel-variable-to-type (var)
"Return a valid const type for the passed variable.
Only supports three cases:
1. Simple value: A='a' -> &str
2. Simple list: A=('a' 'b') -> &[&str]
3. Nested list (org-table): A=(('a' 'b')) -> &[&[&str]]"
(if (listp var)
(if (listp (car var)) "&[&[&str]]" "&[&str]")
"&str"))
(defun rustic-babel-variable-to-rust (var)
"Return a valid rust assignment of an org VAR.
This will convert a simple variable to a &str and list to nested
list of strings. Tables will be converted to &[&[&str]] but need
to be homogenous."
(if (listp var)
(if (listp (car var))
(concat "&[" (string-join (mapcar #'rustic-babel-variable-to-rust var) ",") "]")
(concat "&["
(string-join
(mapcar (lambda (v) (format "\"%s\"" v)) var)
", ")
"]"))
(concat "\"" var "\"")))
(defun rustic-babel-variable-assignments:rust (vars)
"Convert the passed org-src block VARS into a matching const type.
There are only 3 cases:
1. Simple value: A='a' -> &str
2. Simple list: A=('a' 'b') -> &[&str]
2. Nested list (org-table): A=(('a' 'b')) -> &[&[&str]]"
(string-join
(mapcar
(lambda (pair)
(let ((key (car pair))
(value (cdr pair)))
(format "const %s: %s = %s;\n" key (rustic-babel-variable-to-type value) (rustic-babel-variable-to-rust value))))
(org-babel--get-vars vars))
"\n"))
(defun org-babel-execute:rustic (body params)
"Execute a block of Rust code with org-babel.
If called while there's a live Rust babel process, ask user whether to
kill the running process."
(let ((p (get-process rustic-babel-process-name)))
(if (process-live-p p)
(progn
(rustic-process-kill-p p t)
nil)
(let* ((default-directory rustic-org-babel-temporary-directory)
(project (rustic-babel-project))
(dir (setq rustic-babel-dir (expand-file-name project)))
(main-p (cdr (assq :main params)))
(main (expand-file-name "main.rs" (concat dir "/src")))
(vars (cdr (assq :var params)))
(wrap-main (cond ((string= main-p "yes") t)
((string= main-p "no") nil)
(t rustic-babel-auto-wrap-main)))
(include-blocks (cdr (assq :include params)))
(use-blocks (cdr (assq :use params))))
(make-directory (file-name-directory main) t)
(rustic-babel-cargo-toml dir params)
(when use-blocks
(rustic-babel-generate-modules dir use-blocks))
(setq rustic-info (org-babel-get-src-block-info))
(setq rustic-babel-params params)
(rustic-with-spinner rustic-babel-spinner
(make-spinner rustic-spinner-type t 10)
'(rustic-babel-spinner (":Executing " (:eval (spinner-print rustic-babel-spinner))))
(spinner-start rustic-babel-spinner))
(let ((default-directory dir)
(toolchain (cdr (assq :toolchain params))))
(write-region
(concat "#![allow(non_snake_case, unused)]\n"
(if use-blocks (rustic-babel-insert-mod use-blocks) "")
(if include-blocks (rustic-babel-include-blocks include-blocks) "")
(if wrap-main (rustic-babel-ensure-main-wrap body) body)
(if (not (eq vars nil)) (rustic-babel-variable-assignments:rust params) ""))
nil main nil 0)
(rustic-babel-eval dir toolchain main-p)
(setq rustic-babel-src-location
(set-marker (make-marker) (point) (current-buffer)))
project)))))
(defun rustic-babel-visit-project ()
"Open main.rs of babel block at point. The block has to be executed
at least one time in this emacs session before this command can be used."
(interactive)
(let* ((beg (org-babel-where-is-src-block-head))
(end (save-excursion (goto-char beg)
(line-end-position)))
(line (buffer-substring beg end))
(project (symbol-name (get-text-property 0 'project line)))
(path (concat rustic-org-babel-temporary-directory "/" project "/src/main.rs")))
(if (file-exists-p path)
(find-file path)
(message "Run block first to visit generated project."))))
;; TODO: honor babel params
(defun rustic-babel-clippy ()
"Currently doesn't support params."
(interactive)
(rustic--inheritenv
(let* ((err-buff (get-buffer-create rustic-babel-compilation-buffer-name))
(default-directory rustic-org-babel-temporary-directory)
(body (org-element-property :value (org-element-at-point)))
(project (rustic-babel-project))
(params (list (rustic-cargo-bin) "clippy")))
(let* ((dir (setq rustic-babel-dir (expand-file-name project)))
(main (expand-file-name "main.rs" (concat dir "/src")))
(default-directory dir))
(write-region
(concat "#![allow(non_snake_case)]\n" body)
nil main nil 0)
(rustic-compilation-setup-buffer err-buff dir 'rustic-cargo-clippy-mode)
(display-buffer err-buff)
(rustic-make-process
:name rustic-babel-process-name
:buffer err-buff
:command params
:filter #'rustic-compilation-filter)))))
(defun rustic-babel-lookup-missing-dependencies ()
(let* ((contents (org-element-property :value (org-element-at-point)))
crates)
(dolist (line (split-string contents "\n"))
(when (string-match "\s+use\s" line)
(if (string-match "::" line)
(let* ((import (nth 1 (split-string line)))
(c (nth 0 (split-string import "::"))))
(unless (string-match "^std" c)
(push c crates)))
(let* ((import (nth 1 (split-string line))))
(unless (string-match "^std" import)
(push (string-trim-right import ";") crates))))))
crates))
(defun rustic-babel-header-insert-crates ()
"Parse crates from imports and insert them with the header arg `:crates'.
Ignore crates that are listed in `:use'."
(interactive)
(let* ((crates (rustic-babel-lookup-missing-dependencies))
(use-blocks (cdr (assq :use (nth 2 (org-babel-get-src-block-info)))))
(missing (--filter
(not (-contains?
(mapcar (lambda (b) (if (symbolp b) (symbol-name b) b)) use-blocks) it))
crates)))
(org-babel-insert-header-arg (concat "crates '" (format "%s" missing)))))
(provide 'rustic-babel)
;;; rustic-babel.el ends here