From c991806299d335b0c0bcce0041b8df16f8697cdd Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Sun, 8 Jul 2001 17:37:56 +0000 Subject: [PATCH] From Paul Foley: Implements READ- and WRITE-SEQUENCE on Gray streams, via STREAM-READ-SEQUENCE and STREAM-WRITE-SEQUENCE, and provides a :class keyword to OPEN which lets it return Gray streams classes wrapped around lisp-streams. Load exports.lisp before compiling with this set of changes. --- code/exports.lisp | 5 +++-- code/fd-stream.lisp | 15 +++++++++++++-- code/globals.lisp | 5 +++-- code/package.lisp | 4 ++-- code/stream.lisp | 10 +++++++--- compiler/fndb.lisp | 5 +++-- 6 files changed, 31 insertions(+), 13 deletions(-) diff --git a/code/exports.lisp b/code/exports.lisp index fa173132e..c839b7b86 100644 --- a/code/exports.lisp +++ b/code/exports.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/exports.lisp,v 1.182 2001/03/15 18:01:36 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.183 2001/07/08 17:37:52 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1027,7 +1027,8 @@ "STREAM-LISTEN" "STREAM-PEEK-CHAR" "STREAM-READ-BYTE" "STREAM-READ-CHAR" "STREAM-READ-CHAR-NO-HANG" "STREAM-READ-LINE" "STREAM-START-LINE-P" "STREAM-TERPRI" "STREAM-UNREAD-CHAR" - "STREAM-WRITE-BYTE" "STREAM-WRITE-CHAR" "STREAM-WRITE-STRING")) + "STREAM-WRITE-BYTE" "STREAM-WRITE-CHAR" "STREAM-WRITE-STRING" + "STREAM-READ-SEQUENCE" "STREAM-WRITE-SEQUENCE")) (defpackage "LOOP") (dolist diff --git a/code/fd-stream.lisp b/code/fd-stream.lisp index b761bef85..19eca9509 100644 --- a/code/fd-stream.lisp +++ b/code/fd-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/fd-stream.lisp,v 1.56 2001/06/17 19:06:58 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.57 2001/07/08 17:37:52 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1243,6 +1243,16 @@ (unix:get-unix-error-msg err)) nil)))) +;;; RETURN-STREAM -- internal +;;; +;;; (this is just to save having to reindent the code in OPEN...move it there) +;;; +(defmacro return-stream (class &body body) + (let ((stream (gensym))) + `(let ((,stream (progn ,@body))) + (return (if ,class + (make-instance ,class :lisp-stream ,stream) + ,stream))))) ;;; OPEN -- public ;;; @@ -1255,6 +1265,7 @@ (if-exists nil if-exists-given) (if-does-not-exist nil if-does-not-exist-given) (external-format :default) + class &aux ; Squelch assignment warning. (direction direction) (if-does-not-exist if-does-not-exist) @@ -1381,7 +1392,7 @@ (unix:unix-open namestring mask mode) (values nil unix:enoent)) (cond ((numberp fd) - (return + (return-stream class (case direction ((:input :output :io) (make-fd-stream fd diff --git a/code/globals.lisp b/code/globals.lisp index e719e7ffb..4f4e5591b 100644 --- a/code/globals.lisp +++ b/code/globals.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/globals.lisp,v 1.16 1998/05/04 01:27:14 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/globals.lisp,v 1.17 2001/07/08 17:37:54 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -73,4 +73,5 @@ stream-listen stream-peek-char stream-read-byte stream-read-char stream-read-char-no-hang stream-read-line stream-start-line-p stream-terpri stream-unread-char - stream-write-byte stream-write-char stream-write-string)) + stream-write-byte stream-write-char stream-write-string + stream-read-sequence stream-write-sequence)) diff --git a/code/package.lisp b/code/package.lisp index 31282a8a9..fd5584393 100644 --- a/code/package.lisp +++ b/code/package.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/package.lisp,v 1.57 2000/11/30 05:33:17 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/package.lisp,v 1.58 2001/07/08 17:37:54 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -890,7 +890,7 @@ ',shadows ',shadowing-imports ',(if use-p use :default) ',imports ',interns ',exports ',doc)))) -(defun check-disjoint(&rest args) +(defun check-disjoint (&rest args) ;; An arg is (:key . set) (do ((list args (cdr list))) ((endp list)) diff --git a/code/stream.lisp b/code/stream.lisp index 4bc828330..577e1515d 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.46 2001/04/07 13:45:25 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/stream.lisp,v 1.47 2001/07/08 17:37:55 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -689,7 +689,7 @@ (streams () :type list :read-only t)) (setf (documentation 'make-broadcast-stream 'function) - "Returns an ouput stream which sends its output to all of the given streams.") + "Returns an output stream which sends its output to all of the given streams.") (defun %print-broadcast-stream (s stream d) (declare (ignore s d)) @@ -1319,7 +1319,7 @@ (indentation 0)) (setf (documentation 'make-indenting-stream 'function) - "Returns an ouput stream which indents its output by some amount.") + "Returns an output stream which indents its output by some amount.") (defun %print-indenting-stream (s stream d) (declare (ignore s d)) @@ -1681,6 +1681,8 @@ (type index start) (type sequence-end end) (values index)) + (when (not (cl::lisp-stream-p stream)) + (return-from read-sequence (stream-read-sequence seq stream start end))) (let ((end (or end (length seq)))) (declare (type index end)) (etypecase seq @@ -1737,6 +1739,8 @@ (type index start) (type sequence-end end) (values sequence)) + (when (not (cl::lisp-stream-p stream)) + (return-from write-sequence (stream-write-sequence seq stream start end))) (let ((end (or end (length seq)))) (declare (type index start end)) (etypecase seq diff --git a/compiler/fndb.lisp b/compiler/fndb.lisp index 0596accfd..4b965dd9d 100644 --- a/compiler/fndb.lisp +++ b/compiler/fndb.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/compiler/fndb.lisp,v 1.94 2001/05/27 15:15:48 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.95 2001/07/08 17:37:56 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -996,7 +996,8 @@ :rename-and-delete :overwrite :append :supersede nil)) (:if-does-not-exist (member :error :create nil)) - (:external-format (member :default))) + (:external-format (member :default)) + (:class (or symbol class))) (or stream null)) (defknown rename-file (pathnamelike filename) (values pathname pathname pathname)) -- GitLab