[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38518] [PATCH 5/7] progress: Add 'progress-report-port'.
From: |
Ludovic Courtès |
Subject: |
[bug#38518] [PATCH 5/7] progress: Add 'progress-report-port'. |
Date: |
Sun, 8 Dec 2019 12:26:35 +0100 |
* guix/scripts/substitute.scm (progress-report-port): Move to...
* guix/progress.scm (progress-report-port): ... here. New procedure.
---
guix/progress.scm | 31 +++++++++++++++++++++++++++++++
guix/scripts/substitute.scm | 29 -----------------------------
2 files changed, 31 insertions(+), 29 deletions(-)
diff --git a/guix/progress.scm b/guix/progress.scm
index 349637dbcf..c7567a35fd 100644
--- a/guix/progress.scm
+++ b/guix/progress.scm
@@ -40,6 +40,7 @@
progress-reporter/file
progress-reporter/bar
progress-reporter/trace
+ progress-report-port
display-download-progress
erase-current-line
@@ -342,3 +343,33 @@ should be a <progress-reporter> object."
(put-bytevector out buffer 0 bytes)
(report total)
(loop total (get-bytevector-n! in buffer 0 buffer-size))))))))
+
+(define (progress-report-port reporter port)
+ "Return a port that continuously reports the bytes read from PORT using
+REPORTER, which should be a <progress-reporter> object."
+ (match reporter
+ (($ <progress-reporter> start report stop)
+ (let* ((total 0)
+ (read! (lambda (bv start count)
+ (let ((n (match (get-bytevector-n! port bv start count)
+ ((? eof-object?) 0)
+ (x x))))
+ (set! total (+ total n))
+ (report total)
+ n))))
+ (start)
+ (make-custom-binary-input-port "progress-port-proc"
+ read! #f #f
+ (lambda ()
+ ;; XXX: Kludge! When used through
+ ;; 'decompressed-port', this port ends
+ ;; up being closed twice: once in a
+ ;; child process early on, and at the
+ ;; end in the parent process. Ignore
+ ;; the early close so we don't output
+ ;; a spurious "download-succeeded"
+ ;; trace.
+ (unless (zero? total)
+ (stop))
+ (close-port port)))))))
+
diff --git a/guix/scripts/substitute.scm b/guix/scripts/substitute.scm
index 4802fbd1fe..7eca2c6874 100755
--- a/guix/scripts/substitute.scm
+++ b/guix/scripts/substitute.scm
@@ -823,35 +823,6 @@ was found."
(= (string-length file) 32)))))
(narinfo-cache-directories directory)))
-(define (progress-report-port reporter port)
- "Return a port that continuously reports the bytes read from PORT using
-REPORTER, which should be a <progress-reporter> object."
- (match reporter
- (($ <progress-reporter> start report stop)
- (let* ((total 0)
- (read! (lambda (bv start count)
- (let ((n (match (get-bytevector-n! port bv start count)
- ((? eof-object?) 0)
- (x x))))
- (set! total (+ total n))
- (report total)
- n))))
- (start)
- (make-custom-binary-input-port "progress-port-proc"
- read! #f #f
- (lambda ()
- ;; XXX: Kludge! When used through
- ;; 'decompressed-port', this port ends
- ;; up being closed twice: once in a
- ;; child process early on, and at the
- ;; end in the parent process. Ignore
- ;; the early close so we don't output
- ;; a spurious "download-succeeded"
- ;; trace.
- (unless (zero? total)
- (stop))
- (close-port port)))))))
-
(define-syntax with-networking
(syntax-rules ()
"Catch DNS lookup errors and TLS errors and gracefully exit."
--
2.24.0
- [bug#38518] [PATCH 0/7] 'guix challenge' can diff archives directly, Ludovic Courtès, 2019/12/07
- [bug#38518] [PATCH 0/7] 'guix challenge' can diff archives directly, zimoun, 2019/12/08
- [bug#38518] [PATCH 1/7] serialization: Add 'fold-archive'., Ludovic Courtès, 2019/12/08
- [bug#38518] [PATCH 2/7] guix archive: Add '--list'., Ludovic Courtès, 2019/12/08
- [bug#38518] [PATCH 3/7] challenge: Report the best narinfo URI., Ludovic Courtès, 2019/12/08
- [bug#38518] [PATCH 4/7] serialization: Remove unused procedure., Ludovic Courtès, 2019/12/08
- [bug#38518] [PATCH 5/7] progress: Add 'progress-report-port'.,
Ludovic Courtès <=
- [bug#38518] [PATCH 7/7] challenge: Support "--diff=diffoscope"., Ludovic Courtès, 2019/12/08
- [bug#38518] [PATCH 6/7] challenge: Add "--diff"., Ludovic Courtès, 2019/12/08
- bug#38518: [PATCH 0/7] 'guix challenge' can diff archives directly, Ludovic Courtès, 2019/12/12