From 4b57a2e8b60c6de63fbaa920e88553528c2d0c62 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Wed, 5 Apr 2000 04:26:53 +0000 Subject: [PATCH] Concatenated-stream-streams should be returning the remaining streams to read rather than all the streams; noted by Sam Steingold. The streams are now simply popped when the EOF is reached. The full list of streams is not maintained as presumably the closing of the streams will be handled separately from the concatenated-stream functionality. --- code/stream.lisp | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/code/stream.lisp b/code/stream.lisp index 45bbb5e4b..5f8297af1 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.39 1999/02/11 12:17:58 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.40 2000/04/05 04:26:53 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -897,13 +897,10 @@ (bin #'concatenated-bin) (misc #'concatenated-misc)) (:print-function %print-concatenated-stream) - (:constructor - make-concatenated-stream (&rest streams &aux (current streams)))) - ;; The car of this is the stream we are reading from now. - current - ;; This is a list of all the streams. We need to remember them so that - ;; we can close them. - (streams nil :type list :read-only t)) + (:constructor make-concatenated-stream (&rest streams))) + ;; This is a list of all the streams. The car of this is the stream + ;; we are reading from now. + (streams nil :type list)) (defun %print-concatenated-stream (s stream d) (declare (ignore d)) @@ -916,18 +913,19 @@ (macrolet ((in-fun (name fun) `(defun ,name (stream eof-errorp eof-value) - (do ((current (concatenated-stream-current stream) (cdr current))) + (do ((current (concatenated-stream-streams stream) + (cdr current))) ((null current) (eof-or-lose stream eof-errorp eof-value)) (let* ((stream (car current)) (result (,fun stream nil nil))) (when result (return result))) - (setf (concatenated-stream-current stream) current))))) + (setf (concatenated-stream-streams stream) (cdr current)))))) (in-fun concatenated-in read-char) (in-fun concatenated-bin read-byte)) (defun concatenated-misc (stream operation &optional arg1 arg2) - (let ((left (concatenated-stream-current stream))) + (let ((left (concatenated-stream-streams stream))) (when left (let* ((current (car left))) (case operation @@ -939,9 +937,9 @@ (stream-misc-dispatch current :listen)))) (cond ((eq stuff :eof) ;; Advance current, and try again. - (pop (concatenated-stream-current stream)) + (pop (concatenated-stream-streams stream)) (setf current - (car (concatenated-stream-current stream))) + (car (concatenated-stream-streams stream))) (unless current ;; No further streams. EOF. (return :eof))) -- GitLab