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