gnu: emacs: Strip double wrap.
[jackhill/guix/guix.git] / guix / ui.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
09edf136 2;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
cbdfa50d 3;;; Copyright © 2013, 2018 Mark H Weaver <mhw@netris.org>
98eb8cbe 4;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
88981dd3
AK
5;;; Copyright © 2014 Cyril Roelandt <tipecaml@gmail.com>
6;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com>
689db38e 7;;; Copyright © 2014, 2015, 2017 Alex Kost <alezost@gmail.com>
88981dd3 8;;; Copyright © 2015 David Thompson <davet@gnu.org>
cf5f2ad3 9;;; Copyright © 2015, 2016 Mathieu Lirzin <mthl@gnu.org>
e95ae7c2
RJ
10;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
11;;; Copyright © 2016 Benz Schenk <benz.schenk@uzh.ch>
85c3fbf5 12;;; Copyright © 2018 Kyle Meyer <kyle@kyleam.com>
15cc7e6a 13;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
387e6b9e
CM
14;;; Copyright © 2019 Chris Marusich <cmmarusich@gmail.com>
15;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
d2cdef65 16;;; Copyright © 2019 Simon Tournier <zimon.toutoune@gmail.com>
e70a8847 17;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
073c34d7 18;;;
233e7676 19;;; This file is part of GNU Guix.
073c34d7 20;;;
233e7676 21;;; GNU Guix is free software; you can redistribute it and/or modify it
073c34d7
LC
22;;; under the terms of the GNU General Public License as published by
23;;; the Free Software Foundation; either version 3 of the License, or (at
24;;; your option) any later version.
25;;;
233e7676 26;;; GNU Guix is distributed in the hope that it will be useful, but
073c34d7
LC
27;;; WITHOUT ANY WARRANTY; without even the implied warranty of
28;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29;;; GNU General Public License for more details.
30;;;
31;;; You should have received a copy of the GNU General Public License
233e7676 32;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
073c34d7
LC
33
34(define-module (guix ui)
37eed374 35 #:use-module (guix i18n)
9e1e0460 36 #:use-module (guix colors)
1b5ee3bd 37 #:use-module (guix diagnostics)
3e43166f 38 #:use-module (guix gexp)
b5bfa477 39 #:use-module (guix sets)
073c34d7
LC
40 #:use-module (guix utils)
41 #:use-module (guix store)
cdd5d6f9 42 #:use-module (guix config)
073c34d7 43 #:use-module (guix packages)
5d7a8584 44 #:use-module (guix profiles)
9bb2b96a 45 #:use-module (guix derivations)
b7071bc5
LC
46 #:use-module (guix build-system)
47 #:use-module (guix serialization)
edd25a8c
LC
48 #:use-module ((guix licenses)
49 #:select (license? license-name license-uri))
dcfc6f21 50 #:use-module ((guix build syscalls)
55e1dfa4
LC
51 #:select (free-disk-space terminal-columns terminal-rows
52 with-file-lock/no-wait))
cbdfa50d 53 #:use-module ((guix build utils)
24cb66d1
LC
54 ;; XXX: All we need are the bindings related to
55 ;; '&invoke-error'. However, to work around the bug described
56 ;; in 5d669883ecc104403c5d3ba7d172e9c02234577c, #:hide
57 ;; unwanted bindings instead of #:select'ing the needed
58 ;; bindings.
5a2639f9
LC
59 #:hide (package-name->name+version
60 ;; Avoid "overrides core binding" warning.
61 delete))
299112d3
LC
62 #:use-module (srfi srfi-1)
63 #:use-module (srfi srfi-11)
2cd09108 64 #:use-module (srfi srfi-19)
073c34d7 65 #:use-module (srfi srfi-26)
2abcc97f 66 #:use-module (srfi srfi-31)
073c34d7 67 #:use-module (srfi srfi-34)
c1d52c71 68 #:use-module (srfi srfi-35)
e31ff8b8 69 #:autoload (ice-9 ftw) (scandir)
64fc89b6 70 #:use-module (ice-9 match)
9bb2b96a 71 #:use-module (ice-9 format)
2cd09108 72 #:use-module (ice-9 regex)
c39693d7 73 #:autoload (ice-9 popen) (open-pipe* close-pipe)
f44c7aac 74 #:autoload (system base compile) (compile-file)
db030303
LC
75 #:autoload (system repl repl) (start-repl)
76 #:autoload (system repl debug) (make-debug stack->vector)
7f0f38b5 77 #:autoload (web uri) (encode-and-join-uri-path)
1cd4027c
ML
78 #:use-module (texinfo)
79 #:use-module (texinfo plain-text)
80 #:use-module (texinfo string-utils)
1b5ee3bd
LC
81
82 ;; Re-exports for backward compatibility.
83 #:re-export (G_ N_ P_ ;now in (guix i18n)
84
85 warning info report-error leave ;now in (guix diagnostics)
86 location->string
87 guix-warning-port program-name)
88 #:export (display-hint
7ea1432e
DT
89 make-user-module
90 load*
4ae7559f 91 warn-about-load-error
cdd5d6f9 92 show-version-and-exit
3441e164 93 show-bug-report-information
fd688c82 94 make-regexp*
969e678e 95 string->number*
1d6243cf 96 size->number
fa394eb9 97 show-derivation-outputs
07ce23e0 98 build-notifier
9bb2b96a 99 show-what-to-build
4d043ab6 100 show-what-to-build*
5d7a8584 101 show-manifest-transaction
073c34d7 102 call-with-error-handling
64fc89b6 103 with-error-handling
2d2f98ef 104 with-unbound-variable-handling
df36e629 105 leave-on-EPIPE
ac5de156 106 read/eval
eb0880e7 107 read/eval-package-expression
8120b23e 108 check-available-space
7b322d3c 109 indented-string
299112d3 110 fill-paragraph
0649321d 111 %text-width
2748ee3b 112 texi->plain-text
1cd4027c 113 package-description-string
689db38e 114 package-synopsis-string
299112d3 115 string->recutils
e49951eb 116 package->recutils
2876b989 117 package-specification->name+version+output
4311cf96 118
7f0f38b5 119 supports-hyperlinks?
2d6bd5ed 120 hyperlink
fa983b82 121 file-hyperlink
7f0f38b5
LC
122 location->hyperlink
123
1acc5e11 124 with-paginated-output-port
c7ae219e
LC
125 relevance
126 package-relevance
4311cf96
LC
127 display-search-results
128
55e1dfa4 129 with-profile-lock
2cd09108
NK
130 string->generations
131 string->duration
e49de93a 132 matching-generations
ad18c7e6
LC
133 display-generation
134 display-profile-content
e95ae7c2 135 display-profile-content-diff
06d45f45
LC
136 roll-back*
137 switch-to-generation*
138 delete-generation*
a725504a
LC
139
140 %default-message-language
141 current-message-language
142
e49951eb 143 run-guix-command
caa6732e 144 run-guix
5d9f9ad6 145 guix-main))
073c34d7
LC
146
147;;; Commentary:
148;;;
149;;; User interface facilities for command-line tools.
150;;;
151;;; Code:
152
dc856223
LC
153(define (print-unbound-variable-error port key args default-printer)
154 ;; Print unbound variable errors more nicely, and in the right language.
155 (match args
156 ((proc message (variable) _ ...)
157 ;; We can always omit PROC because when it's useful (i.e., different from
158 ;; "module-lookup"), it gets displayed before.
2d2f98ef 159 (format port (G_ "error: ~a: unbound variable") variable))
dc856223
LC
160 (_
161 (default-printer))))
162
163(set-exception-printer! 'unbound-variable print-unbound-variable-error)
164
7ea1432e
DT
165(define (make-user-module modules)
166 "Return a new user module with the additional MODULES loaded."
167 ;; Module in which the machine description file is loaded.
168 (let ((module (make-fresh-user-module)))
169 (for-each (lambda (iface)
170 (module-use! module (resolve-interface iface)))
171 modules)
172 module))
173
7f2f6a2c
LC
174(define (last-frame-with-source stack)
175 "Walk stack upwards and return the last frame that has source location
176information, or #f if it could not be found."
2abcc97f
LC
177 (define (frame-with-source frame)
178 ;; Walk from FRAME upwards until source location information is found.
179 (let loop ((frame frame)
180 (previous frame))
181 (if (not frame)
182 previous
abbb9871
LC
183
184 ;; On Guile 3, the latest frame with source may be that of
185 ;; 'raise-exception' in boot-9.scm. Skip it.
186 (if (and (frame-source frame)
187 (not (eq? 'raise-exception (frame-procedure-name frame))))
2abcc97f
LC
188 frame
189 (loop (frame-previous frame) frame)))))
190
7f2f6a2c
LC
191 (let* ((depth (stack-length stack))
192 (last (and (> depth 0) (stack-ref stack 0))))
193 (frame-with-source (if (> depth 1)
194 (stack-ref stack 1) ;skip the 'throw' frame
195 last))))
196
197(define* (load* file user-module
198 #:key (on-error 'nothing-special))
199 "Load the user provided Scheme source code FILE."
db030303
LC
200 (define (error-string frame args)
201 (call-with-output-string
f44c7aac
LC
202 (lambda (port)
203 (apply display-error frame port (cdr args)))))
db030303
LC
204
205 (define tag
206 (make-prompt-tag "user-code"))
207
7ea1432e
DT
208 (catch #t
209 (lambda ()
2abcc97f 210 ;; XXX: Force a recompilation to avoid ABI issues.
92423868
LC
211 ;;
212 ;; In 2.2.3, the bogus answer to <https://bugs.gnu.org/29226> was to
213 ;; ignore all available .go, not just those from ~/.cache, which in turn
214 ;; meant that we had to rebuild *everything*. Since this is too costly,
f44c7aac
LC
215 ;; we have to turn off '%fresh-auto-compile' with that version, so to
216 ;; avoid ABI breakage in the user's config file, we explicitly compile
217 ;; it (the problem remains if the user's config is spread on several
218 ;; modules.) See <https://bugs.gnu.org/29881>.
7949c140
LC
219 (unless (string=? (version) "2.2.3")
220 (set! %fresh-auto-compile #t))
92423868 221
2abcc97f 222 (set! %load-should-auto-compile #t)
7ea1432e
DT
223
224 (save-module-excursion
225 (lambda ()
226 (set-current-module user-module)
7ea1432e 227
2abcc97f
LC
228 ;; Hide the "auto-compiling" messages.
229 (parameterize ((current-warning-port (%make-void-port "w")))
db030303
LC
230 (call-with-prompt tag
231 (lambda ()
7949c140
LC
232 (when (string=? (version) "2.2.3")
233 (catch 'system-error
234 (lambda ()
235 (compile-file file #:env user-module))
236 (const #f))) ;EACCES maybe, let's interpret it
237
db030303
LC
238 ;; Give 'load' an absolute file name so that it doesn't try to
239 ;; search for FILE in %LOAD-PATH. Note: use 'load', not
694e10af
VL
240 ;; 'primitive-load', so that FILE is compiled, which then allows
241 ;; us to provide better error reporting with source line numbers.
db030303
LC
242 (load (canonicalize-path file)))
243 (const #f))))))
2abcc97f
LC
244 (lambda _
245 ;; XXX: Errors are reported from the pre-unwind handler below, but
246 ;; calling 'exit' from there has no effect, so we call it here.
247 (exit 1))
248 (rec (handle-error . args)
249 ;; Capture the stack up to this procedure call, excluded, and pass
250 ;; the faulty stack frame to 'report-load-error'.
db030303 251 (let* ((stack (make-stack #t handle-error tag))
7f2f6a2c 252 (frame (last-frame-with-source stack)))
db030303
LC
253
254 (report-load-error file args frame)
255
256 (case on-error
257 ((debug)
258 (newline)
69daee23 259 (display (G_ "entering debugger; type ',bt' for a backtrace\n"))
db030303
LC
260 (start-repl #:debug (make-debug (stack->vector stack) 0
261 (error-string frame args)
262 #f)))
263 ((backtrace)
264 (newline (current-error-port))
265 (display-backtrace stack (current-error-port)))
266 (else
267 #t))))))
2abcc97f 268
a2985bb1
LC
269(define (known-variable-definition variable)
270 "Search among the currently loaded modules one that defines a variable named
271VARIABLE and return it, or #f if none was found."
272 (define (module<? m1 m2)
273 (match (module-name m2)
274 (('gnu _ ...) #t)
275 (('guix _ ...)
276 (match (module-name m1)
277 (('gnu _ ...) #f)
278 (_ #t)))
279 (_ #f)))
280
b5bfa477
LC
281 (let loop ((modules (list (resolve-module '() #f #f #:ensure #f)))
282 (suggestions '())
283 (visited (setq)))
a2985bb1
LC
284 (match modules
285 (()
286 ;; Pick the "best" suggestion.
287 (match (sort suggestions module<?)
288 (() #f)
289 ((first _ ...) first)))
290 ((head tail ...)
b5bfa477
LC
291 (if (set-contains? visited head)
292 (loop tail suggestions visited)
293 (let ((visited (set-insert head visited))
294 (next (append tail
295 (hash-map->list (lambda (name module)
296 module)
297 (module-submodules head)))))
298 (match (module-local-variable head variable)
299 (#f (loop next suggestions visited))
300 (_
301 (match (module-name head)
302 (('gnu _ ...) head) ;must be that one
303 (_ (loop next (cons head suggestions) visited)))))))))))
a2985bb1 304
1b5ee3bd
LC
305(define %hint-color (color BOLD CYAN))
306
935542fb
LC
307(define* (display-hint message #:optional (port (current-error-port)))
308 "Display MESSAGE, a l10n message possibly containing Texinfo markup, to
309PORT."
a7ae18b1
LC
310 (define colorize
311 (if (color-output? port)
312 (lambda (str)
2569ef9d 313 (colorize-string str %hint-color))
a7ae18b1
LC
314 identity))
315
316 (display (colorize (G_ "hint: ")) port)
317 (display
318 ;; XXX: We should arrange so that the initial indent is wider.
319 (parameterize ((%text-width (max 15 (- (terminal-columns) 5))))
320 (texi->plain-text message))
321 port))
935542fb 322
2d2f98ef
LC
323(define* (report-unbound-variable-error args #:key frame)
324 "Return the given unbound-variable error, where ARGS is the list of 'throw'
325arguments."
326 (match args
327 ((key . args)
328 (print-exception (current-error-port) frame key args)))
329 (match args
330 (('unbound-variable proc message (variable) _ ...)
331 (match (known-variable-definition variable)
332 (#f
333 (display-hint (G_ "Did you forget a @code{use-modules} form?")))
334 ((? module? module)
335 (display-hint (format #f (G_ "Did you forget @code{(use-modules ~a)}?")
336 (module-name module))))))))
337
a2a94b6e
LC
338(define (check-module-matches-file module file)
339 "Check whether FILE starts with 'define-module MODULE' and print a hint if
340it doesn't."
341 ;; This is a common mistake when people start writing their own package
342 ;; definitions and try loading them with 'guix build -L …', so help them
343 ;; diagnose the problem.
344 (define (hint)
345 (display-hint (format #f (G_ "File @file{~a} should probably start with:
346
347@example\n(define-module ~a)\n@end example")
348 file module)))
349
350 (catch 'system-error
351 (lambda ()
352 (let* ((sexp (call-with-input-file file read))
353 (loc (and (pair? sexp)
354 (source-properties->location (source-properties sexp)))))
355 (match sexp
356 (('define-module (names ...) _ ...)
357 (unless (equal? module names)
358 (warning loc
359 (G_ "module name ~a does not match file name '~a'~%")
360 names (module->source-file-name module))
361 (hint)))
362 ((? eof-object?)
363 (warning (G_ "~a: file is empty~%") file))
364 (else
365 (hint)))))
366 (const #f)))
367
2abcc97f 368(define* (report-load-error file args #:optional frame)
db030303 369 "Report the failure to load FILE, a user-provided Scheme file.
1151f6ae
LC
370ARGS is the list of arguments received by the 'throw' handler."
371 (match args
e465d9e1 372 (('system-error . rest)
1151f6ae 373 (let ((err (system-error-errno args)))
69daee23 374 (report-error (G_ "failed to load '~a': ~a~%") file (strerror err))))
a6e22d84
LC
375 (('read-error "scm_i_lreadparen" message _ ...)
376 ;; Guile's missing-paren messages are obscure so we make them more
377 ;; intelligible here.
378 (if (string-suffix? "end of file" message)
379 (let ((location (string-drop-right message
380 (string-length "end of file"))))
381 (format (current-error-port) (G_ "~amissing closing parenthesis~%")
382 location))
383 (apply throw args)))
47212fc7 384 (('syntax-error proc message properties form subform . rest)
1151f6ae 385 (let ((loc (source-properties->location properties)))
47212fc7
LC
386 (report-error loc (G_ "~s: ~a~%")
387 (or subform form) message)))
2d2f98ef
LC
388 (('unbound-variable _ ...)
389 (report-unbound-variable-error args #:frame frame))
7f3bbfaf 390 (((or 'srfi-34 '%exception) obj)
252a1926
LC
391 (cond ((message-condition? obj)
392 (report-error (and (error-location? obj)
393 (error-location obj))
394 (G_ "~a~%")
395 (gettext (condition-message obj) %gettext-domain)))
396 ((formatted-message? obj)
397 (apply report-error
398 (and (error-location? obj) (error-location obj))
399 (gettext (formatted-message-string obj) %gettext-domain)
400 (formatted-message-arguments obj)))
401 (else
402 (report-error (G_ "exception thrown: ~s~%") obj)))
23735137 403 (when (fix-hint? obj)
935542fb 404 (display-hint (condition-fix-hint obj))))
70a50305 405 ((key args ...)
69daee23 406 (report-error (G_ "failed to load '~a':~%") file)
70a50305
LC
407 (match args
408 (((? symbol? proc) (? string? message) (args ...) . rest)
409 (display-error frame (current-error-port) proc message
410 args rest))
411 (_
412 ;; Some exceptions like 'git-error' do not follow Guile's convention
413 ;; above and need to be printed with 'print-exception'.
414 (print-exception (current-error-port) frame key args))))))
1151f6ae 415
a2a94b6e 416(define (warn-about-load-error file module args) ;FIXME: factorize with ↑
4ae7559f
LC
417 "Report the failure to load FILE, a user-provided Scheme file, without
418exiting. ARGS is the list of arguments received by the 'throw' handler."
419 (match args
e465d9e1 420 (('system-error . rest)
4ae7559f 421 (let ((err (system-error-errno args)))
a2a94b6e 422 (warning (G_ "failed to load '~a': ~a~%") module (strerror err))))
4ae7559f
LC
423 (('syntax-error proc message properties form . rest)
424 (let ((loc (source-properties->location properties)))
40262771 425 (warning loc (G_ "~a~%") message)))
723bdb8e
LC
426 (('unbound-variable _ ...)
427 (report-unbound-variable-error args))
7f3bbfaf 428 (((or 'srfi-34 '%exception) obj)
252a1926
LC
429 (cond ((message-condition? obj)
430 (warning (G_ "failed to load '~a': ~a~%")
431 file
432 (gettext (condition-message obj) %gettext-domain)))
433 ((formatted-message? obj)
434 (warning (G_ "failed to load '~a': ~a~%")
435 (apply format #f
436 (gettext (formatted-message-string obj)
437 %gettext-domain)
438 (formatted-message-arguments obj))))
439 (else
440 (warning (G_ "failed to load '~a': exception thrown: ~s~%")
441 file obj))))
4ae7559f 442 ((error args ...)
a2a94b6e
LC
443 (warning (G_ "failed to load '~a':~%") module)
444 (apply display-error #f (current-error-port) args)
445 (check-module-matches-file module file))))
4ae7559f 446
2d2f98ef
LC
447(define (call-with-unbound-variable-handling thunk)
448 (define tag
449 (make-prompt-tag "user-code"))
450
451 (catch 'unbound-variable
452 (lambda ()
453 (call-with-prompt tag
454 thunk
455 (const #f)))
456 (const #t)
457 (rec (handle-error . args)
458 (let* ((stack (make-stack #t handle-error tag))
459 (frame (and stack (last-frame-with-source stack))))
460 (report-unbound-variable-error args #:frame frame)
461 (exit 1)))))
462
463(define-syntax-rule (with-unbound-variable-handling exp ...)
464 "Capture 'unbound-variable' exceptions in the dynamic extent of EXP... and
465report them in a user-friendly way."
466 (call-with-unbound-variable-handling (lambda () exp ...)))
467
a725504a
LC
468(define %default-message-language
469 ;; Default language to use for messages.
470 (make-parameter "en"))
471
472(define (current-message-language)
473 "Return the language used for messages according to the current locale.
474Return %DEFAULT-MESSAGE-LANGUAGE if that information could not be obtained. The
475result is an ISO-639-2 language code such as \"ar\", without the territory
476part."
477 (let ((locale (setlocale LC_MESSAGES)))
478 (match (string-index locale #\_)
479 (#f locale)
480 (index (string-take locale index)))))
481
b2a886f6
LC
482(define (install-locale)
483 "Install the current locale settings."
484 (catch 'system-error
485 (lambda _
486 (setlocale LC_ALL ""))
487 (lambda args
26db747a
LC
488 (display-hint (G_ "Consider installing the @code{glibc-utf8-locales} or
489@code{glibc-locales} package and defining @code{GUIX_LOCPATH}, along these
490lines:
491
492@example
493guix package -i glibc-utf8-locales
494export GUIX_LOCPATH=\"$HOME/.guix-profile/lib/locale\"
495@end example
496
497See the \"Application Setup\" section in the manual, for more info.\n")))))
b2a886f6 498
e49951eb 499(define (initialize-guix)
633f045f 500 "Perform the usual initialization for stand-alone Guix commands."
ce92d269
LC
501 ;; By default don't annoy users with deprecation warnings. In practice,
502 ;; 'define-deprecated' in (ice-9 deprecated) arranges so that those warnings
503 ;; are emitted at expansion-time only, but there are cases where they could
504 ;; slip through, for instance when interpreting code.
505 (unless (getenv "GUILE_WARN_DEPRECATED")
506 (debug-disable 'warn-deprecated))
507
e49951eb 508 (install-locale)
39e9f95d 509 (textdomain %gettext-domain)
e14c3929
LC
510
511 ;; Ignore SIGPIPE. If the daemon closes the connection, we prefer to be
512 ;; notified via an EPIPE later.
513 (sigaction SIGPIPE SIG_IGN)
514
76832d34
LC
515 (setvbuf (current-output-port) 'line)
516 (setvbuf (current-error-port) 'line))
e49951eb 517
cdd5d6f9
LC
518(define* (show-version-and-exit #:optional (command (car (command-line))))
519 "Display version information for COMMAND and `(exit 0)'."
520 (simple-format #t "~a (~a) ~a~%"
521 command %guix-package-name %guix-version)
09edf136 522 (format #t "Copyright ~a 2020 ~a"
d925cdc3
LC
523 ;; TRANSLATORS: Translate "(C)" to the copyright symbol
524 ;; (C-in-a-circle), if this symbol is available in the user's
525 ;; locale. Otherwise, do not translate "(C)"; leave it as-is. */
69daee23
LC
526 (G_ "(C)")
527 (G_ "the Guix authors\n"))
528 (display (G_"\
64a967cc
LC
529License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
530This is free software: you are free to change and redistribute it.
531There is NO WARRANTY, to the extent permitted by law.
532"))
cdd5d6f9
LC
533 (exit 0))
534
3441e164 535(define (show-bug-report-information)
cf5f2ad3
ML
536 ;; TRANSLATORS: The placeholder indicates the bug-reporting address for this
537 ;; package. Please add another line saying "Report translation bugs to
538 ;; ...\n" with the address for translation bugs (typically your translation
539 ;; team's web or email address).
69daee23 540 (format #t (G_ "
3441e164 541Report bugs to: ~a.") %guix-bug-report-address)
69daee23 542 (format #t (G_ "
3441e164 543~a home page: <~a>") %guix-package-name %guix-home-page-url)
69daee23 544 (display (G_ "
3441e164
LC
545General help using GNU software: <http://www.gnu.org/gethelp/>"))
546 (newline))
547
e7ff0543
LC
548(define (augmented-system-error-handler file)
549 "Return a 'system-error' handler that mentions FILE in its message."
550 (lambda (key proc fmt args errno)
551 ;; Augment the FMT and ARGS with information about TARGET (this
552 ;; information is missing as of Guile 2.0.11, making the exception
553 ;; uninformative.)
554 (apply throw key proc "~A: ~S"
555 (list (strerror (car errno)) file)
556 (list errno))))
557
6616a352
TS
558(define-syntax apply-formals
559 (syntax-rules ()
560 ((_ proc (args ...)) (proc args ...))
561 ((_ proc (arg1 args ... . rest)) (apply proc arg1 args ... rest))))
562
563(define-syntax-rule (error-reporting-wrapper proc formals file)
e7ff0543
LC
564 "Wrap PROC such that its 'system-error' exceptions are augmented to mention
565FILE."
566 (let ((real-proc (@ (guile) proc)))
6616a352 567 (lambda formals
e7ff0543
LC
568 (catch 'system-error
569 (lambda ()
6616a352 570 (apply-formals real-proc formals))
e7ff0543
LC
571 (augmented-system-error-handler file)))))
572
7522a016
LC
573(set! symlink
574 ;; We 'set!' the global binding because (gnu build ...) modules and similar
575 ;; typically don't use (guix ui).
e7ff0543 576 (error-reporting-wrapper symlink (source target) target))
44fd6ef1 577
9b14107f
LC
578(set! copy-file
579 ;; Note: here we use 'set!', not #:replace, because UIs typically use
580 ;; 'copy-recursively', which doesn't use (guix ui).
e7ff0543
LC
581 (error-reporting-wrapper copy-file (source target) target))
582
6d30b1b2
LC
583(set! canonicalize-path
584 (error-reporting-wrapper canonicalize-path (file) file))
585
90b144d2
LC
586(set! delete-file
587 (error-reporting-wrapper delete-file (file) file))
588
6616a352
TS
589(set! execlp
590 (error-reporting-wrapper execlp (filename . args) filename))
9b14107f 591
fd688c82
LC
592(define (make-regexp* regexp . flags)
593 "Like 'make-regexp' but error out if REGEXP is invalid, reporting the error
594nicely."
595 (catch 'regular-expression-syntax
596 (lambda ()
597 (apply make-regexp regexp flags))
598 (lambda (key proc message . rest)
69daee23 599 (leave (G_ "'~a' is not a valid regular expression: ~a~%")
fd688c82
LC
600 regexp message))))
601
969e678e
LC
602(define (string->number* str)
603 "Like `string->number', but error out with an error message on failure."
604 (or (string->number str)
69daee23 605 (leave (G_ "~a: invalid number~%") str)))
969e678e 606
1d6243cf
LC
607(define (size->number str)
608 "Convert STR, a storage measurement representation such as \"1024\" or
609\"1MiB\", to a number of bytes. Raise an error if STR could not be
610interpreted."
611 (define unit-pos
fa99c4bb
LC
612 (string-rindex str
613 (char-set-union (char-set #\.) char-set:digit)))
1d6243cf
LC
614
615 (define unit
616 (and unit-pos (substring str (+ 1 unit-pos))))
617
618 (let* ((numstr (if unit-pos
619 (substring str 0 (+ 1 unit-pos))
620 str))
621 (num (string->number numstr)))
622 (unless num
69daee23 623 (leave (G_ "invalid number: ~a~%") numstr))
1d6243cf
LC
624
625 ((compose inexact->exact round)
626 (* num
627 (match unit
4a44d7bb
LC
628 ((or "KiB" "K" "k") (expt 2 10))
629 ((or "MiB" "M") (expt 2 20))
630 ((or "GiB" "G") (expt 2 30))
631 ((or "TiB" "T") (expt 2 40))
632 ((or "PiB" "P") (expt 2 50))
633 ((or "EiB" "E") (expt 2 60))
634 ((or "ZiB" "Z") (expt 2 70))
635 ((or "YiB" "Y") (expt 2 80))
636 ("kB" (expt 10 3))
1d6243cf
LC
637 ("MB" (expt 10 6))
638 ("GB" (expt 10 9))
639 ("TB" (expt 10 12))
4a44d7bb
LC
640 ("PB" (expt 10 15))
641 ("EB" (expt 10 18))
642 ("ZB" (expt 10 21))
643 ("YB" (expt 10 24))
1d6243cf 644 ("" 1)
e465d9e1 645 (x
69daee23 646 (leave (G_ "unknown unit: ~a~%") unit)))))))
1d6243cf 647
3b80b813
LC
648(define (display-collision-resolution-hint collision)
649 "Display hints on how to resolve COLLISION, a &profile-collistion-error."
650 (define (top-most-entry entry)
651 (let loop ((entry entry))
652 (match (force (manifest-entry-parent entry))
653 (#f entry)
654 (parent (loop parent)))))
655
656 (let* ((first (profile-collision-error-entry collision))
657 (second (profile-collision-error-conflict collision))
658 (name1 (manifest-entry-name (top-most-entry first)))
659 (name2 (manifest-entry-name (top-most-entry second))))
660 (if (string=? name1 name2)
661 (display-hint (format #f (G_ "You cannot have two different versions
662or variants of @code{~a} in the same profile.")
663 name1))
664 (display-hint (format #f (G_ "Try upgrading both @code{~a} and @code{~a},
665or remove one of them from the profile.")
666 name1 name2)))))
667
a168c3e4
LC
668(cond-expand
669 (guile-3
670 ;; On Guile 3.0, in 'call-with-error-handling' we need to re-raise. To
671 ;; preserve useful backtraces in case of unhandled errors, we want that to
672 ;; happen before the stack has been unwound, hence 'guard*'.
673 (define-syntax-rule (guard* (var clauses ...) exp ...)
674 "This variant of SRFI-34 'guard' does not unwind the stack before
675evaluating the tests and bodies of CLAUSES."
676 (with-exception-handler
677 (lambda (var)
678 (cond clauses ... (else (raise var))))
679 (lambda () exp ...)
680 #:unwind? #f)))
681 (else
682 (define-syntax-rule (guard* (var clauses ...) exp ...)
683 (guard (var clauses ...) exp ...))))
684
073c34d7
LC
685(define (call-with-error-handling thunk)
686 "Call THUNK within a user-friendly error handler."
bec7f352
LC
687 (define (port-filename* port)
688 ;; 'port-filename' returns #f for non-file ports, but it raises an
689 ;; exception for file ports that are closed. Work around that.
690 (and (not (port-closed? port))
691 (port-filename port)))
692
a168c3e4
LC
693 (guard* (c ((package-input-error? c)
694 (let* ((package (package-error-package c))
695 (input (package-error-invalid-input c))
696 (location (package-location package))
697 (file (location-file location))
698 (line (location-line location))
699 (column (location-column location)))
700 (leave (G_ "~a:~a:~a: package `~a' has an invalid input: ~s~%")
701 file line column
702 (package-full-name package) input)))
703 ((package-cross-build-system-error? c)
704 (let* ((package (package-error-package c))
705 (loc (package-location package))
706 (system (package-build-system package)))
707 (leave (G_ "~a: ~a: build system `~a' does not support cross builds~%")
708 (location->string loc)
709 (package-full-name package)
710 (build-system-name system))))
711 ((gexp-input-error? c)
712 (let ((input (package-error-invalid-input c)))
713 (leave (G_ "~s: invalid G-expression input~%")
714 (gexp-error-invalid-input c))))
715 ((profile-not-found-error? c)
716 (leave (G_ "profile '~a' does not exist~%")
717 (profile-error-profile c)))
718 ((missing-generation-error? c)
719 (leave (G_ "generation ~a of profile '~a' does not exist~%")
720 (missing-generation-error-generation c)
721 (profile-error-profile c)))
722 ((unmatched-pattern-error? c)
723 (let ((pattern (unmatched-pattern-error-pattern c)))
724 (leave (G_ "package '~a~@[@~a~]~@[:~a~]' not found in profile~%")
725 (manifest-pattern-name pattern)
726 (manifest-pattern-version pattern)
727 (match (manifest-pattern-output pattern)
728 ("out" #f)
729 (output output)))))
730 ((profile-collision-error? c)
731 (let ((entry (profile-collision-error-entry c))
732 (conflict (profile-collision-error-conflict c)))
733 (define (report-parent-entries entry)
734 (let ((parent (force (manifest-entry-parent entry))))
735 (when (manifest-entry? parent)
736 (report-error (G_ " ... propagated from ~a@~a~%")
737 (manifest-entry-name parent)
738 (manifest-entry-version parent))
739 (report-parent-entries parent))))
740
741 (define (manifest-entry-output* entry)
742 (match (manifest-entry-output entry)
743 ("out" "")
744 (output (string-append ":" output))))
745
746 (report-error (G_ "profile contains conflicting entries for ~a~a~%")
747 (manifest-entry-name entry)
748 (manifest-entry-output* entry))
749 (report-error (G_ " first entry: ~a@~a~a ~a~%")
750 (manifest-entry-name entry)
751 (manifest-entry-version entry)
752 (manifest-entry-output* entry)
753 (manifest-entry-item entry))
754 (report-parent-entries entry)
755 (report-error (G_ " second entry: ~a@~a~a ~a~%")
756 (manifest-entry-name conflict)
757 (manifest-entry-version conflict)
758 (manifest-entry-output* conflict)
759 (manifest-entry-item conflict))
760 (report-parent-entries conflict)
761 (display-collision-resolution-hint c)
762 (exit 1)))
763 ((nar-error? c)
764 (let ((file (nar-error-file c))
765 (port (nar-error-port c)))
766 (if file
767 (leave (G_ "corrupt input while restoring '~a' from ~s~%")
768 file (or (port-filename* port) port))
769 (leave (G_ "corrupt input while restoring archive from ~s~%")
770 (or (port-filename* port) port)))))
771 ((store-connection-error? c)
772 (leave (G_ "failed to connect to `~a': ~a~%")
773 (store-connection-error-file c)
774 (strerror (store-connection-error-code c))))
775 ((store-protocol-error? c)
776 ;; FIXME: Server-provided error messages aren't i18n'd.
777 (leave (G_ "~a~%")
778 (store-protocol-error-message c)))
779 ((derivation-missing-output-error? c)
780 (leave (G_ "reference to invalid output '~a' of derivation '~a'~%")
781 (derivation-missing-output c)
782 (derivation-file-name (derivation-error-derivation c))))
783 ((file-search-error? c)
784 (leave (G_ "file '~a' could not be found in these \
d26e1967 785directories:~{ ~a~}~%")
a168c3e4
LC
786 (file-search-error-file-name c)
787 (file-search-error-search-path c)))
788 ((invoke-error? c)
789 (leave (G_ "program exited\
cbdfa50d
MW
790~@[ with non-zero exit status ~a~]\
791~@[ terminated by signal ~a~]\
792~@[ stopped by signal ~a~]: ~s~%")
a168c3e4
LC
793 (invoke-error-exit-status c)
794 (invoke-error-term-signal c)
795 (invoke-error-stop-signal c)
796 (cons (invoke-error-program c)
797 (invoke-error-arguments c))))
a168c3e4 798
252a1926
LC
799 ((formatted-message? c)
800 (apply report-error
801 (and (error-location? c) (error-location c))
802 (gettext (formatted-message-string c) %gettext-domain)
803 (formatted-message-arguments c))
804 (when (fix-hint? c)
805 (display-hint (condition-fix-hint c)))
806 (exit 1))
807
a168c3e4
LC
808 ;; On Guile 3.0.0, exceptions such as 'unbound-variable' are
809 ;; compound and include a '&message'. However, that message only
810 ;; contains the format string. Thus, special-case it here to
811 ;; avoid displaying a bare format string.
812 ;;
813 ;; Furthermore, use of 'guard*' ensures that the stack has not
814 ;; been unwound when we re-raise, since that would otherwise show
815 ;; useless backtraces.
816 ((cond-expand
817 (guile-3
818 ((exception-predicate &exception-with-kind-and-args) c))
819 (else #f))
05f3d340
LC
820 (raise c))
821
822 ((message-condition? c)
823 ;; Normally '&message' error conditions have an i18n'd message.
824 (report-error (and (error-location? c) (error-location c))
825 (G_ "~a~%")
826 (gettext (condition-message c) %gettext-domain))
827 (when (fix-hint? c)
828 (display-hint (condition-fix-hint c)))
829 (exit 1)))
a168c3e4
LC
830 ;; Catch EPIPE and the likes.
831 (catch 'system-error
832 thunk
833 (lambda (key proc format-string format-args . rest)
834 (leave (G_ "~a: ~a~%") proc
835 (apply format #f format-string format-args))))))
073c34d7 836
df36e629 837(define-syntax-rule (leave-on-EPIPE exp ...)
694e10af 838 "Run EXP... in a context where EPIPE errors are caught and lead to 'exit'
df36e629
LC
839with successful exit code. This is useful when writing to the standard output
840may lead to EPIPE, because the standard output is piped through 'head' or
841similar."
842 (catch 'system-error
843 (lambda ()
844 exp ...)
845 (lambda args
846 ;; We really have to exit this brutally, otherwise Guile eventually
847 ;; attempts to flush all the ports, leading to an uncaught EPIPE down
848 ;; the path.
849 (if (= EPIPE (system-error-errno args))
850 (primitive-_exit 0)
851 (apply throw args)))))
852
56b82106
LC
853(define %guix-user-module
854 ;; Module in which user expressions are evaluated.
07254feb
LC
855 ;; Compute lazily to avoid circularity with (guix gexp).
856 (delay
857 (let ((module (make-module)))
858 (beautify-user-module! module)
859 ;; Use (guix gexp) so that one can use #~ & co.
860 (module-use! module (resolve-interface '(guix gexp)))
861 module)))
56b82106 862
ac5de156
LC
863(define (read/eval str)
864 "Read and evaluate STR, raising an error if something goes wrong."
eb0880e7
LC
865 (let ((exp (catch #t
866 (lambda ()
867 (call-with-input-string str read))
868 (lambda args
69daee23 869 (leave (G_ "failed to read expression ~s: ~s~%")
eb0880e7 870 str args)))))
ac5de156
LC
871 (catch #t
872 (lambda ()
07254feb 873 (eval exp (force %guix-user-module)))
ac5de156 874 (lambda args
69daee23 875 (report-error (G_ "failed to evaluate expression '~a':~%") exp)
41766807
LC
876 (match args
877 (('syntax-error proc message properties form . rest)
69daee23 878 (report-error (G_ "syntax error: ~a~%") message))
7f3bbfaf 879 (((or 'srfi-34 '%exception) obj)
252a1926
LC
880 (cond ((message-condition? obj)
881 (report-error (G_ "~a~%")
882 (gettext (condition-message obj)
883 %gettext-domain)))
884 ((formatted-message? obj)
885 (apply report-error #f
886 (gettext (formatted-message-string obj)
887 %gettext-domain)
888 (formatted-message-arguments obj)))
889 (else
890 (report-error (G_ "exception thrown: ~s~%") obj))))
41766807
LC
891 ((error args ...)
892 (apply display-error #f (current-error-port) args))
893 (what? #f))
894 (exit 1)))))
ac5de156
LC
895
896(define (read/eval-package-expression str)
897 "Read and evaluate STR and return the package it refers to, or exit an
898error."
899 (match (read/eval str)
900 ((? package? p) p)
e465d9e1 901 (x
69daee23 902 (leave (G_ "expression ~s does not evaluate to a package~%")
ac5de156 903 str))))
eb0880e7 904
fa394eb9 905(define (show-derivation-outputs derivation)
08c95ba2
LC
906 "Show the output file names of DERIVATION, which can be a derivation or a
907derivation input."
908 (define (show-outputs derivation outputs)
909 (format #t "~{~a~%~}"
910 (map (cut derivation->output-path derivation <>)
911 outputs)))
912
913 (match derivation
914 ((? derivation?)
915 (show-outputs derivation (derivation-output-names derivation)))
916 ((? derivation-input? input)
917 (show-outputs (derivation-input-derivation input)
918 (derivation-input-sub-derivations input)))))
fa394eb9 919
8120b23e
LC
920(define* (check-available-space need
921 #:optional (directory (%store-prefix)))
922 "Make sure at least NEED bytes are available in DIRECTORY. Otherwise emit a
dcfc6f21
LC
923warning."
924 (let ((free (catch 'system-error
925 (lambda ()
8120b23e 926 (free-disk-space directory))
dcfc6f21
LC
927 (const #f))))
928 (when (and free (>= need free))
929 (warning (G_ "at least ~,1h MB needed but only ~,1h MB available in ~a~%")
8120b23e 930 (/ need 1e6) (/ free 1e6) directory))))
dcfc6f21 931
d4aa147e
LC
932(define (graft-derivation? drv)
933 "Return true if DRV is definitely a graft derivation, false otherwise."
934 (match (assq-ref (derivation-properties drv) 'type)
935 ('graft #t)
936 (_ #f)))
937
80eebee9
RW
938(define (profile-hook-derivation? drv)
939 "Return true if DRV is definitely a profile hook derivation, false otherwise."
940 (match (assq-ref (derivation-properties drv) 'type)
941 ('profile-hook #t)
942 (_ #f)))
943
8b4615ab
LC
944(define (colorize-store-file-name file)
945 "Colorize FILE, a store file name, such that the hash part is less prominent
946that the rest."
947 (let ((len (string-length file))
948 (prefix (+ (string-length (%store-prefix)) 32 2)))
949 (if (< len prefix)
950 file
951 (string-append (colorize-string (string-take file prefix)
952 (color DARK))
953 (string-drop file prefix)))))
954
a55d83b5
LC
955(define %default-verbosity
956 ;; Default verbosity level for 'show-what-to-build'.
957 2)
958
dd36b51b 959(define* (show-what-to-build store drv
58c08df0 960 #:key dry-run? (use-substitutes? #t)
a55d83b5 961 (verbosity %default-verbosity)
58c08df0 962 (mode (build-mode normal)))
9bb2b96a 963 "Show what will or would (depending on DRY-RUN?) be built in realizing the
d38d4ffa
LC
964derivations listed in DRV using MODE, a 'build-mode' value. The elements of
965DRV can be either derivations or derivation inputs.
966
883a1765 967Return two values: a Boolean indicating whether there's something to build,
a55d83b5
LC
968and a Boolean indicating whether there's something to download.
969
970When USE-SUBSTITUTES?, check and report what is prerequisites are available
971for download. VERBOSITY is an integer indicating the level of details to be
972shown: level 2 and higher provide all the details, level 1 shows a high-level
973summary, and level 0 shows nothing."
d38d4ffa
LC
974 (define inputs
975 (map (match-lambda
976 ((? derivation? drv) (derivation-input drv))
977 ((? derivation-input? input) input))
978 drv))
979
2dc98729 980 (define substitutable-info
694e10af 981 ;; Call 'substitution-oracle' upfront so we don't end up launching the
e9651e39
LC
982 ;; substituter many times. This makes a big difference, especially when
983 ;; DRV is a long list as is the case with 'guix environment'.
984 (if use-substitutes?
d74392a8 985 (substitution-oracle store inputs #:mode mode)
e9651e39
LC
986 (const #f)))
987
8b4615ab
LC
988 (define colorized-store-item
989 (if (color-output? (current-error-port))
990 colorize-store-file-name
991 identity))
992
bec34741 993 (let*-values (((build/full download)
d38d4ffa 994 (derivation-build-plan store inputs
9844d009
LC
995 #:mode mode
996 #:substitutable-info
997 substitutable-info))
80eebee9 998 ((graft hook build)
9844d009
LC
999 (match (fold (lambda (drv acc)
1000 (let ((file (derivation-file-name drv)))
80eebee9
RW
1001 (match acc
1002 ((#:graft graft #:hook hook #:build build)
1003 (cond
1004 ((graft-derivation? drv)
1005 `(#:graft ,(cons file graft)
1006 #:hook ,hook
1007 #:build ,build))
1008 ((profile-hook-derivation? drv)
1009 `(#:graft ,graft
1010 #:hook ,(cons file hook)
1011 #:build ,build))
1012 (else
1013 `(#:graft ,graft
1014 #:hook ,hook
1015 #:build ,(cons file build))))))))
1016 '(#:graft () #:hook () #:build ())
bec34741 1017 build/full)
80eebee9
RW
1018 ((#:graft graft #:hook hook #:build build)
1019 (values graft hook build)))))
dcfc6f21
LC
1020 (define installed-size
1021 (reduce + 0 (map substitutable-nar-size download)))
1022
d9bad2f0
LC
1023 (define download-size
1024 (/ (reduce + 0 (map substitutable-download-size download))
1025 1e6))
1026
1027 (define display-download-size?
1028 ;; Sometimes narinfos lack information about the download size. Only
1029 ;; display when we have information for all of DOWNLOAD.
1030 (not (any (compose zero? substitutable-download-size) download)))
1031
a55d83b5
LC
1032 ;; Combinatorial explosion ahead along two axes: DRY-RUN? and VERBOSITY.
1033 ;; Unfortunately, this is hardly avoidable for proper i18n.
9bb2b96a 1034 (if dry-run?
dd36b51b 1035 (begin
a55d83b5
LC
1036 (unless (zero? verbosity)
1037 (format (current-error-port)
1038 (N_ "~:[The following derivation would be built:~%~{ ~a~%~}~;~]"
1039 "~:[The following derivations would be built:~%~{ ~a~%~}~;~]"
1040 (length build))
1041 (null? build) (map colorized-store-item build)))
1042 (cond ((>= verbosity 2)
1043 (if display-download-size?
1044 (format (current-error-port)
1045 ;; TRANSLATORS: "MB" is for "megabyte"; it should be
1046 ;; translated to the corresponding abbreviation.
1047 (G_ "~:[~,1h MB would be downloaded:~%~{ ~a~%~}~;~]")
1048 (null? download)
1049 download-size
1050 (map (compose colorized-store-item substitutable-path)
1051 download))
1052 (format (current-error-port)
1053 (N_ "~:[The following file would be downloaded:~%~{ ~a~%~}~;~]"
1054 "~:[The following files would be downloaded:~%~{ ~a~%~}~;~]"
1055 (length download))
1056 (null? download)
1057 (map (compose colorized-store-item substitutable-path)
1058 download)))
1059 (format (current-error-port)
1060 (N_ "~:[The following graft would be made:~%~{ ~a~%~}~;~]"
1061 "~:[The following grafts would be made:~%~{ ~a~%~}~;~]"
1062 (length graft))
1063 (null? graft) (map colorized-store-item graft))
1064 (format (current-error-port)
1065 (N_ "~:[The following profile hook would be built:~%~{ ~a~%~}~;~]"
1066 "~:[The following profile hooks would be built:~%~{ ~a~%~}~;~]"
1067 (length hook))
1068 (null? hook) (map colorized-store-item hook)))
1069 ((= verbosity 1)
1070 ;; Display the bare minimum; don't mention grafts and hooks.
1071 (if display-download-size?
1072 (format (current-error-port)
1073 ;; TRANSLATORS: "MB" is for "megabyte"; it should be
1074 ;; translated to the corresponding abbreviation.
1075 (G_ "~:[~,1h MB would be downloaded~%~;~]")
1076 (null? download) download-size)
1077 (format (current-error-port)
1078 (N_ "~:[~h item would be downloaded~%~;~]"
1079 "~:[~h items would be downloaded~%~;~]"
1080 (length download))
1081 (null? download) (length download))))))
1082
dd36b51b 1083 (begin
a55d83b5
LC
1084 (unless (zero? verbosity)
1085 (format (current-error-port)
1086 (N_ "~:[The following derivation will be built:~%~{ ~a~%~}~;~]"
1087 "~:[The following derivations will be built:~%~{ ~a~%~}~;~]"
1088 (length build))
1089 (null? build) (map colorized-store-item build)))
1090 (cond ((>= verbosity 2)
1091 (if display-download-size?
1092 (format (current-error-port)
1093 ;; TRANSLATORS: "MB" is for "megabyte"; it should be
1094 ;; translated to the corresponding abbreviation.
1095 (G_ "~:[~,1h MB will be downloaded:~%~{ ~a~%~}~;~]")
1096 (null? download)
1097 download-size
1098 (map (compose colorized-store-item substitutable-path)
1099 download))
1100 (format (current-error-port)
1101 (N_ "~:[The following file will be downloaded:~%~{ ~a~%~}~;~]"
1102 "~:[The following files will be downloaded:~%~{ ~a~%~}~;~]"
1103 (length download))
1104 (null? download)
1105 (map (compose colorized-store-item substitutable-path)
1106 download)))
1107 (format (current-error-port)
1108 (N_ "~:[The following graft will be made:~%~{ ~a~%~}~;~]"
1109 "~:[The following grafts will be made:~%~{ ~a~%~}~;~]"
1110 (length graft))
1111 (null? graft) (map colorized-store-item graft))
1112 (format (current-error-port)
1113 (N_ "~:[The following profile hook will be built:~%~{ ~a~%~}~;~]"
1114 "~:[The following profile hooks will be built:~%~{ ~a~%~}~;~]"
1115 (length hook))
1116 (null? hook) (map colorized-store-item hook)))
1117 ((= verbosity 1)
1118 ;; Display the bare minimum; don't mention grafts and hooks.
1119 (if display-download-size?
1120 (format (current-error-port)
1121 ;; TRANSLATORS: "MB" is for "megabyte"; it should be
1122 ;; translated to the corresponding abbreviation.
1123 (G_ "~:[~,1h MB will be downloaded~%~;~]")
1124 (null? download) download-size)
1125 (format (current-error-port)
1126 (N_ "~:[~h item will be downloaded~%~;~]"
1127 "~:[~h items will be downloaded~%~;~]"
1128 (length download))
1129 (null? download) (length download)))))))
dcfc6f21
LC
1130
1131 (check-available-space installed-size)
1132
883a1765 1133 (values (pair? build/full) (pair? download))))
9bb2b96a 1134
4d043ab6
DT
1135(define show-what-to-build*
1136 (store-lift show-what-to-build))
1137
a55d83b5
LC
1138(define* (build-notifier #:key (dry-run? #f) (use-substitutes? #t)
1139 (verbosity %default-verbosity))
07ce23e0
LC
1140 "Return a procedure suitable for 'with-build-handler' that, when
1141'build-things' is called, invokes 'show-what-to-build' to display the build
1142plan. When DRY-RUN? is true, the 'with-build-handler' form returns without
1143any build happening."
1144 (define not-comma
1145 (char-set-complement (char-set #\,)))
1146
1147 (define (read-derivation-from-file* item)
1148 (catch 'system-error
1149 (lambda ()
1150 (read-derivation-from-file item))
1151 (const #f)))
1152
1153 (lambda (continue store things mode)
1154 (define inputs
1155 ;; List of derivation inputs to build. Filter out non-existent '.drv'
1156 ;; files because the daemon transparently tries to substitute them.
1157 (filter-map (match-lambda
1158 (((? derivation-path? drv) . output)
1159 (let ((drv (read-derivation-from-file* drv))
1160 (outputs (string-tokenize output not-comma)))
1161 (and drv (derivation-input drv outputs))))
1162 ((? derivation-path? drv)
1163 (and=> (read-derivation-from-file* drv)
1164 derivation-input))
1165 (_
1166 #f))
1167 things))
1168
9b771305
LC
1169 (let-values (((build? download?)
1170 (show-what-to-build store inputs
1171 #:dry-run? dry-run?
1172 #:use-substitutes? use-substitutes?
a55d83b5 1173 #:verbosity verbosity
9b771305
LC
1174 #:mode mode)))
1175
1176 (unless (and (or build? download?)
1177 dry-run?)
1178 (continue #t)))))
07ce23e0 1179
5d7a8584
AK
1180(define (right-arrow port)
1181 "Return either a string containing the 'RIGHT ARROW' character, or an ASCII
1182replacement if PORT is not Unicode-capable."
1062063a
LC
1183 (let ((encoding (port-encoding port))
1184 (arrow "→"))
1185 (catch 'encoding-error
1186 (lambda ()
1187 (call-with-output-string
1188 (lambda (port)
1189 (set-port-encoding! port encoding)
1190 (set-port-conversion-strategy! port 'error)
1191 (display arrow port))))
1192 (lambda (key . args)
1193 "->"))))
5d7a8584 1194
3e5ab0a7
LC
1195(define* (tabulate rows #:key (initial-indent 0) (max-width 25)
1196 (inter-column " "))
1197 "Return a list of strings where each string is a tabulated representation of
1198an element of ROWS. All the ROWS must be lists of the same number of cells.
1199
1200Add INITIAL-INDENT white space at the beginning of each row. Ensure that
1201columns are at most MAX-WIDTH characters wide. Use INTER-COLUMN as a
1202separator between subsequent columns."
1203 (define column-widths
1204 ;; List of column widths.
1205 (let loop ((rows rows)
1206 (widths '()))
1207 (match rows
1208 (((? null?) ...)
1209 (reverse widths))
1210 (((column rest ...) ...)
1211 (loop rest
1212 (cons (min (apply max (map string-length column))
1213 max-width)
1214 widths))))))
1215
1216 (define indent
1217 (make-string initial-indent #\space))
1218
1219 (define (string-pad-right* str len)
1220 (if (> (string-length str) len)
1221 str
1222 (string-pad-right str len)))
1223
1224 (map (lambda (row)
1225 (string-trim-right
1226 (string-append indent
1227 (string-join
1228 (map string-pad-right* row column-widths)
1229 inter-column))))
1230 rows))
1231
5d7a8584
AK
1232(define* (show-manifest-transaction store manifest transaction
1233 #:key dry-run?)
1234 "Display what will/would be installed/removed from MANIFEST by TRANSACTION."
8465f1f6
LC
1235 (define (package-strings names versions outputs)
1236 (tabulate (zip (map (lambda (name output)
1237 (if (string=? output "out")
1238 name
1239 (string-append name ":" output)))
1240 names outputs)
1241 versions)
1242 #:initial-indent 3))
5d7a8584
AK
1243
1244 (define → ;an arrow that can be represented on stderr
1245 (right-arrow (current-error-port)))
1246
3e5ab0a7
LC
1247 (define (upgrade-string names old-version new-version outputs)
1248 (tabulate (zip (map (lambda (name output)
1249 (if (string=? output "out")
1250 name
1251 (string-append name ":" output)))
1252 names outputs)
1253 (map (lambda (old new)
1254 (if (string=? old new)
5c83dd1d 1255 (G_ "(dependencies or package changed)")
3e5ab0a7
LC
1256 (string-append old " " → " " new)))
1257 old-version new-version))
1258 #:initial-indent 3))
5d7a8584 1259
46b23e1a 1260 (let-values (((remove install upgrade downgrade)
5d7a8584
AK
1261 (manifest-transaction-effects manifest transaction)))
1262 (match remove
1263 ((($ <manifest-entry> name version output item) ..1)
1264 (let ((len (length name))
8465f1f6 1265 (remove (package-strings name version output)))
5d7a8584
AK
1266 (if dry-run?
1267 (format (current-error-port)
1268 (N_ "The following package would be removed:~%~{~a~%~}~%"
1269 "The following packages would be removed:~%~{~a~%~}~%"
1270 len)
1271 remove)
1272 (format (current-error-port)
1273 (N_ "The following package will be removed:~%~{~a~%~}~%"
1274 "The following packages will be removed:~%~{~a~%~}~%"
1275 len)
1276 remove))))
30906825 1277 (x #f))
46b23e1a
LC
1278 (match downgrade
1279 (((($ <manifest-entry> name old-version)
1280 . ($ <manifest-entry> _ new-version output item)) ..1)
1281 (let ((len (length name))
3e5ab0a7
LC
1282 (downgrade (upgrade-string name old-version new-version
1283 output)))
46b23e1a
LC
1284 (if dry-run?
1285 (format (current-error-port)
1286 (N_ "The following package would be downgraded:~%~{~a~%~}~%"
1287 "The following packages would be downgraded:~%~{~a~%~}~%"
1288 len)
1289 downgrade)
1290 (format (current-error-port)
1291 (N_ "The following package will be downgraded:~%~{~a~%~}~%"
1292 "The following packages will be downgraded:~%~{~a~%~}~%"
1293 len)
1294 downgrade))))
30906825 1295 (x #f))
5d7a8584
AK
1296 (match upgrade
1297 (((($ <manifest-entry> name old-version)
1298 . ($ <manifest-entry> _ new-version output item)) ..1)
1299 (let ((len (length name))
3e5ab0a7
LC
1300 (upgrade (upgrade-string name
1301 old-version new-version
1302 output)))
5d7a8584
AK
1303 (if dry-run?
1304 (format (current-error-port)
1305 (N_ "The following package would be upgraded:~%~{~a~%~}~%"
1306 "The following packages would be upgraded:~%~{~a~%~}~%"
1307 len)
1308 upgrade)
1309 (format (current-error-port)
1310 (N_ "The following package will be upgraded:~%~{~a~%~}~%"
1311 "The following packages will be upgraded:~%~{~a~%~}~%"
1312 len)
1313 upgrade))))
30906825 1314 (x #f))
5d7a8584
AK
1315 (match install
1316 ((($ <manifest-entry> name version output item _) ..1)
1317 (let ((len (length name))
8465f1f6 1318 (install (package-strings name version output)))
5d7a8584
AK
1319 (if dry-run?
1320 (format (current-error-port)
1321 (N_ "The following package would be installed:~%~{~a~%~}~%"
1322 "The following packages would be installed:~%~{~a~%~}~%"
1323 len)
1324 install)
1325 (format (current-error-port)
1326 (N_ "The following package will be installed:~%~{~a~%~}~%"
1327 "The following packages will be installed:~%~{~a~%~}~%"
1328 len)
1329 install))))
30906825 1330 (x #f))))
5d7a8584 1331
073c34d7
LC
1332(define-syntax with-error-handling
1333 (syntax-rules ()
1334 "Run BODY within a user-friendly error condition handler."
1335 ((_ body ...)
1336 (call-with-error-handling
1337 (lambda ()
1338 body ...)))))
1339
7b322d3c
LC
1340(define* (indented-string str indent
1341 #:key (initial-indent? #t))
694e10af 1342 "Return STR with each newline preceded by INDENT spaces. When
7b322d3c
LC
1343INITIAL-INDENT? is true, the first line is also indented."
1344 (define indent-string
1345 (make-list indent #\space))
1346
1347 (list->string
1348 (string-fold-right (lambda (chr result)
1349 (if (eqv? chr #\newline)
1350 (cons chr (append indent-string result))
1351 (cons chr result)))
1352 '()
1353 (if initial-indent?
1354 (string-append (list->string indent-string) str)
1355 str))))
1356
299112d3
LC
1357(define* (fill-paragraph str width #:optional (column 0))
1358 "Fill STR such that each line contains at most WIDTH characters, assuming
1359that the first character is at COLUMN.
1360
1361When STR contains a single line break surrounded by other characters, it is
1362converted to a space; sequences of more than one line break are preserved."
1363 (define (maybe-break chr result)
1364 (match result
1365 ((column newlines chars)
1366 (case chr
1367 ((#\newline)
1368 `(,column ,(+ 1 newlines) ,chars))
1369 (else
3a09e1d2
CS
1370 (let* ((spaces (if (and (pair? chars) (eqv? (car chars) #\.)) 2 1))
1371 (chars (case newlines
1372 ((0) chars)
1373 ((1)
1374 (append (make-list spaces #\space) chars))
1375 (else
1376 (append (make-list newlines #\newline) chars))))
1377 (column (case newlines
1378 ((0) column)
1379 ((1) (+ spaces column))
1380 (else 0))))
299112d3
LC
1381 (let ((chars (cons chr chars))
1382 (column (+ 1 column)))
1383 (if (> column width)
1384 (let*-values (((before after)
1385 (break (cut eqv? #\space <>) chars))
1386 ((len)
1387 (length before)))
1388 (if (<= len width)
1389 `(,len
1390 0
1391 ,(if (null? after)
1392 before
3a09e1d2
CS
1393 (append before
1394 (cons #\newline
1395 (drop-while (cut eqv? #\space <>)
1396 after)))))
299112d3
LC
1397 `(,column 0 ,chars))) ; unbreakable
1398 `(,column 0 ,chars)))))))))
1399
1400 (match (string-fold maybe-break
1401 `(,column 0 ())
1402 str)
30906825 1403 ((column newlines chars)
299112d3
LC
1404 (list->string (reverse chars)))))
1405
2876b989
LC
1406\f
1407;;;
1408;;; Packages.
1409;;;
1410
1cd4027c 1411(define %text-width
3c1ea8dc
LC
1412 ;; '*line-width*' was introduced in Guile 2.2.7/3.0.1. On older versions of
1413 ;; Guile, monkey-patch 'wrap*' below.
1414 (if (defined? '*line-width*)
1415 (let ((parameter (fluid->parameter *line-width*)))
1416 (parameter (terminal-columns))
1417 parameter)
1418 (make-parameter (terminal-columns))))
1419
1420(unless (defined? '*line-width*) ;Guile < 2.2.7
1421 (set! (@@ (texinfo plain-text) wrap*)
1422 ;; XXX: Monkey patch this private procedure to let 'package->recutils'
1423 ;; parameterize the fill of description field correctly.
1424 (lambda strings
1425 (let ((indent (fluid-ref (@@ (texinfo plain-text) *indent*))))
1426 (fill-string (string-concatenate strings)
1427 #:line-width (%text-width) #:initial-indent indent
1428 #:subsequent-indent indent)))))
1cd4027c
ML
1429
1430(define (texi->plain-text str)
1431 "Return a plain-text representation of texinfo fragment STR."
08d7e359
LC
1432 ;; 'texi-fragment->stexi' uses a string port so make sure it's a
1433 ;; Unicode-capable one (see <http://bugs.gnu.org/11197>.)
1434 (with-fluids ((%default-port-encoding "UTF-8"))
1435 (stexi->plain-text (texi-fragment->stexi str))))
1cd4027c 1436
689db38e
AK
1437(define (package-field-string package field-accessor)
1438 "Return a plain-text representation of PACKAGE field."
1439 (and=> (field-accessor package)
1440 (compose texi->plain-text P_)))
1441
1cd4027c
ML
1442(define (package-description-string package)
1443 "Return a plain-text representation of PACKAGE description field."
689db38e
AK
1444 (package-field-string package package-description))
1445
1446(define (package-synopsis-string package)
1447 "Return a plain-text representation of PACKAGE synopsis field."
1448 (package-field-string package package-synopsis))
1cd4027c 1449
299112d3
LC
1450(define (string->recutils str)
1451 "Return a version of STR where newlines have been replaced by newlines
1452followed by \"+ \", which makes for a valid multi-line field value in the
1453`recutils' syntax."
1454 (list->string
1455 (string-fold-right (lambda (chr result)
1456 (if (eqv? chr #\newline)
1457 (cons* chr #\+ #\space result)
1458 (cons chr result)))
1459 '()
1460 str)))
1461
7f0f38b5
LC
1462(define (hyperlink uri text)
1463 "Return a string that denotes a hyperlink using an OSC escape sequence as
1464documented at
1465<https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda>."
1466 (string-append "\x1b]8;;" uri "\x1b\\"
1467 text "\x1b]8;;\x1b\\"))
1468
055f0525 1469(define* (supports-hyperlinks? #:optional (port (current-output-port)))
7f0f38b5
LC
1470 "Return true if PORT is a terminal that supports hyperlink escapes."
1471 ;; Note that terminals are supposed to ignore OSC escapes they don't
1472 ;; understand (this is the case of xterm as of version 349, for instance.)
1473 ;; However, Emacs comint as of 26.3 does not ignore it and instead lets it
1474 ;; through, hence the 'INSIDE_EMACS' special case below.
1475 (and (isatty?* port)
1476 (not (getenv "INSIDE_EMACS"))))
1477
fa983b82
LC
1478(define* (file-hyperlink file #:optional (text file))
1479 "Return TEXT with escapes for a hyperlink to FILE."
1480 (hyperlink (string-append "file://" (gethostname)
1481 (encode-and-join-uri-path
1482 (string-split file #\/)))
1483 text))
1484
7f0f38b5
LC
1485(define (location->hyperlink location)
1486 "Return a string corresponding to LOCATION, with escapes for a hyperlink."
1487 (let ((str (location->string location))
1488 (file (if (string-prefix? "/" (location-file location))
1489 (location-file location)
1490 (search-path %load-path (location-file location)))))
1491 (if file
fa983b82 1492 (file-hyperlink file str)
7f0f38b5
LC
1493 str)))
1494
4ee79f22 1495(define* (package->recutils p port #:optional (width (%text-width))
7f0f38b5
LC
1496 #:key
1497 (hyperlinks? (supports-hyperlinks? port))
1498 (extra-fields '()))
299112d3 1499 "Write to PORT a `recutils' record of package P, arranging to fit within
7f0f38b5
LC
1500WIDTH columns. EXTRA-FIELDS is a list of symbol/value pairs to emit. When
1501HYPERLINKS? is true, emit hyperlink escape sequences when appropriate."
069d43a7
LC
1502 (define width*
1503 ;; The available number of columns once we've taken into account space for
1504 ;; the initial "+ " prefix.
1505 (if (> width 2) (- width 2) width))
1506
20ffce82 1507 (define (dependencies->recutils packages)
dbde386e
SB
1508 (let ((list (string-join (delete-duplicates
1509 (map package-full-name
1510 (sort packages package<?))) " ")))
20ffce82 1511 (string->recutils
069d43a7 1512 (fill-paragraph list width*
20ffce82
LC
1513 (string-length "dependencies: ")))))
1514
9c0fc279
CR
1515 (define (package<? p1 p2)
1516 (string<? (package-full-name p1) (package-full-name p2)))
1517
299112d3
LC
1518 ;; Note: Don't i18n field names so that people can post-process it.
1519 (format port "name: ~a~%" (package-name p))
1520 (format port "version: ~a~%" (package-version p))
6bf99bac 1521 (format port "outputs: ~a~%" (string-join (package-outputs p)))
5763ad92
LC
1522 (format port "systems: ~a~%"
1523 (string-join (package-transitive-supported-systems p)))
9c0fc279
CR
1524 (format port "dependencies: ~a~%"
1525 (match (package-direct-inputs p)
5e6feee6
EB
1526 (((labels inputs . _) ...)
1527 (dependencies->recutils (filter package? inputs)))))
299112d3 1528 (format port "location: ~a~%"
7f0f38b5
LC
1529 (or (and=> (package-location p)
1530 (if hyperlinks? location->hyperlink location->string))
69daee23 1531 (G_ "unknown")))
8fa3e6b3
LC
1532
1533 ;; Note: Starting from version 1.6 or recutils, hyphens are not allowed in
1534 ;; field identifiers.
1535 (format port "homepage: ~a~%" (package-home-page p))
1536
299112d3
LC
1537 (format port "license: ~a~%"
1538 (match (package-license p)
1539 (((? license? licenses) ...)
1540 (string-join (map license-name licenses)
1541 ", "))
1542 ((? license? license)
edd25a8c
LC
1543 (let ((text (license-name license))
1544 (uri (license-uri license)))
1545 (if (and hyperlinks? uri (string-prefix? "http" uri))
1546 (hyperlink uri text)
1547 text)))
299112d3 1548 (x
69daee23 1549 (G_ "unknown"))))
299112d3
LC
1550 (format port "synopsis: ~a~%"
1551 (string-map (match-lambda
4ee79f22
LC
1552 (#\newline #\space)
1553 (chr chr))
a1da0904 1554 (or (package-synopsis-string p) "")))
4ee79f22 1555 (format port "~a~%"
1cd4027c
ML
1556 (string->recutils
1557 (string-trim-right
069d43a7 1558 (parameterize ((%text-width width*))
31522dfa
LC
1559 ;; Call 'texi->plain-text' on the concatenated string to account
1560 ;; for the width of "description:" in paragraph filling.
1561 (texi->plain-text
1562 (string-append "description: "
1563 (or (and=> (package-description p) P_)
1564 ""))))
4ee79f22
LC
1565 #\newline)))
1566 (for-each (match-lambda
1567 ((field . value)
1568 (let ((field (symbol->string field)))
1569 (format port "~a: ~a~%"
1570 field
1571 (fill-paragraph (object->string value) width*
1572 (string-length field))))))
1573 extra-fields)
1574 (newline port))
299112d3 1575
4311cf96
LC
1576\f
1577;;;
1578;;; Searching.
1579;;;
1580
c7ae219e
LC
1581(define (relevance obj regexps metrics)
1582 "Compute a \"relevance score\" for OBJ as a function of its number of
1583matches of REGEXPS and accordingly to METRICS. METRICS is list of
387e6b9e
CM
1584field/weight pairs, where FIELD is a procedure that returns a string or list
1585of strings describing OBJ, and WEIGHT is a positive integer denoting the
1586weight of this field in the final score.
c7ae219e
LC
1587
1588A score of zero means that OBJ does not match any of REGEXPS. The higher the
1589score, the more relevant OBJ is to REGEXPS."
d2cdef65 1590 (define (score regexp str)
1591 (fold-matches regexp str 0
1592 (lambda (m score)
1593 (+ score
1594 (if (string=? (match:substring m) str)
1595 5 ;exact match
1596 1)))))
1597
1598 (define (regexp->score regexp)
1599 (let ((score-regexp (lambda (str) (score regexp str))))
1600 (fold (lambda (metric relevance)
1601 (match metric
1602 ((field . weight)
1603 (match (field obj)
1604 (#f relevance)
1605 ((? string? str)
1606 (+ relevance (* (score-regexp str) weight)))
1607 ((lst ...)
1608 (+ relevance (* weight (apply + (map score-regexp lst)))))))))
1609 0 metrics)))
1610
e70a8847
AI
1611 (let loop ((regexps regexps)
1612 (total-score 0))
1613 (match regexps
1614 ((head . tail)
1615 (let ((score (regexp->score head)))
1616 ;; Return zero if one of PATTERNS doesn't match.
1617 (if (zero? score)
1618 0
1619 (loop tail (+ total-score score)))))
1620 (() total-score))))
c7ae219e
LC
1621
1622(define %package-metrics
1623 ;; Metrics used to compute the "relevance score" of a package against a set
1624 ;; of regexps.
304a53f6 1625 `((,package-name . 4)
94aeec0a 1626
387e6b9e
CM
1627 ;; Match against uncommon outputs.
1628 (,(lambda (package)
1629 (filter (lambda (output)
1630 (not (member output
694e10af 1631 ;; Some common outputs shared by many packages.
387e6b9e
CM
1632 '("out" "doc" "debug" "lib" "include" "bin"))))
1633 (package-outputs package)))
1634 . 1)
1635
94aeec0a
LC
1636 ;; Match regexps on the raw Texinfo since formatting it is quite expensive
1637 ;; and doesn't have much of an effect on search results.
1638 (,(lambda (package)
1639 (and=> (package-synopsis package) P_)) . 3)
1640 (,(lambda (package)
1641 (and=> (package-description package) P_)) . 2)
1642
304a53f6
LC
1643 (,(lambda (type)
1644 (match (and=> (package-location type) location-file)
1645 ((? string? file) (basename file ".scm"))
1646 (#f "")))
1647 . 1)))
c7ae219e
LC
1648
1649(define (package-relevance package regexps)
1650 "Return a score denoting the relevance of PACKAGE for REGEXPS. A score of
1651zero means that PACKAGE does not match any of REGEXPS."
1652 (relevance package regexps %package-metrics))
1653
9296a2e5
LC
1654(define* (call-with-paginated-output-port proc
1655 #:key (less-options "FrX"))
c39693d7
LC
1656 (if (isatty?* (current-output-port))
1657 ;; Set 'LESS' so that 'less' exits if everything fits on the screen (F),
1658 ;; lets ANSI escapes through (r), does not send the termcap
e66f243e
LC
1659 ;; initialization string (X). Set it unconditionally because some
1660 ;; distros set it to something that doesn't work here.
9296a2e5
LC
1661 ;;
1662 ;; For things that produce long lines, such as 'guix processes', use 'R'
1663 ;; instead of 'r': this strips hyperlinks but allows 'less' to make a
1664 ;; good estimate of the line length.
1665 (let ((pager (with-environment-variables `(("LESS" ,less-options))
c39693d7
LC
1666 (open-pipe* OPEN_WRITE
1667 (or (getenv "GUIX_PAGER") (getenv "PAGER")
1668 "less")))))
1669 (dynamic-wind
1670 (const #t)
1671 (lambda () (proc pager))
1672 (lambda () (close-pipe pager))))
1673 (proc (current-output-port))))
1674
9296a2e5
LC
1675(define-syntax with-paginated-output-port
1676 (syntax-rules ()
1677 "Evaluate EXP... with PORT bound to a port that talks to the pager if
c39693d7 1678standard output is a tty, or with PORT set to the current output port."
9296a2e5
LC
1679 ((_ port exp ... #:less-options opts)
1680 (call-with-paginated-output-port (lambda (port) exp ...)
1681 #:less-options opts))
1682 ((_ port exp ...)
1683 (call-with-paginated-output-port (lambda (port) exp ...)))))
c39693d7 1684
4311cf96
LC
1685(define* (display-search-results matches port
1686 #:key
1687 (command "guix search")
1688 (print package->recutils))
1689 "Display MATCHES, a list of object/score pairs, by calling PRINT on each of
1690them. If PORT is a terminal, print at most a full screen of results."
1691 (define first-line
1692 (port-line port))
1693
1694 (define max-rows
1695 (and first-line (isatty? port)
1696 (terminal-rows port)))
1697
1698 (define (line-count str)
1699 (string-count str #\newline))
1700
c39693d7
LC
1701 (with-paginated-output-port paginated
1702 (let loop ((matches matches))
1703 (match matches
1704 (((package . score) rest ...)
1705 (let* ((links? (supports-hyperlinks? port)))
1706 (print package paginated
1707 #:hyperlinks? links?
1708 #:extra-fields `((relevance . ,score)))
1709 (loop rest)))
1710 (()
1711 #t)))))
4311cf96
LC
1712
1713\f
2cd09108
NK
1714(define (string->generations str)
1715 "Return the list of generations matching a pattern in STR. This function
1716accepts the following patterns: \"1\", \"1,2,3\", \"1..9\", \"1..\", \"..9\"."
1717 (define (maybe-integer)
1718 (let ((x (string->number str)))
1719 (and (integer? x)
1720 x)))
1721
1722 (define (maybe-comma-separated-integers)
1723 (let ((lst (delete-duplicates
1724 (map string->number
1725 (string-split str #\,)))))
1726 (and (every integer? lst)
1727 lst)))
1728
1729 (cond ((maybe-integer)
1730 =>
1731 list)
1732 ((maybe-comma-separated-integers)
1733 =>
1734 identity)
1735 ((string-match "^([0-9]+)\\.\\.([0-9]+)$" str)
1736 =>
1737 (lambda (match)
1738 (let ((s (string->number (match:substring match 1)))
1739 (e (string->number (match:substring match 2))))
1740 (and (every integer? (list s e))
1741 (<= s e)
1742 (iota (1+ (- e s)) s)))))
1743 ((string-match "^([0-9]+)\\.\\.$" str)
1744 =>
1745 (lambda (match)
1746 (let ((s (string->number (match:substring match 1))))
1747 (and (integer? s)
1748 `(>= ,s)))))
1749 ((string-match "^\\.\\.([0-9]+)$" str)
1750 =>
1751 (lambda (match)
1752 (let ((e (string->number (match:substring match 1))))
1753 (and (integer? e)
1754 `(<= ,e)))))
1755 (else #f)))
1756
1757(define (string->duration str)
1758 "Return the duration matching a pattern in STR. This function accepts the
1759following patterns: \"1d\", \"1w\", \"1m\"."
1760 (define (hours->duration hours match)
1761 (make-time time-duration 0
1762 (* 3600 hours (string->number (match:substring match 1)))))
1763
638c5b79
LC
1764 (cond ((string-match "^([0-9]+)s$" str)
1765 =>
1766 (lambda (match)
1767 (make-time time-duration 0
1768 (string->number (match:substring match 1)))))
1769 ((string-match "^([0-9]+)h$" str)
30d2397f 1770 =>
638c5b79
LC
1771 (lambda (match)
1772 (hours->duration 1 match)))
1773 ((string-match "^([0-9]+)d$" str)
2cd09108
NK
1774 =>
1775 (lambda (match)
1776 (hours->duration 24 match)))
1777 ((string-match "^([0-9]+)w$" str)
1778 =>
1779 (lambda (match)
1780 (hours->duration (* 24 7) match)))
1781 ((string-match "^([0-9]+)m$" str)
1782 =>
1783 (lambda (match)
1784 (hours->duration (* 24 30) match)))
1785 (else #f)))
1786
e49de93a
LC
1787(define* (matching-generations str profile
1788 #:key (duration-relation <=))
1789 "Return the list of available generations matching a pattern in STR. See
1790'string->generations' and 'string->duration' for the list of valid patterns.
1791When STR is a duration pattern, return all the generations whose ctime has
1792DURATION-RELATION with the current time."
1793 (define (valid-generations lst)
1794 (define (valid-generation? n)
1795 (any (cut = n <>) (generation-numbers profile)))
1796
1797 (fold-right (lambda (x acc)
1798 (if (valid-generation? x)
1799 (cons x acc)
1800 acc))
1801 '()
1802 lst))
1803
1804 (define (filter-generations generations)
1805 (match generations
1806 (() '())
1807 (('>= n)
1808 (drop-while (cut > n <>)
1809 (generation-numbers profile)))
1810 (('<= n)
1811 (valid-generations (iota n 1)))
1812 ((lst ..1)
1813 (valid-generations lst))
30906825 1814 (x #f)))
e49de93a
LC
1815
1816 (define (filter-by-duration duration)
1817 (define (time-at-midnight time)
1818 ;; Return TIME at midnight by setting nanoseconds, seconds, minutes, and
1819 ;; hours to zeros.
1820 (let ((d (time-utc->date time)))
1821 (date->time-utc
1822 (make-date 0 0 0 0
1823 (date-day d) (date-month d)
1824 (date-year d) (date-zone-offset d)))))
1825
1826 (define generation-ctime-alist
1827 (map (lambda (number)
1828 (cons number
1829 (time-second
1830 (time-at-midnight
1831 (generation-time profile number)))))
1832 (generation-numbers profile)))
1833
1834 (match duration
1835 (#f #f)
1836 (res
1837 (let ((s (time-second
1838 (subtract-duration (time-at-midnight (current-time))
1839 duration))))
1840 (delete #f (map (lambda (x)
1841 (and (duration-relation s (cdr x))
1842 (first x)))
1843 generation-ctime-alist))))))
1844
1845 (cond ((string->generations str)
1846 =>
1847 filter-generations)
1848 ((string->duration str)
1849 =>
1850 filter-by-duration)
5c3d4430
LC
1851 (else
1852 (raise
d51bfe24 1853 (formatted-message (G_ "invalid syntax: ~a~%") str)))))
e49de93a 1854
ad18c7e6
LC
1855(define (display-generation profile number)
1856 "Display a one-line summary of generation NUMBER of PROFILE."
1857 (unless (zero? number)
055f0525
LC
1858 (let* ((file (generation-file-name profile number))
1859 (link (if (supports-hyperlinks?)
1860 (cut file-hyperlink file <>)
c2f9ea2b 1861 identity))
055f0525
LC
1862 (header (format #f (link (highlight (G_ "Generation ~a\t~a")))
1863 number
1864 (date->string
1865 (time-utc->date
1866 (generation-time profile number))
1867 ;; TRANSLATORS: This is a format-string for date->string.
1868 ;; Please choose a format that corresponds to the
1869 ;; usual way of presenting dates in your locale.
1870 ;; See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d19-Date-to-string.html
1871 ;; for details.
1872 (G_ "~b ~d ~Y ~T"))))
1873 (current (generation-number profile)))
ad18c7e6 1874 (if (= number current)
3bd9672c
LC
1875 ;; TRANSLATORS: The word "current" here is an adjective for
1876 ;; "Generation", as in "current generation". Use the appropriate
1877 ;; gender where applicable.
69daee23 1878 (format #t (G_ "~a\t(current)~%") header)
ad18c7e6
LC
1879 (format #t "~a~%" header)))))
1880
e95ae7c2 1881(define (display-profile-content-diff profile gen1 gen2)
dc013aff 1882 "Display the changed packages in PROFILE GEN2 compared to generation GEN1."
e95ae7c2
RJ
1883
1884 (define (equal-entry? first second)
1885 (string= (manifest-entry-item first) (manifest-entry-item second)))
1886
1887 (define (display-entry entry prefix)
1888 (match entry
1889 (($ <manifest-entry> name version output location _)
1890 (format #t " ~a ~a\t~a\t~a\t~a~%" prefix name version output location))))
1891
1892 (define (list-entries number)
1893 (manifest-entries (profile-manifest (generation-file-name profile number))))
1894
1895 (define (display-diff profile old new)
1896 (display-generation profile new)
1897 (let ((added (lset-difference
1898 equal-entry? (list-entries new) (list-entries old)))
1899 (removed (lset-difference
1900 equal-entry? (list-entries old) (list-entries new))))
1901 (for-each (cut display-entry <> "+") added)
88bdbb2a
RJ
1902 (for-each (cut display-entry <> "-") removed)
1903 (newline)))
e95ae7c2
RJ
1904
1905 (display-diff profile gen1 gen2))
1906
55e1dfa4
LC
1907(define (profile-lock-handler profile errno . _)
1908 "Handle failure to acquire PROFILE's lock."
3f8e890d
LC
1909 ;; NFS mounts can return ENOLCK. When that happens, there's not much that
1910 ;; can be done, so warn the user and keep going.
1911 (if (= errno ENOLCK)
1912 (warning (G_ "cannot lock profile ~a: ~a~%")
1913 profile (strerror errno))
1914 (leave (G_ "profile ~a is locked by another process~%")
1915 profile)))
55e1dfa4
LC
1916
1917(define profile-lock-file
1918 (cut string-append <> ".lock"))
1919
1920(define-syntax-rule (with-profile-lock profile exp ...)
1921 "Grab PROFILE's lock and evaluate EXP... Call 'leave' if the lock is
1922already taken."
1923 (with-file-lock/no-wait (profile-lock-file profile)
1924 (cut profile-lock-handler profile <...>)
1925 exp ...))
1926
ad18c7e6
LC
1927(define (display-profile-content profile number)
1928 "Display the packages in PROFILE, generation NUMBER, in a human-readable
1929way."
1930 (for-each (match-lambda
1931 (($ <manifest-entry> name version output location _)
1932 (format #t " ~a\t~a\t~a\t~a~%"
1933 name version output location)))
1934
1935 ;; Show most recently installed packages last.
1936 (reverse
1937 (manifest-entries
1938 (profile-manifest (generation-file-name profile number))))))
1939
06d45f45 1940(define (display-generation-change previous current)
69daee23 1941 (format #t (G_ "switched from generation ~a to ~a~%") previous current))
06d45f45
LC
1942
1943(define (roll-back* store profile)
1944 "Like 'roll-back', but display what is happening."
1945 (call-with-values
1946 (lambda ()
1947 (roll-back store profile))
1948 display-generation-change))
1949
1950(define (switch-to-generation* profile number)
1951 "Like 'switch-generation', but display what is happening."
1952 (let ((previous (switch-to-generation profile number)))
1953 (display-generation-change previous number)))
1954
1955(define (delete-generation* store profile generation)
1956 "Like 'delete-generation', but display what is going on."
69daee23 1957 (format #t (G_ "deleting ~a~%")
06d45f45
LC
1958 (generation-file-name profile generation))
1959 (delete-generation store profile generation))
1960
2876b989
LC
1961(define* (package-specification->name+version+output spec
1962 #:optional (output "out"))
1963 "Parse package specification SPEC and return three value: the specified
1964package name, version number (or #f), and output name (or OUTPUT). SPEC may
1965optionally contain a version number and an output name, as in these examples:
1966
1967 guile
1b846da8 1968 guile@2.0.9
2876b989 1969 guile:debug
1b846da8 1970 guile@2.0.9:debug
2876b989
LC
1971"
1972 (let*-values (((name sub-drv)
1973 (match (string-rindex spec #\:)
1974 (#f (values spec output))
1975 (colon (values (substring spec 0 colon)
1976 (substring spec (+ 1 colon))))))
1977 ((name version)
1978 (package-name->name+version name)))
1979 (values name version sub-drv)))
1980
1981\f
1982;;;
1983;;; Command-line option processing.
1984;;;
1985
e49951eb 1986(define (show-guix-usage)
e49951eb 1987 (format (current-error-port)
69daee23 1988 (G_ "Try `guix --help' for more information.~%"))
25c93676 1989 (exit 1))
e49951eb 1990
e31ff8b8
LC
1991(define (command-files)
1992 "Return the list of source files that define Guix sub-commands."
1993 (define directory
1994 (and=> (search-path %load-path "guix.scm")
1995 (compose (cut string-append <> "/guix/scripts")
1996 dirname)))
1997
2b8cf44f
LC
1998 (define dot-scm?
1999 (cut string-suffix? ".scm" <>))
2000
e31ff8b8 2001 (if directory
09d809db 2002 (scandir directory dot-scm?)
e31ff8b8
LC
2003 '()))
2004
2005(define (commands)
2006 "Return the list of Guix command names."
2007 (map (compose (cut string-drop-right <> 4)
2008 basename)
2009 (command-files)))
2010
2011(define (show-guix-help)
59f734f3 2012 (define (internal? command)
94d92c77
LC
2013 (member command '("substitute" "authenticate" "offload"
2014 "perform-download")))
59f734f3 2015
69daee23 2016 (format #t (G_ "Usage: guix COMMAND ARGS...
e31ff8b8
LC
2017Run COMMAND with ARGS.\n"))
2018 (newline)
69daee23 2019 (format #t (G_ "COMMAND must be one of the sub-commands listed below:\n"))
e31ff8b8
LC
2020 (newline)
2021 ;; TODO: Display a synopsis of each command.
59f734f3
LC
2022 (format #t "~{ ~a~%~}" (sort (remove internal? (commands))
2023 string<?))
e31ff8b8
LC
2024 (show-bug-report-information))
2025
ec5d0a85
LC
2026(define (run-guix-command command . args)
2027 "Run COMMAND with the given ARGS. Report an error when COMMAND is not
2028found."
2029 (define module
2030 (catch 'misc-error
2031 (lambda ()
2032 (resolve-interface `(guix scripts ,command)))
2033 (lambda -
25c93676 2034 (format (current-error-port)
69daee23 2035 (G_ "guix: ~a: command not found~%") command)
25c93676 2036 (show-guix-usage))))
ec5d0a85
LC
2037
2038 (let ((command-main (module-ref module
2039 (symbol-append 'guix- command))))
2040 (parameterize ((program-name command))
14d5ca2e
LC
2041 ;; Disable canonicalization so we don't don't stat unreasonably.
2042 (with-fluids ((%file-port-name-canonicalization #f))
f4453df9
LC
2043 (dynamic-wind
2044 (const #f)
2045 (lambda ()
2046 (apply command-main args))
2047 (lambda ()
2048 ;; Abuse 'exit-hook' (which is normally meant to be used by the
2049 ;; REPL) to run things like profiling hooks upon completion.
2050 (run-hook exit-hook)))))))
ec5d0a85 2051
caa6732e
AK
2052(define (run-guix . args)
2053 "Run the 'guix' command defined by command line ARGS.
2054Unlike 'guix-main', this procedure assumes that locale, i18n support,
694e10af 2055and signal handling have already been set up."
caa6732e
AK
2056 (define option? (cut string-prefix? "-" <>))
2057
cbee9559
LC
2058 ;; The default %LOAD-EXTENSIONS includes the empty string, which doubles the
2059 ;; number of 'stat' calls per entry in %LOAD-PATH. Shamelessly remove it.
2060 (set! %load-extensions '(".scm"))
2061
caa6732e
AK
2062 (match args
2063 (()
2064 (format (current-error-port)
69daee23 2065 (G_ "guix: missing command name~%"))
caa6732e
AK
2066 (show-guix-usage))
2067 ((or ("-h") ("--help"))
2068 (show-guix-help))
85c3fbf5 2069 ((or ("-V") ("--version"))
caa6732e
AK
2070 (show-version-and-exit "guix"))
2071 (((? option? o) args ...)
2072 (format (current-error-port)
69daee23 2073 (G_ "guix: unrecognized option '~a'~%") o)
caa6732e 2074 (show-guix-usage))
2ab5fdc4
LC
2075 (("help" command)
2076 (apply run-guix-command (string->symbol command)
2077 '("--help")))
caa6732e
AK
2078 (("help" args ...)
2079 (show-guix-help))
2080 ((command args ...)
2081 (apply run-guix-command
2082 (string->symbol command)
2083 args))))
2084
e49951eb
MW
2085(define (guix-main arg0 . args)
2086 (initialize-guix)
caa6732e 2087 (apply run-guix args))
e49951eb 2088
a168c3e4
LC
2089;;; Local Variables:
2090;;; eval: (put 'guard* 'scheme-indent-function 2)
2091;;; End:
2092
073c34d7 2093;;; ui.scm ends here