-
Notifications
You must be signed in to change notification settings - Fork 11
/
rustic-cargo.el
1018 lines (886 loc) · 40 KB
/
rustic-cargo.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
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; rustic-cargo.el --- Cargo based commands -*-lexical-binding: t-*-
;;; Commentary:
;; This library implements support for `cargo'.
;;; Code:
(require 'tabulated-list)
(require 'dash)
(require 's)
(require 'rustic-compile)
(require 'rustic-interaction) ; for rustic-beginning-of-function
;;; Customization
(defcustom rustic-cargo-bin "cargo"
"Path to cargo executable."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-check-exec-command "check"
"Execute command to run cargo check."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-test-exec-command "test"
"Execute command to run cargo test."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-nextest-exec-command "nextest run"
"Execute command to run nextest."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-run-exec-command "run"
"Execute command to run cargo run."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-build-exec-command "build"
"Execute command to run cargo build."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-bin-remote "~/.cargo/bin/cargo"
"Path to remote cargo executable."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-populate-package-name nil
"Populate package name automatically when used with universal argument."
:type 'boolean
:group 'rustic-cargo)
(defvar rustic--package-names (make-hash-table :test #'equal))
(defun rustic-cargo-cached-package-name ()
(let ((package-name (gethash default-directory rustic--package-names)))
(if package-name
package-name
(progn
(let ((pkg-name (rustic-cargo-package-name)))
(setf (gethash default-directory rustic--package-names) pkg-name))
(gethash default-directory rustic--package-names)))))
(defun rustic-cargo-package-argument ()
(if rustic-cargo-populate-package-name
(let ((package-name (rustic-cargo-cached-package-name)))
(when package-name
(format "--package %s" package-name)))))
(defun rustic-cargo-package-name ()
(let ((buffer (get-buffer "*cargo-manifest*")))
(if buffer
(kill-buffer buffer)))
(let* ((buffer (get-buffer-create "*cargo-manifest*"))
(exit-code (call-process (rustic-cargo-bin) nil buffer nil "read-manifest")))
(if (eq exit-code 0)
(with-current-buffer buffer
(let ((json-parsed-data (json-read-from-string (buffer-string))))
(cdr (assoc 'name json-parsed-data))))
nil)))
(defun rustic-cargo-bin ()
(if (file-remote-p (or (buffer-file-name) ""))
rustic-cargo-bin-remote
rustic-cargo-bin))
(defcustom rustic-cargo-open-new-project t
"If t then any project created with cargo-new will be opened automatically.
If nil then the project is simply created."
:type 'boolean
:group 'rustic-cargo)
(defcustom rustic-cargo-test-disable-warnings nil
"Don't show warnings when running 'cargo test'."
:type 'boolean
:group 'rustic-cargo)
(defcustom rustic-cargo-use-last-stored-arguments nil
"Always rerun cargo commands with stored arguments.
Example:
When `rustic-cargo-use-last-stored-arguments' is `nil', then
rustic-cargo-test will always use `rustic-default-test-arguments'.
If you set it to `t', you can reuse the arguments with `rustic-cargo-test'
instead of applying the default arguments from `rustic-default-test-arguments'."
:type 'boolean
:group 'rustic-cargo)
(defcustom rustic-default-test-arguments "--benches --tests --all-features"
"Default arguments when running 'cargo test'."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-default-install-arguments '("--path" "." "--locked")
"Default arguments when running 'cargo install'."
:type '(list string)
:group 'rustic-cargo)
(defcustom rustic-cargo-check-arguments "--benches --tests --all-features"
"Default arguments when running 'cargo check'."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-build-arguments ""
"Default arguments when running 'cargo build'."
:type 'string
:group 'rustic-cargo)
(defcustom rustic-cargo-auto-add-missing-dependencies nil
"Automatically adds dependencies to Cargo.toml.
This way rustic checks new diagnostics for 'unresolved import'
errors and passes the crates to 'cargo add'.
Currently only working with lsp-mode."
:type 'boolean
:group 'rustic-cargo)
(defvar rustic-cargo-outdated-face nil)
(make-obsolete-variable 'rustic-cargo-outdated-face
"use the face `rustic-cargo-outdated' instead."
"1.2")
(defface rustic-cargo-outdated
'((t (:foreground "red")))
"Face used for outdated crates."
:group 'rustic)
(define-obsolete-face-alias 'rustic-cargo-outdated-upgrade-face
'rustic-cargo-outdated-upgrade "1.2")
(defface rustic-cargo-outdated-upgrade
'((t (:foreground "LightSeaGreen")))
"Face used for crates marked for upgrade."
:group 'rustic)
;;; Test
(defvar rustic-test-process-name "rustic-cargo-test-process"
"Process name for test processes.")
(defvar rustic-test-buffer-name "*cargo-test*"
"Buffer name for test buffers.")
(defvar rustic-test-arguments ""
"Holds arguments for 'cargo test', similar to `compilation-arguments`.
Tests that are executed by `rustic-cargo-current-test' will also be
stored in this variable.")
(defvar rustic-cargo-test-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map rustic-compilation-mode-map)
(define-key map [remap recompile] 'rustic-cargo-test-rerun)
map)
"Local keymap for `rustic-cargo-test-mode' buffers.")
(define-derived-mode rustic-cargo-test-mode rustic-compilation-mode "cargo-test"
:group 'rustic
(when rustic-cargo-test-disable-warnings
(setq-local rustic-compile-rustflags (concat rustic-compile-rustflags " -Awarnings"))))
(defun rustic-cargo-run-nextest (&optional arg)
"Command for running nextest.
If ARG is not nil, get input from minibuffer."
(interactive "P")
(let* ((nextest (if arg
(read-from-minibuffer "nextest command: " rustic-cargo-nextest-exec-command)
rustic-cargo-nextest-exec-command))
(c (-flatten (list (rustic-cargo-bin) (split-string nextest))))
(buf rustic-test-buffer-name)
(proc rustic-test-process-name)
(mode 'rustic-cargo-test-mode))
(rustic-compilation c (list :buffer buf :process proc :mode mode))))
(defun rustic-cargo-nextest-current-test ()
"Run 'cargo nextest run' for the test near point."
(interactive)
(rustic-compilation-process-live)
(-if-let (test-to-run (setq rustic-test-arguments
(rustic-cargo--get-test-target)))
(let ((rustic-cargo-nextest-exec-command
(format "%s %s" rustic-cargo-nextest-exec-command test-to-run)))
(rustic-cargo-run-nextest))
(message "Could not find test at point.")))
;;;###autoload
(defun rustic-cargo-test-run (&optional test-args)
"Start compilation process for 'cargo test' with optional TEST-ARGS."
(interactive)
(rustic-compilation-process-live)
(let* ((command (list (rustic-cargo-bin) rustic-cargo-test-exec-command))
(c (append command (split-string (if test-args test-args ""))))
(buf rustic-test-buffer-name)
(proc rustic-test-process-name)
(mode 'rustic-cargo-test-mode))
(rustic-compilation c (list :buffer buf :process proc :mode mode))))
;;;###autoload
(defun rustic-cargo-test (&optional arg)
"Run 'cargo test'.
If ARG is not nil, use value as argument and store it in
`rustic-test-arguments'. When calling this function from
`rustic-popup-mode', always use the value of
`rustic-test-arguments'."
(interactive "P")
(when arg
(setq rustic-test-arguments
(read-from-minibuffer "Cargo test arguments: "
(rustic--populate-minibuffer
(list (rustic-cargo-package-argument)
rustic-test-arguments
rustic-cargo-build-arguments
rustic-default-test-arguments)))))
(rustic-cargo-test-run rustic-test-arguments))
;;;###autoload
(defun rustic-cargo-test-rerun ()
"Run 'cargo test' with `rustic-test-arguments'."
(interactive)
(let ((default-directory (or rustic-compilation-directory default-directory)))
(rustic-cargo-test-run rustic-test-arguments)))
;;;###autoload
(defun rustic-cargo-current-test ()
"Run 'cargo test' for the test near point."
(interactive)
(rustic-compilation-process-live)
(-if-let (test-to-run (setq rustic-test-arguments
(rustic-cargo--get-test-target)))
(rustic-cargo-run-test test-to-run)
(message "Could not find test at point.")))
(defun rustic-cargo-run-test (test)
"Run TEST which can be a single test or mod name."
(let* ((c (list (rustic-cargo-bin) rustic-cargo-test-exec-command test))
(buf rustic-test-buffer-name)
(proc rustic-test-process-name)
(mode 'rustic-cargo-test-mode))
(rustic-compilation c (list :buffer buf :process proc :mode mode))))
;;;###autoload
(defun rustic-cargo-test-dwim ()
"Run test or mod at point. Otherwise run `rustic-cargo-test'."
(interactive)
(if-let (test (or (rustic-cargo--get-current-fn-name)
(rustic-cargo--get-current-mod)))
(rustic-cargo-test)))
(defconst rustic-cargo-mod-regexp
"^\s*mod\s+\\([[:word:][:multibyte:]_][[:word:][:multibyte:]_[:digit:]]*\\)\s*{")
(defconst rustic-cargo-fn-regexp
(concat rustic-func-item-beg-re "\\([^(<]+\\)\\s-*\\(?:<\\s-*.+\\s-*>\\s-*\\)?("))
(defun rustic-cargo--get-test-target()
"Return either a full fn name or a mod name, whatever is closer to the point."
(let ((mod-cons (rustic-cargo--get-current-mod))
(fn-cons (rustic-cargo--get-current-fn-name)))
(cond ((and mod-cons fn-cons)
;; both conses contain (location . name)
(if (> (car mod-cons) (car fn-cons))
(cdr mod-cons)
(concat (cdr mod-cons) "::" (cdr fn-cons))))
(fn-cons (cdr fn-cons))
(t (cdr mod-cons)))))
(defun rustic-cargo--get-current-mod ()
"Return cons with location and mod name around point or nil."
(save-excursion
(progn
(goto-char (line-end-position))
(when-let ((location (search-backward-regexp rustic-cargo-mod-regexp nil t)))
(cons location (match-string 1))))))
(defun rustic-cargo--get-current-line-fn-name ()
"Return cons with location and fn name from the current line or nil."
(save-excursion
(goto-char (line-beginning-position))
(when-let ((location (search-forward-regexp rustic-cargo-fn-regexp (line-end-position) t)))
(cons location (match-string 1)))))
(defun rustic-cargo--get-current-fn-name ()
"Return fn name around point or nil."
(save-excursion
(or (rustic-cargo--get-current-line-fn-name)
(progn
(rustic-beginning-of-function)
(rustic-cargo--get-current-line-fn-name)))))
;;; Outdated
(defvar rustic-cargo-outdated-process-name "rustic-cargo-outdated-process")
(defvar rustic-cargo-oudated-buffer-name "*cargo-outdated*")
(defvar rustic-cargo-outdated-spinner nil)
(defvar rustic-cargo-outdated-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map tabulated-list-mode-map)
(define-key map (kbd "m") 'rustic-cargo-menu-mark-unmark)
(define-key map (kbd "u") 'rustic-cargo-mark-upgrade)
(define-key map (kbd "U") 'rustic-cargo-mark-all-upgrades)
(define-key map (kbd "x") 'rustic-cargo-upgrade-execute)
(define-key map (kbd "r") 'rustic-cargo-reload-outdated)
(define-key map (kbd "l") 'rustic-cargo-mark-latest-upgrade)
(define-key map (kbd "L") 'rustic-cargo-mark-all-upgrades-latest)
(define-key map (kbd "c") 'rustic-compile)
(define-key map (kbd "q") 'quit-window)
map)
"Local keymap for `rustic-cargo-outdated-mode' buffers.")
(define-derived-mode rustic-cargo-outdated-mode tabulated-list-mode "cargo-outdated"
"Major mode for viewing outdated crates in the current workspace."
(setq truncate-lines t)
(setq tabulated-list-format
`[("Name" 25 t)
("Project" 10 nil)
("Compat" 10 nil)
("Latest" 10 nil)
("Kind" 10 nil)
("Workspace" 15 t)
("Platform" 0 t)])
(setq tabulated-list-padding 2)
(tabulated-list-init-header))
;;;###autoload
(defun rustic-cargo-outdated (&optional path)
"Use 'cargo outdated' to list outdated packages in `tabulated-list-mode'.
Execute process in PATH."
(interactive)
(rustic--inheritenv
(let* ((dir (or path (rustic-buffer-crate)))
(buf (get-buffer-create rustic-cargo-oudated-buffer-name))
(default-directory dir)
(inhibit-read-only t))
(make-process :name rustic-cargo-outdated-process-name
:buffer buf
:command `(,(rustic-cargo-bin) "outdated" "--quiet" "--depth" "1" "--format" "json")
:sentinel #'rustic-cargo-outdated-sentinel
:file-handler t)
(with-current-buffer buf
(setq default-directory dir)
(erase-buffer)
(rustic-cargo-outdated-mode)
(rustic-with-spinner rustic-cargo-outdated-spinner
(make-spinner rustic-spinner-type t 10)
'(rustic-cargo-outdated-spinner
(":Executing " (:eval (spinner-print rustic-cargo-outdated-spinner))))
(spinner-start rustic-cargo-outdated-spinner)))
(display-buffer buf))))
;;;###autoload
(defun rustic-cargo-reload-outdated ()
"Update list of outdated packages."
(interactive)
(rustic-cargo-outdated default-directory))
(defun rustic-cargo-outdated--skip-to-packages ()
"Move line forward till we reach the package name."
(goto-char (point-min))
(let ((line (buffer-substring-no-properties (line-beginning-position) (line-end-position))))
(while (not (or (eobp) (s-starts-with? "{" line)))
(forward-line 1)
(setf line (buffer-substring-no-properties (line-beginning-position) (line-end-position))))))
(defun rustic-cargo-outdated-sentinel (proc _output)
"Sentinel for rustic-cargo-outdated-process."
(let ((buf (process-buffer proc))
(inhibit-read-only t)
(exit-status (process-exit-status proc)))
(if (zerop exit-status)
(with-current-buffer buf
(rustic-cargo-outdated--skip-to-packages)
(let* ((packages (buffer-substring-no-properties (point) (point-max)))
(json-packages (json-read-from-string packages)))
(erase-buffer)
(rustic-cargo-outdated-generate-menu (alist-get 'dependencies json-packages)))
(pop-to-buffer buf))
(with-current-buffer buf
(let ((out (buffer-string)))
(if (= exit-status 101)
(rustic-cargo-install-crate-p "outdated")
(message out))))))
(rustic-with-spinner rustic-cargo-outdated-spinner nil nil))
(defun rustic-cargo-install-crate-p (crate)
"Ask whether to install crate CRATE."
(let ((cmd (format "%s install cargo-%s" (rustic-cargo-bin) crate)))
(when (yes-or-no-p (format "Cargo-%s missing. Install ? " crate))
(async-shell-command cmd (rustic-cargo-bin) "cargo-error"))))
(defun rustic-cargo-outdated-generate-menu (packages)
"Re-populate the `tabulated-list-entries' with PACKAGES."
(setq tabulated-list-entries
(mapcar #'rustic-cargo-outdated-menu-entry packages))
(tabulated-list-print t))
(defun rustic-cargo-outdated-menu-entry (crate)
"Return a package entry of CRATE suitable for `tabulated-list-entries'."
(let* ((name (alist-get 'name crate))
(project (alist-get 'project crate))
(compat (alist-get 'compat crate)))
(list name `[,name
,project
,(if (when (not (string-match "^-" compat))
(version< project compat))
(propertize compat 'font-lock-face 'rustic-cargo-outdated)
compat)
,(alist-get 'latest crate)
,(alist-get 'kind crate)
,(if (alist-get 'platform crate)
(alist-get 'platform crate)
"NA")
,"NA"
,"NA"
])))
;;;###autoload
(defun rustic-cargo-mark-upgrade ()
"Mark an upgradable package."
(interactive)
(let* ((crate (tabulated-list-get-entry (point)))
(v (read-from-minibuffer "Update to version: "
(substring-no-properties (elt crate 3))))
(inhibit-read-only t))
(when v
(save-excursion
(goto-char (line-beginning-position))
(save-match-data
(when (search-forward (elt crate 0))
(replace-match (propertize (elt crate 0)
'font-lock-face
'rustic-cargo-outdated-upgrade)))
(goto-char (line-beginning-position))
(when (search-forward (elt crate 1))
(replace-match (propertize v
'font-lock-face
'rustic-cargo-outdated-upgrade)))))
(tabulated-list-put-tag "U" t))))
;;;###autoload
(defun rustic-cargo-mark-latest-upgrade ()
"Mark an upgradable package to the latest available version."
(interactive)
(let* ((crate (tabulated-list-get-entry (point)))
(v (substring-no-properties (elt crate 3)))
(line-beg (line-beginning-position))
(inhibit-read-only t))
(when v
(save-excursion
(goto-char line-beg)
(save-match-data
(when (search-forward (elt crate 0))
(replace-match (propertize (elt crate 0)
'font-lock-face
'rustic-cargo-outdated-upgrade)))
(goto-char (line-beginning-position))
(when (search-forward (elt crate 1))
(replace-match (propertize v
'font-lock-face
'rustic-cargo-outdated-upgrade)))))
(tabulated-list-put-tag "U" t))))
;;;###autoload
(defun rustic-cargo-mark-all-upgrades-latest ()
"Mark all packages in the Package Menu to latest version."
(interactive)
(tabulated-list-print t)
(save-excursion
(goto-char (point-min))
(while (not (eobp))
(let* ((crate (aref (tabulated-list-get-entry) 0))
(current-version (aref (tabulated-list-get-entry) 1))
(latest-version (aref (tabulated-list-get-entry) 3))
(line-beg (line-beginning-position))
(replace-highlight-text
(lambda (text)
(replace-match (propertize text
'font-lock-face
'rustic-cargo-outdated-upgrade))))
(inhibit-read-only t))
(save-match-data
(when (search-forward crate)
(funcall replace-highlight-text crate))
(goto-char line-beg)
(when (search-forward current-version)
(funcall replace-highlight-text latest-version)))
(tabulated-list-put-tag "U")
(forward-line)))))
;;;###autoload
(defun rustic-cargo-mark-all-upgrades ()
"Mark all upgradable packages in the Package Menu."
(interactive)
(save-excursion
(goto-char (point-min))
(while (not (eobp))
(let ((project (aref (tabulated-list-get-entry) 1))
(compat (aref (tabulated-list-get-entry) 2)))
(if (or (string-match "^-" compat)
(not (version< project compat)))
(forward-line)
(tabulated-list-put-tag "U" t))))))
;;;###autoload
(defun rustic-cargo-menu-mark-unmark ()
"Clear any marks on a package."
(interactive)
(tabulated-list-put-tag " " t))
(cl-defstruct rustic-crate name version)
(defun rustic-cargo--outdated-make-crate (crate-line)
"Create RUSTIC-CRATE struct out of a CRATE-LINE.
The CRATE-LINE is a single line from the `rustic-cargo-oudated-buffer-name'"
(make-rustic-crate :name (nth 1 crate-line) :version (nth 2 crate-line)))
;;;###autoload
(defun rustic-cargo-upgrade-execute ()
"Perform marked menu actions."
(interactive)
(let ((crates (rustic-cargo--outdated-get-crates (buffer-string))))
(if crates
(let ((msg (format "Upgrade `%s`? " (mapconcat #'(lambda (x) (rustic-crate-name x)) crates " "))))
(when (yes-or-no-p msg)
(rustic-cargo-upgrade-crates crates)))
(user-error "No operations specified"))))
(defun rustic-cargo--outdated-get-crates (cargo-outdated-buffer-string)
"Return a list of `rustic-crate' which needs to be updated.
CARGO-OUTDATED-BUFFER-STRING represents the entire buffer of
`rustic-cargo-oudated-buffer-name'"
(let* ((lines (s-lines cargo-outdated-buffer-string))
(new-crates (-filter (lambda (crate) (s-starts-with? "U" crate)) lines))
(crates (-map (lambda (crate)
(rustic-cargo--outdated-make-crate
(s-split " " (s-collapse-whitespace crate)))) new-crates)))
crates))
(defun rustic-cargo-upgrade-crates (crates)
"Upgrade CRATES."
(let (upgrade)
(dolist (crate crates)
(setq upgrade (concat upgrade (format "-p %s@%s " (rustic-crate-name crate) (rustic-crate-version crate)))))
(let ((output (shell-command-to-string (format "%s upgrade --offline %s" (rustic-cargo-bin) upgrade))))
(if (string-match "error: no such subcommand:" output)
(rustic-cargo-install-crate-p "edit")
(rustic-cargo-reload-outdated)))))
;;; New project
(defun rustic--split-path (project-path)
"Split PROJECT-PATH into two parts: the longest prefix of directories that
exist, and the rest. Return a cons cell of the two parts."
(let ((components (file-name-split project-path))
(existing-dir ""))
(while (and (not (null components))
(file-directory-p (file-name-concat existing-dir (car components))))
(setq existing-dir (file-name-concat existing-dir (car components)))
(setq components (cdr components)))
(cons existing-dir (apply 'file-name-concat (cons "" components)))))
(defun rustic-create-project (project-path is-new &optional bin)
"Run either 'cargo new' if IS-NEW is non-nil, or 'cargo init' otherwise.
Creates or initializes the directory at the path specified by PROJECT-PATH. If
BIN is not nil, create a binary application, otherwise a library."
(let* ((cmd (if is-new "new" "init"))
(bin (if (or bin (y-or-n-p "Create new binary package? "))
"--bin"
"--lib"))
(new-sentinel (lambda (_process signal)
(when (equal signal "finished\n")
(message (format "Created new package: %s"
(file-name-base project-path)))
(when rustic-cargo-open-new-project
(find-file (concat project-path
(if (string= bin "--bin")
"/src/main.rs"
"/src/lib.rs")))))))
(proc (format "rustic-cargo-%s-process" cmd))
(buf (format "*cargo-%s*" cmd))
(dir-pair (rustic--split-path project-path))
(default-directory (car dir-pair)))
(make-process :name proc
:buffer buf
:command (list (rustic-cargo-bin) cmd bin (cdr dir-pair))
:sentinel new-sentinel
:file-handler t)))
;;;###autoload
(defun rustic-cargo-new (project-path &optional bin)
"Run 'cargo new' to start a new package in the path specified by PROJECT-PATH.
If BIN is not nil, create a binary application, otherwise a library."
(interactive "GProject path: ")
(rustic-create-project project-path t bin))
;;;###autoload
(defun rustic-cargo-init (project-path &optional bin)
"Run 'cargo init' to initialize a directory in the path specified by PROJECT-PATH.
If BIN is not nil, create a binary application, otherwise a library."
(interactive "DProject path: ")
(rustic-create-project project-path nil bin))
;;; Run
(defvar rustic-run-process-name "rustic-cargo-run-process"
"Process name for run processes.")
(defvar rustic-run-buffer-name "*cargo-run*"
"Buffer name for run buffers.")
(defvar rustic-run-arguments ""
"Holds arguments for 'cargo run', similar to `compilation-arguments`.")
(defvar rustic-cargo-run-mode-map
(let ((map (make-sparse-keymap)))
(define-key map [remap recompile] 'rustic-cargo-run-rerun)
map)
"Local keymap for `rustic-cargo-test-mode' buffers.")
(define-derived-mode rustic-cargo-run-mode rustic-compilation-mode "cargo-run"
:group 'rustic)
;;;###autoload
(defun rustic-cargo-run-command (&optional run-args)
"Start compilation process for 'cargo run' with optional RUN-ARGS."
(interactive)
(rustic-compilation-process-live)
(let* ((command (list (rustic-cargo-bin) rustic-cargo-run-exec-command))
(c (append command (split-string (if run-args run-args ""))))
(buf rustic-run-buffer-name)
(proc rustic-run-process-name)
(mode 'rustic-cargo-run-mode))
(rustic-compilation c (list :buffer buf :process proc :mode mode))))
;;;###autoload
(defun rustic-cargo-run (&optional arg)
"Run 'cargo run'.
If ARG is not nil, use value as argument and store it in `rustic-run-arguments'.
When calling this function from `rustic-popup-mode', always use the value of
`rustic-run-arguments'."
(interactive "P")
(rustic-cargo-run-command
(cond (arg
(setq rustic-run-arguments (read-from-minibuffer "Cargo run arguments: " rustic-run-arguments)))
(rustic-cargo-use-last-stored-arguments
rustic-run-arguments)
((rustic--get-run-arguments))
(t rustic-run-arguments))))
;;;###autoload
(defun rustic-cargo-run-rerun ()
"Run 'cargo run' with `rustic-run-arguments'."
(interactive)
(let ((default-directory (or rustic-compilation-directory default-directory)))
(rustic-cargo-run-command rustic-run-arguments)))
(defun rustic--get-run-arguments ()
"Helper utility for getting arguments related to 'examples' directory."
(let ((example-name (rustic-cargo-run-get-relative-example-name)))
(when example-name
(concat "--example " example-name))))
(defun rustic-cargo-run-get-relative-example-name ()
"Run 'cargo run --example' if current buffer within a 'examples' directory."
(let* ((buffer-project-root (rustic-buffer-crate))
(current-filename (if buffer-file-name
buffer-file-name
rustic--popup-rust-src-name))
(relative-filenames
(if buffer-project-root
(split-string (file-relative-name current-filename buffer-project-root) "/") nil)))
(if (and relative-filenames (string= "examples" (car relative-filenames)))
(let ((size (length relative-filenames)))
(cond ((eq size 2) (file-name-sans-extension (nth 1 relative-filenames))) ;; examples/single-example1.rs
((> size 2) (car (nthcdr (- size 2) relative-filenames))) ;; examples/example2/main.rs
(t nil)))
nil)))
;;;###autoload
(defun rustic-run-shell-command (&optional arg)
"Run an arbitrary shell command using ARG for the current project.
Example: use it to provide an environment variable to your
application like this `env MYVAR=1 cargo run' so that it can read
it at the runtime. As a byproduct, you can run any shell command
in your project like `pwd'"
(interactive "P")
(setq command (read-from-minibuffer "Command to execute: " (car compile-history) nil nil 'compile-history))
(rustic-run-cargo-command command (list :mode 'rustic-cargo-plainrun-mode)))
;;; Cargo commands
(defun rustic-run-cargo-command (command &optional args)
"Run the specified COMMAND with cargo."
(rustic-compilation-process-live)
(let ((c (if (listp command)
command
(split-string command))))
(rustic-compilation-start c (append (list :no-default-dir t) args))))
;;;###autoload
(defun rustic-cargo-build (&optional arg)
"Run 'cargo build' for the current project, allow configuring
`rustic-cargo-build-arguments' when prefix argument (C-u) is enabled."
(interactive "P")
(when arg
(setq rustic-cargo-build-arguments
(read-string "Cargo build arguments: " (rustic--populate-minibuffer (list (rustic-cargo-package-argument) rustic-cargo-build-arguments)))))
(rustic-run-cargo-command `(,(rustic-cargo-bin)
,rustic-cargo-build-exec-command
,@(split-string rustic-cargo-build-arguments))
(list :clippy-fix t)))
(defvar rustic-clean-arguments nil
"Holds arguments for 'cargo clean', similar to `compilation-arguments`.")
;;;###autoload
(defun rustic-cargo-clean (&optional arg)
"Run 'cargo clean' for the current project.
If ARG is not nil, use value as argument and store it in `rustic-clean-arguments'.
When calling this function from `rustic-popup-mode', always use the value of
`rustic-clean-arguments'."
(interactive "P")
(rustic-run-cargo-command
(-filter (lambda (s) (s-present? s))
(-flatten
(list (rustic-cargo-bin) "clean"
(cond (arg
(setq rustic-clean-arguments
(s-split " "
(read-from-minibuffer "Cargo clean arguments: "
(s-join " " rustic-clean-arguments)))))
(t rustic-clean-arguments)))))))
;;;###autoload
(defun rustic-cargo-check (&optional arg)
"Run 'cargo check' for the current project, allow configuring
`rustic-cargo-check-arguments' when prefix argument (C-u) is enabled."
(interactive "P")
(when arg
(setq rustic-cargo-check-arguments
(read-string "Cargo check arguments: " "")))
(rustic-run-cargo-command `(,(rustic-cargo-bin)
,rustic-cargo-check-exec-command
,@(split-string rustic-cargo-check-arguments))))
;;;###autoload
(defun rustic-cargo-bench ()
"Run 'cargo bench' for the current project."
(interactive)
(rustic-run-cargo-command (list (rustic-cargo-bin) "bench")))
;;;###autoload
(defun rustic-cargo-build-doc ()
"Build the documentation for the current project."
(interactive)
(if (y-or-n-p "Create documentation for dependencies?")
(rustic-run-cargo-command (list (rustic-cargo-bin) "doc"))
(rustic-run-cargo-command (list (rustic-cargo-bin) "doc" "--no-deps"))))
;; TODO: buffer with cargo output should be in rustic-compilation-mode
;;;###autoload
(defun rustic-cargo-doc ()
"Open the documentation for the current project in a browser.
The documentation is built if necessary."
(interactive)
(if (y-or-n-p "Open docs for dependencies as well?")
;; open docs only works with synchronous process
(shell-command (format "%s doc --open" (rustic-cargo-bin)))
(shell-command (format "%s doc --open --no-deps" (rustic-cargo-bin)))))
;;; cargo edit
(defvar rustic-cargo-dependencies "*cargo-add-dependencies*"
"Buffer that is used for adding missing dependencies with 'cargo add'.")
;;;###autoload
(defun rustic-cargo-add (&optional arg)
"Add crate to Cargo.toml using 'cargo add'.
If running with prefix command `C-u', read whole command from minibuffer."
(interactive "P")
(let* ((base (concat (rustic-cargo-bin) " add "))
(command (if arg
(read-from-minibuffer "Cargo add command: " base)
(concat base (read-from-minibuffer "Crate: ")))))
(rustic-run-cargo-command command)))
(defun rustic-cargo-add-missing-dependencies (&optional arg)
"Lookup and add missing dependencies to Cargo.toml.
Adds all missing crates by default with latest version using lsp functionality.
Supports both lsp-mode and egot.
Use with 'C-u` to open prompt with missing crates."
(interactive)
(-if-let (deps (rustic-cargo-find-missing-dependencies))
(progn
(when current-prefix-arg
(setq deps (read-from-minibuffer "Add dependencies: " deps)))
(rustic-compilation-start
(split-string (concat (rustic-cargo-bin) " add " deps))
(append (list :buffer rustic-cargo-dependencies))))
(message "No missing crates found. Maybe check your lsp server.")))
(defun rustic-cargo-add-missing-dependencies-hook ()
"Silently look for missing dependencies in the current buffer and add
them to Cargo.toml."
(-when-let (deps (rustic-cargo-find-missing-dependencies))
(rustic-compilation-start
(split-string (concat (rustic-cargo-bin) " add " deps))
(append (list :buffer rustic-cargo-dependencies
:no-default-dir t
:no-display t
:sentinel (lambda (proc msg) ()))))))
(defun rustic-cargo-find-missing-dependencies ()
"Return missing dependencies using either lsp-mode or eglot/flymake
as string."
(let ((crates nil))
(setq crates (cond ((bound-and-true-p lsp-mode)
(rustic-cargo-add-missing-dependencies-lsp-mode))
((bound-and-true-p eglot)
(rustic-cargo-add-missing-dependencies-eglot))
((bound-and-true-p flycheck-mode)
(rustic-cargo-add-missing-dependencies-flycheck))
(t
nil)))
(if (> (length crates) 0)
(mapconcat 'identity crates " ")
crates)))
(defun rustic-cargo-add-missing-dependencies-lsp-mode ()
"Return missing dependencies using `lsp-diagnostics'."
(let* ((diags (gethash (buffer-file-name) (lsp-diagnostics t)))
(lookup-missing-crates
(lambda (missing-crates errortable)
(if (string= "E0432" (gethash "code" errortable))
(cons (nth 3 (split-string (gethash "message" errortable) "`"))
missing-crates)
missing-crates))))
(delete-dups (seq-reduce lookup-missing-crates
diags
'()))))
(defun rustic-cargo-add-missing-dependencies-eglot ()
"Return missing dependencies by parsing flymake diagnostics buffer."
(rustic--inheritenv
(let* ((buf (flymake--diagnostics-buffer-name))
crates)
;; ensure flymake diagnostics buffer exists
(unless (buffer-live-p buf)
(let* ((name (flymake--diagnostics-buffer-name))
(source (current-buffer))
(target (or (get-buffer name)
(with-current-buffer (get-buffer-create name)
(flymake-diagnostics-buffer-mode)
(current-buffer)))))
(with-current-buffer target
(setq flymake--diagnostics-buffer-source source)
(revert-buffer))))
(with-current-buffer buf
(let ((errors (split-string (buffer-substring-no-properties (point-min) (point-max)) "\n")))
(dolist (s errors)
(if (string-match-p (regexp-quote "unresolved import") s)
(push (string-trim (car (reverse (split-string s))) "`" "`" ) crates)))))
crates)))
(defun rustic-cargo-add-missing-dependencies-flycheck ()
"Return missing dependencies by parsing flycheck diagnostics buffer."
(let* (crates)
(unless (get-buffer flycheck-error-list-buffer)
(flycheck-list-errors))
(with-current-buffer (get-buffer flycheck-error-list-buffer)
(let ((errors (split-string (buffer-substring-no-properties (point-min) (point-max)) "\n")))
(dolist (s errors)
(when (string-match-p (regexp-quote "unresolved import") s)
(push (string-trim (nth 7 (split-string s)) "`" "`" ) crates)))))
crates))
;;;###autoload
(defun rustic-cargo-rm (&optional arg)
"Remove crate from Cargo.toml using 'cargo rm'.
If running with prefix command `C-u', read whole command from minibuffer."
(interactive "P")
(let* ((command (if arg
(read-from-minibuffer "Cargo rm command: "
(rustic-cargo-bin) " rm ")
(concat (rustic-cargo-bin) " rm "
(read-from-minibuffer "Crate: ")))))
(rustic-run-cargo-command command)))
;;;###autoload
(defun rustic-cargo-upgrade (&optional arg)
"Upgrade dependencies as specified in the local manifest file using 'cargo upgrade'.
If running with prefix command `C-u', read whole command from minibuffer."
(interactive "P")
(let* ((command (if arg
(read-from-minibuffer "Cargo upgrade command: "
(format "%s upgrade " (rustic-cargo-bin)))
(concat (rustic-cargo-bin) " upgrade"))))
(rustic-run-cargo-command command)))
;;;###autoload
(defun rustic-cargo-update (&optional arg)
"Update dependencies as recorded in the local lock file.
If running with prefix command `C-u', use ARG by reading whole
command from minibuffer."
(interactive "P")
(let* ((command (if arg
(read-from-minibuffer "Cargo update command: "
(format "%s %s" (rustic-cargo-bin) "update"))
(concat (rustic-cargo-bin) " update"))))
(rustic-run-cargo-command command)))
;;;###autoload
(defun rustic-cargo-login (token)
"Add crates.io API token using `cargo login'.
`TOKEN' the token for interacting with crates.io. Visit [1] for
how to get one
[1] https://doc.rust-lang.org/cargo/reference/publishing.html#before-your-first-publish"
(interactive "sAPI token: ")
(shell-command (format "%s login %s" (rustic-cargo-bin) token)))
;; Install
(defvar rustic-install-process-name "rustic-cargo-install-process"
"Process name for install processes.")
(defvar rustic-install-buffer-name "*cargo-install*"
"Buffer name for install buffers.")
(defvar rustic-install-arguments ""
"Holds arguments for 'cargo install', similar to `compilation-arguments`.
Installs that are executed by `rustic-cargo-current-install' will also be
stored in this variable.")
(defvar rustic-install-project-dir nil
"Crate directory where rustic install should be done.")
(defvar rustic-cargo-install-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map rustic-compilation-mode-map)
(define-key map [remap recompile] 'rustic-cargo-install-rerun)
map)
"Local keymap for `rustic-cargo-install-mode' buffers.")
(define-derived-mode rustic-cargo-install-mode rustic-compilation-mode "cargo-install"
:group 'rustic)
;;;###autoload
(defun rustic-cargo-install-rerun ()
"Run 'cargo install' with `rustic-install-arguments'."
(interactive)
(rustic-compilation-start rustic-install-arguments
(list :buffer rustic-install-buffer-name
:process rustic-install-process-name
:mode 'rustic-cargo-install-mode
:directory rustic-install-project-dir)))
;;;###autoload
(defun rustic-cargo-install (&optional arg)
"Install rust binary using 'cargo install'.
If running with prefix command `C-u', read whole command from minibuffer."
(interactive "P")
(let* ((command (if arg
(read-from-minibuffer "Cargo install command: "
(format "%s %s %s"
(rustic-cargo-bin)
"install"
(string-join rustic-cargo-default-install-arguments " ")))
(s-join " " (cons (rustic-cargo-bin) (cons "install" rustic-cargo-default-install-arguments)))))