-
Notifications
You must be signed in to change notification settings - Fork 11
/
helm-system-packages-pacman.el
397 lines (356 loc) · 19 KB
/
helm-system-packages-pacman.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
;;; helm-system-packages-pacman.el --- Helm UI for Arch Linux' pacman. -*- lexical-binding: t -*-
;; Copyright (C) 2012 ~ 2014 Thierry Volpiatto <[email protected]>
;; 2017 ~ 2018 Pierre Neidhardt <[email protected]>
;; Author: Pierre Neidhardt <[email protected]>
;; URL: https://github.com/emacs-helm/helm-system-packages
;; Version: 1.10.2
;; Package-Requires: ((emacs "24.4") (helm "2.8.6"))
;; Keywords: helm, packages
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Helm UI for Arch Linux' pacman.
;; TODO: Fix missing newline when printing virtual packages.
;;; Code:
(require 'helm-system-packages)
;; Shut up byte compiler
(declare-function eshell-interactive-process "esh-cmd.el")
(defvar eshell-buffer-name)
(defvar helm-system-packages-pacman-help-message
"* Helm pacman
** Options
- `helm-system-packages-pacman-confirm-p'
- `helm-system-packages-pacman-synchronize-threshold'
- `helm-system-packages-pacman-auto-clean-cache'
** Commands
\\<helm-system-packages-pacman-map>
\\[helm-system-packages-toggle-explicit]\t\tToggle display of explicitly installed packages.
\\[helm-system-packages-toggle-uninstalled]\t\tToggle display of non-installed.
\\[helm-system-packages-toggle-dependencies]\t\tToggle display of required dependencies.
\\[helm-system-packages-toggle-orphans]\t\tToggle display of unrequired dependencies.
\\[helm-system-packages-toggle-locals]\t\tToggle display of local packages.
\\[helm-system-packages-toggle-groups]\t\tToggle display of package groups.
\\[helm-system-packages-toggle-descriptions]\t\tToggle display of package descriptions.")
(defvar helm-system-packages-pacman-map
;; M-U is reserved for `helm-unmark-all'.
(let ((map (make-sparse-keymap)))
(set-keymap-parent map helm-map)
(define-key map (kbd "M-I") 'helm-system-packages-toggle-explicit)
(define-key map (kbd "M-N") 'helm-system-packages-toggle-uninstalled)
(define-key map (kbd "M-D") 'helm-system-packages-toggle-dependencies)
(define-key map (kbd "M-O") 'helm-system-packages-toggle-orphans)
(define-key map (kbd "M-L") 'helm-system-packages-toggle-locals)
(define-key map (kbd "M-G") 'helm-system-packages-toggle-groups)
(define-key map (kbd "C-]") 'helm-system-packages-toggle-descriptions)
map))
;; TODO: Propertize the cache directly?
(defun helm-system-packages-pacman-transformer (packages)
;; TODO: Possible optimization: Get rid of `reverse'.
(let (res (pkglist (reverse packages)))
(dolist (p pkglist res)
(let ((face (cdr (assoc (helm-system-packages-extract-name p)
(plist-get (helm-system-packages--cache-get) :display)))))
(cond
((and (not face) (member (helm-system-packages-extract-name p) helm-system-packages--virtual-list))
;; When displaying dependencies, package may be virtual.
;; Check first since it is also an "uninstalled" package.
(push (propertize p 'face 'helm-system-packages-pacman-virtual) res))
((and (not face) helm-system-packages--show-uninstalled-p)
(push p res))
;; For filtering, we consider local packages and non-local packages
;; separately, thus we need to treat local packages first.
;; TODO: Add support for multiple faces.
((memq 'helm-system-packages-locals face)
(when helm-system-packages--show-locals-p (push (propertize p 'face (car face)) res)))
((or
(and helm-system-packages--show-explicit-p (memq 'helm-system-packages-explicit face))
(and helm-system-packages--show-dependencies-p (memq 'helm-system-packages-dependencies face))
(and helm-system-packages--show-orphans-p (memq 'helm-system-packages-orphans face))
(and helm-system-packages--show-groups-p (memq 'helm-system-packages-groups face)))
(push (propertize p 'face (car face)) res)))))))
;; TODO: Possible optimization: Split buffer directly.
(defun helm-system-packages-pacman-list-explicit ()
"List explicitly installed packages."
(split-string (with-temp-buffer
(process-file "pacman" nil t nil "--query" "--explicit" "--quiet")
(buffer-string))))
(defun helm-system-packages-pacman-list-dependencies ()
"List packages installed as a required dependency."
(split-string (with-temp-buffer
(process-file "pacman" nil t nil "--query" "--deps" "--quiet")
(buffer-string))))
(defun helm-system-packages-pacman-list-orphans ()
"List orphan packages (unrequired dependencies)."
(split-string (with-temp-buffer
(process-file "pacman" nil t nil "--query" "--deps" "--unrequired" "--quiet")
(buffer-string))))
(defun helm-system-packages-pacman-list-locals ()
"List explicitly installed local packages.
Local packages can also be orphans, explicit or dependencies."
(split-string (with-temp-buffer
(process-file "pacman" nil t nil "--query" "--foreign" "--quiet")
(buffer-string))))
(defun helm-system-packages-pacman-list-groups ()
"List groups.
Groups can be (un)installed. Dependency queries list the
packages belonging to the group."
(split-string (with-temp-buffer
(process-file "pacman" nil t nil "--sync" "--groups")
(buffer-string))))
;; TODO: Merge this function into -refresh.
(defun helm-system-packages-pacman-cache (display-list local-packages groups)
"Cache all package names with descriptions.
LOCAL-PACKAGES and GROUPS are lists of strings."
;; We build both caches at the same time. We could also build just-in-time, but
;; benchmarks show that it only saves less than 20% when building one cache.
(let (names descriptions)
(setq descriptions
(with-temp-buffer
;; TODO: Possible optimization: Output directly in Elisp?
(let ((format-string (format "%%-%dn %%d" helm-system-packages-column-width)))
(process-file "expac" nil '(t nil) nil "--sync" format-string)
(apply 'process-file "expac" nil '(t nil) nil "--query" format-string local-packages))
(dolist (g groups)
(insert (concat g
(make-string (- helm-system-packages-column-width (length g)) ? )
" <group>\n")))
(sort-lines nil (point-min) (point-max))
(buffer-string)))
;; replace-regexp-in-string is faster than mapconcat over split-string.
(setq names
(replace-regexp-in-string " .*" "" descriptions))
(helm-system-packages--cache-set names descriptions display-list "pacman")))
(defcustom helm-system-packages-pacman-column-width 40
"Column at which descriptions are aligned, excluding a double-space gap.
If nil, then use `helm-system-packages-column-width'."
:group 'helm-system-packages
:type 'integer)
(defun helm-system-packages-pacman-refresh ()
"Refresh the package list."
(interactive)
(setq helm-system-packages-column-width
(or helm-system-packages-pacman-column-width
helm-system-packages-column-width))
(let ((explicit (helm-system-packages-pacman-list-explicit))
(dependencies (helm-system-packages-pacman-list-dependencies))
(orphans (helm-system-packages-pacman-list-orphans))
(locals (helm-system-packages-pacman-list-locals))
(groups (helm-system-packages-pacman-list-groups))
display-list)
(dolist (p explicit)
(push (cons p '(helm-system-packages-explicit)) display-list))
(dolist (p dependencies)
(push (cons p '(helm-system-packages-dependencies)) display-list))
(dolist (p orphans)
(push (cons p '(helm-system-packages-orphans)) display-list))
(dolist (p locals)
;; Local packages are necessarily either explicitly installed or a required dependency or an orphan.
(push 'helm-system-packages-locals (cdr (assoc p display-list))))
(dolist (p groups)
(push (cons p '(helm-system-packages-groups)) display-list))
(helm-system-packages-pacman-cache display-list locals groups)))
(defcustom helm-system-packages-pacman-synchronize-threshold 86400
"Auto-synchronize database on installation if older than this many seconds.
If nil, no automatic action is taken."
:group 'helm-system-packages
:type 'integer)
(defun helm-system-packages-pacman-outdated-database-p ()
"Return non-nil when database is older than `helm-system-packages-pacman-synchronize-threshold'."
(when helm-system-packages-pacman-synchronize-threshold
(let ((db-path (with-temp-buffer
(process-file "pacman" nil t nil "--verbose")
(goto-char (point-min))
(keep-lines "^DB Path")
(search-forward ":" nil t)
(buffer-substring-no-properties (1+ (point)) (line-end-position)))))
;; Check the date of the youngest database.
(time-less-p (car (nreverse
(sort (mapcar
(lambda (file) (nth 5 (file-attributes file)))
(file-expand-wildcards (expand-file-name "sync/*.db" db-path)))
'time-less-p)))
(time-subtract (current-time) (seconds-to-time helm-system-packages-pacman-synchronize-threshold))))))
(defun helm-system-packages-pacman-info (candidate)
"Print information about the selected packages.
The local database will be queried if possible, while the sync
database is used as a fallback. Note that they don't hold the
exact same information.
With prefix argument, insert the output at point.
Otherwise display in `helm-system-packages-buffer'."
(helm-system-packages-show-information
(helm-system-packages-mapalist
'((uninstalled (lambda (info-string)
;; The package name is on the second line for `pacman -Sii'.
(mapcar (lambda (desc)
(string-match "\\(.*\\)\n.*: \\(.*\\)" desc)
(cons (match-string 2 desc)
(concat (match-string 1 desc)
(substring desc (match-end 2)))))
(split-string info-string "\n\n" t))))
(all (lambda (info-string)
;; The package name is on the first line.
(mapcar (lambda (desc)
(string-match ".*: \\(.*\\)" desc)
(cons (match-string 1 desc) (substring desc (match-end 2))))
(split-string info-string "\n\n" t)))))
(helm-system-packages-mapalist
'((uninstalled (lambda (packages)
(helm-system-packages-call "pacman" packages "--sync" "--info" "--info" "--color" "never")))
(groups ignore)
(all (lambda (packages)
(helm-system-packages-call "pacman" packages "--query" "--info" "--info" "--color" "never"))))
(helm-system-packages-categorize
(if helm-in-persistent-action
(list candidate)
(helm-marked-candidates)))))))
(defcustom helm-system-packages-pacman-auto-clean-cache nil
"Clean cache before installing.
The point of keeping previous version in cache is that you can revert back if
something fails.
By always cleaning before installing, the previous version in kept in cache.
This is only healthy if you test every version you install.
Installing two upgrades (or the same version) will effectively leave you with no
tested package to fall back on."
:group 'helm-system-packages
:type 'boolean)
(defcustom helm-system-packages-pacman-confirm-p t
"Prompt for confirmation before proceeding with transaction."
:group 'helm-system-packages
:type 'boolean)
(defun helm-system-packages-pacman-install (_)
"Install marked candidates."
(when helm-system-packages-pacman-auto-clean-cache
(let ((eshell-buffer-name (helm-system-packages-shell-name)))
(eshell)
(unless (eshell-interactive-process)
(goto-char (point-max))
(insert "sudo pacman --sync --clean "
(unless helm-system-packages-pacman-confirm-p "--noconfirm ")
"&& "))))
(helm-system-packages-run-as-root "pacman" "--sync"
(when (helm-system-packages-pacman-outdated-database-p)
"--refresh")
(unless helm-current-prefix-arg
"--needed")
(unless helm-system-packages-pacman-confirm-p
"--noconfirm")))
(defun helm-system-packages-pacman-uninstall (_)
"Uninstall marked candidates."
(helm-system-packages-run-as-root-over-installed
"pacman" "--remove"
(when helm-current-prefix-arg "--recursive")
(unless helm-system-packages-pacman-confirm-p "--noconfirm")))
(defun helm-system-packages-pacman-find-files (_candidate)
"List candidate files for display in `helm-system-packages-find-files'.
The local database will be queried if possible, while the sync
database is used as a fallback. Note that they don't hold the
exact same information."
;; TODO: Check for errors when file database does not exist.
(let ((file-hash (make-hash-table :test 'equal)))
(dolist (file-string
(mapcar 'cdr
(helm-system-packages-mapalist
'((uninstalled (lambda (packages)
;; Prepend the missing leading '/' to pacman's file database queries.'
(replace-regexp-in-string
"\\([^ ]+ \\)" "\\1/"
(helm-system-packages-call "pacman" packages "--files" "--list" "--color" "never"))))
(groups ignore)
(all (lambda (packages)
(helm-system-packages-call "pacman" packages "--query" "--list" "--color" "never"))))
(helm-system-packages-categorize (helm-marked-candidates)))))
;; The first word of the line (package name) is the hash table key,
;; the rest is pushed to the value (list of files).
(string-match "" file-string) ;; Reset search indexes.
(while (string-match "\n?\\([^ ]+\\) \\(.*\\)" file-string (match-end 0))
(push (match-string 2 file-string) (gethash (match-string 1 file-string) file-hash))))
(helm-system-packages-find-files file-hash)))
(defun helm-system-packages-pacman-show-dependencies (_candidate &optional reverse)
"List candidate dependencies for `helm-system-packages-show-packages'.
If REVERSE is non-nil, list reverse dependencies instead."
(let ((format-string (if reverse "%N" (concat "%E" (and helm-current-prefix-arg "%o"))))
(title (concat
(if reverse "Reverse dependencies" "Dependencies")
" of "
(mapconcat 'identity (helm-marked-candidates) " "))))
(helm-system-packages-show-packages
(helm-system-packages-mapalist
`((uninstalled (lambda (packages)
(helm-system-packages-call "expac" packages "--sync" "--listdelim" "\n" ,format-string)))
(groups ,(if reverse 'ignore
(lambda (packages)
;; Warning: "--group" seems to be different from "-g".
(helm-system-packages-call "expac" packages "--sync" "-g" "%n"))))
(all (lambda (packages)
(helm-system-packages-call "expac" packages "--query" "--listdelim" "\n" ,format-string))))
(helm-system-packages-categorize (helm-marked-candidates)))
title)))
(defun helm-system-packages-pacman-history (_candidate)
"Filter pacman logs by candidates."
(switch-to-buffer helm-system-packages-buffer)
(view-mode 0)
(erase-buffer)
(save-excursion (insert-file-contents-literally
;; Find log file location from `pacman' output.
(with-temp-buffer
(process-file "pacman" nil t nil "--verbose")
(goto-char (point-min))
(keep-lines "^Log File")
(search-forward ":" nil t)
(buffer-substring-no-properties (1+ (point)) (line-end-position)))))
(keep-lines
(concat "\\[PACMAN\\].*"
(regexp-opt (helm-marked-candidates))))
(log-view-mode))
(defcustom helm-system-packages-pacman-actions
'(("Show package(s)" . helm-system-packages-pacman-info)
("Install (`C-u' to reinstall)" . helm-system-packages-pacman-install)
("Uninstall (`C-u' to include dependencies)" . helm-system-packages-pacman-uninstall)
("Browse homepage URL" .
(lambda (_)
(helm-system-packages-browse-url (split-string (helm-system-packages-run "expac" "--sync" "%u") "\n" t))))
("Find files" . helm-system-packages-pacman-find-files)
("Show dependencies (`C-u' to include optional deps)" . helm-system-packages-pacman-show-dependencies)
("Show reverse dependencies" .
(lambda (_)
(helm-system-packages-pacman-show-dependencies _ 'reverse)))
("Mark as dependency" .
(lambda (_)
(helm-system-packages-run-as-root-over-installed "pacman" "--database" "--asdeps")))
("Mark as explicit" .
(lambda (_)
(helm-system-packages-run-as-root-over-installed "pacman" "--database" "--asexplicit")))
("Show history" . helm-system-packages-pacman-history))
"Actions for Helm pacman."
:group 'helm-system-packages
:type '(alist :key-type string :value-type function))
(defun helm-system-packages-pacman-build-source ()
"Build Helm source for pacman."
(let ((title (or (plist-get (helm-system-packages--cache-get) :title) "package manager")))
(helm-build-in-buffer-source title
:init 'helm-system-packages-init
:candidate-transformer 'helm-system-packages-pacman-transformer
:candidate-number-limit helm-system-packages-candidate-limit
:display-to-real 'helm-system-packages-extract-name
:keymap helm-system-packages-pacman-map
:help-message 'helm-system-packages-pacman-help-message
:persistent-help "Show package description"
:action helm-system-packages-pacman-actions)))
(defun helm-system-packages-pacman ()
"Preconfigured `helm' for pacman."
(unless (helm-system-packages-missing-dependencies-p "expac")
(helm :sources (helm-system-packages-pacman-build-source)
:buffer "*helm pacman*"
:truncate-lines t
:input (when helm-system-packages-use-symbol-at-point-p
(substring-no-properties (or (thing-at-point 'symbol) ""))))))
(provide 'helm-system-packages-pacman)
;;; helm-system-packages-pacman.el ends here