[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63571] [PATCH 04/14] import: utils: 'call-with-networking-exception
From: |
Ludovic Courtès |
Subject: |
[bug#63571] [PATCH 04/14] import: utils: 'call-with-networking-exception-handler' doesn't unwind. |
Date: |
Thu, 18 May 2023 17:16:12 +0200 |
That way backtraces show where the error actually originates from.
* guix/import/utils.scm (call-with-networking-exception-handler):
Rewrite using 'with-exception-handler'.
---
guix/import/utils.scm | 33 +++++++++++++++++++++------------
1 file changed, 21 insertions(+), 12 deletions(-)
diff --git a/guix/import/utils.scm b/guix/import/utils.scm
index 177817b10c..e9a0a7ecd7 100644
--- a/guix/import/utils.scm
+++ b/guix/import/utils.scm
@@ -45,6 +45,7 @@ (define-module (guix import utils)
#:use-module (guix sets)
#:use-module ((guix ui) #:select (fill-paragraph))
#:use-module (gnu packages)
+ #:autoload (ice-9 control) (let/ec)
#:use-module (ice-9 match)
#:use-module (ice-9 rdelim)
#:use-module (ice-9 receive)
@@ -126,18 +127,26 @@ (define (flatten lst)
(define (call-with-networking-exception-handler thunk)
"Invoke THUNK, returning #f if one of the usual networking exception is
thrown."
- (catch #t
- (lambda ()
- (guard (c ((http-get-error? c) #f))
- (thunk)))
- (lambda (key . args)
- ;; Return false and move on upon connection failures and bogus HTTP
- ;; servers.
- (unless (memq key '(gnutls-error tls-certificate-error
- system-error getaddrinfo-error
- bad-header bad-header-component))
- (apply throw key args))
- #f)))
+ (let/ec return
+ (with-exception-handler
+ (lambda (exception)
+ (cond ((http-get-error? exception)
+ (return #f))
+ (((exception-predicate &exception-with-kind-and-args)
exception)
+ ;; Return false and move on upon connection failures and bogus
+ ;; HTTP servers.
+ (if (memq (exception-kind exception)
+ '(gnutls-error tls-certificate-error
+ system-error getaddrinfo-error
+ bad-header bad-header-component))
+ (return #f)
+ (raise-exception exception)))
+ (else
+ (raise-exception exception))))
+ thunk
+
+ ;; Do not unwind to preserve meaningful backtraces.
+ #:unwind? #f)))
(define-syntax-rule (false-if-networking-error exp)
"Evaluate EXP, returning #f if a networking-related exception is thrown."
--
2.40.1
- [bug#63571] [PATCH 00/14] 'guix refresh -u' updates input fields, Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 04/14] import: utils: 'call-with-networking-exception-handler' doesn't unwind.,
Ludovic Courtès <=
- [bug#63571] [PATCH 05/14] import: json: Add #:timeout to 'json-fetch'., Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 08/14] upstream: 'update-package-source' edits input fields., Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 10/14] tests: upstream: Restore test that was skipped., Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 03/14] tests: pypi: Rewrite tests using a local HTTP server., Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 09/14] upstream: Remove <upstream-input-change> and related code., Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 07/14] diagnostics: Factorize 'absolute-location'., Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 02/14] tests: http: Allow responses to specify a path., Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 01/14] tests: pypi: Factorize tarball and wheel file creation., Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 13/14] import: cpan: Updater provides input list., Ludovic Courtès, 2023/05/18
- [bug#63571] [PATCH 11/14] import: cpan: Remove unary 'string-append' call., Ludovic Courtès, 2023/05/18