Skip to content
Snippets Groups Projects
Unverified Commit 6616a352 authored by Timothy Sample's avatar Timothy Sample Committed by Ludovic Courtès
Browse files

ui: Report file names in 'system-error' exceptions from 'execlp'.

Fixes <https://bugs.gnu.org/33755

>.

* guix/ui.scm (apply-formals): New macro.
(execlp): New error-reporting wrapper.

Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
parent 83d4da12
No related branches found
No related tags found
No related merge requests found
......@@ -502,14 +502,19 @@ (define (augmented-system-error-handler file)
(list (strerror (car errno)) file)
(list errno))))
(define-syntax-rule (error-reporting-wrapper proc (args ...) file)
(define-syntax apply-formals
(syntax-rules ()
((_ proc (args ...)) (proc args ...))
((_ proc (arg1 args ... . rest)) (apply proc arg1 args ... rest))))
(define-syntax-rule (error-reporting-wrapper proc formals file)
"Wrap PROC such that its 'system-error' exceptions are augmented to mention
FILE."
(let ((real-proc (@ (guile) proc)))
(lambda (args ...)
(lambda formals
(catch 'system-error
(lambda ()
(real-proc args ...))
(apply-formals real-proc formals))
(augmented-system-error-handler file)))))
(set! symlink
......@@ -528,6 +533,8 @@ (define-syntax-rule (error-reporting-wrapper proc (args ...) file)
(set! delete-file
(error-reporting-wrapper delete-file (file) file))
(set! execlp
(error-reporting-wrapper execlp (filename . args) filename))
(define (make-regexp* regexp . flags)
"Like 'make-regexp' but error out if REGEXP is invalid, reporting the error
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment