From f0b7b44b0bebaf471a03de04f67132c95611d0dc Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Sat, 7 Apr 2001 13:45:25 +0000
Subject: [PATCH] From Pierre Mai:

Implement n-bin method for concatenated-stream.  This fixes
read-sequence for byte-vectors and strings for concatenated-streams.
---
 code/stream.lisp | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/code/stream.lisp b/code/stream.lisp
index b770bc938..4bc828330 100644
--- a/code/stream.lisp
+++ b/code/stream.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.45 2001/03/04 20:12:42 pw Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.46 2001/04/07 13:45:25 pw Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -895,6 +895,7 @@
 	    (:include lisp-stream
 		      (in #'concatenated-in)
 		      (bin #'concatenated-bin)
+		      (n-bin #'concatenated-n-bin)
 		      (misc #'concatenated-misc))
 	    (:print-function %print-concatenated-stream)
 	    (:constructor make-concatenated-stream (&rest streams)))
@@ -924,6 +925,22 @@
   (in-fun concatenated-in read-char)
   (in-fun concatenated-bin read-byte))
 
+(defun concatenated-n-bin (stream buffer start numbytes eof-errorp)
+  (do ((current (concatenated-stream-streams stream) (cdr current))
+       (current-start start)
+       (remaining-bytes numbytes))
+      ((null current)
+       (if eof-errorp
+	(error 'end-of-file :stream stream)
+	(- numbytes remaining-bytes)))
+    (let* ((stream (car current))
+           (bytes-read (read-n-bytes stream buffer current-start
+	                             remaining-bytes nil)))
+      (incf current-start bytes-read)
+      (decf remaining-bytes bytes-read)
+      (when (zerop remaining-bytes) (return numbytes)))
+    (setf (concatenated-stream-streams stream) (cdr current))))
+
 (defun concatenated-misc (stream operation &optional arg1 arg2)
   (let ((left (concatenated-stream-streams stream)))
     (when left
-- 
GitLab