1.0.27.46: Fix build on systems with "src" in the path.
[sbcl/tcr.git] / src / code / stream.lisp
blobe795f0180dc722170fa701fc869db621a1246a9e
1 ;;;; os-independent stream functions
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 (in-package "SB!IMPL")
14 ;;;; standard streams
16 ;;; The initialization of these streams is performed by
17 ;;; STREAM-COLD-INIT-OR-RESET.
18 (defvar *terminal-io* () #!+sb-doc "terminal I/O stream")
19 (defvar *standard-input* () #!+sb-doc "default input stream")
20 (defvar *standard-output* () #!+sb-doc "default output stream")
21 (defvar *error-output* () #!+sb-doc "error output stream")
22 (defvar *query-io* () #!+sb-doc "query I/O stream")
23 (defvar *trace-output* () #!+sb-doc "trace output stream")
24 (defvar *debug-io* () #!+sb-doc "interactive debugging stream")
26 (defun ill-in (stream &rest ignore)
27 (declare (ignore ignore))
28 (error 'simple-type-error
29 :datum stream
30 :expected-type '(satisfies input-stream-p)
31 :format-control "~S is not a character input stream."
32 :format-arguments (list stream)))
33 (defun ill-out (stream &rest ignore)
34 (declare (ignore ignore))
35 (error 'simple-type-error
36 :datum stream
37 :expected-type '(satisfies output-stream-p)
38 :format-control "~S is not a character output stream."
39 :format-arguments (list stream)))
40 (defun ill-bin (stream &rest ignore)
41 (declare (ignore ignore))
42 (error 'simple-type-error
43 :datum stream
44 :expected-type '(satisfies input-stream-p)
45 :format-control "~S is not a binary input stream."
46 :format-arguments (list stream)))
47 (defun ill-bout (stream &rest ignore)
48 (declare (ignore ignore))
49 (error 'simple-type-error
50 :datum stream
51 :expected-type '(satisfies output-stream-p)
52 :format-control "~S is not a binary output stream."
53 :format-arguments (list stream)))
54 (defun closed-flame (stream &rest ignore)
55 (declare (ignore ignore))
56 (error 'closed-stream-error :stream stream))
57 (defun no-op-placeholder (&rest ignore)
58 (declare (ignore ignore)))
60 ;;; stream manipulation functions
62 (defun ansi-stream-input-stream-p (stream)
63 (declare (type ansi-stream stream))
64 (if (synonym-stream-p stream)
65 (input-stream-p (symbol-value (synonym-stream-symbol stream)))
66 (and (not (eq (ansi-stream-in stream) #'closed-flame))
67 ;;; KLUDGE: It's probably not good to have EQ tests on function
68 ;;; values like this. What if someone's redefined the function?
69 ;;; Is there a better way? (Perhaps just VALID-FOR-INPUT and
70 ;;; VALID-FOR-OUTPUT flags? -- WHN 19990902
71 (or (not (eq (ansi-stream-in stream) #'ill-in))
72 (not (eq (ansi-stream-bin stream) #'ill-bin))))))
74 (defun input-stream-p (stream)
75 (declare (type stream stream))
76 (and (ansi-stream-p stream)
77 (ansi-stream-input-stream-p stream)))
79 (defun ansi-stream-output-stream-p (stream)
80 (declare (type ansi-stream stream))
81 (if (synonym-stream-p stream)
82 (output-stream-p (symbol-value (synonym-stream-symbol stream)))
83 (and (not (eq (ansi-stream-in stream) #'closed-flame))
84 (or (not (eq (ansi-stream-out stream) #'ill-out))
85 (not (eq (ansi-stream-bout stream) #'ill-bout))))))
87 (defun output-stream-p (stream)
88 (declare (type stream stream))
90 (and (ansi-stream-p stream)
91 (ansi-stream-output-stream-p stream)))
93 (declaim (inline ansi-stream-open-stream-p))
94 (defun ansi-stream-open-stream-p (stream)
95 (declare (type ansi-stream stream))
96 ;; CLHS 22.1.4 lets us not worry about synonym streams here.
97 (not (eq (ansi-stream-in stream) #'closed-flame)))
99 (defun open-stream-p (stream)
100 (ansi-stream-open-stream-p stream))
102 (declaim (inline ansi-stream-element-type))
103 (defun ansi-stream-element-type (stream)
104 (declare (type ansi-stream stream))
105 (funcall (ansi-stream-misc stream) stream :element-type))
107 (defun stream-element-type (stream)
108 (ansi-stream-element-type stream))
110 (defun stream-external-format (stream)
111 (funcall (ansi-stream-misc stream) stream :external-format))
113 (defun interactive-stream-p (stream)
114 (declare (type stream stream))
115 (funcall (ansi-stream-misc stream) stream :interactive-p))
117 (declaim (inline ansi-stream-close))
118 (defun ansi-stream-close (stream abort)
119 (declare (type ansi-stream stream))
120 (when (open-stream-p stream)
121 (funcall (ansi-stream-misc stream) stream :close abort))
124 (defun close (stream &key abort)
125 (ansi-stream-close stream abort))
127 (defun set-closed-flame (stream)
128 (setf (ansi-stream-in stream) #'closed-flame)
129 (setf (ansi-stream-bin stream) #'closed-flame)
130 (setf (ansi-stream-n-bin stream) #'closed-flame)
131 (setf (ansi-stream-out stream) #'closed-flame)
132 (setf (ansi-stream-bout stream) #'closed-flame)
133 (setf (ansi-stream-sout stream) #'closed-flame)
134 (setf (ansi-stream-misc stream) #'closed-flame))
136 ;;;; file position and file length
137 (defun external-format-char-size (external-format)
138 (let ((ef-entry (find-external-format external-format)))
139 (if (variable-width-external-format-p ef-entry)
140 (bytes-for-char-fun ef-entry)
141 (funcall (bytes-for-char-fun ef-entry) #\x))))
143 ;;; Call the MISC method with the :FILE-POSITION operation.
144 #!-sb-fluid (declaim (inline ansi-stream-file-position))
145 (defun ansi-stream-file-position (stream position)
146 (declare (type stream stream))
147 (declare (type (or index (alien sb!unix:off-t) (member nil :start :end))
148 position))
149 ;; FIXME: It woud be good to comment on the stuff that is done here...
150 ;; FIXME: This doesn't look interrupt safe.
151 (cond
152 (position
153 (setf (ansi-stream-in-index stream) +ansi-stream-in-buffer-length+)
154 (funcall (ansi-stream-misc stream) stream :file-position position))
156 (let ((res (funcall (ansi-stream-misc stream) stream :file-position nil)))
157 (when res
158 #!-sb-unicode
159 (- res
160 (- +ansi-stream-in-buffer-length+
161 (ansi-stream-in-index stream)))
162 #!+sb-unicode
163 (let ((char-size (if (fd-stream-p stream)
164 (fd-stream-char-size stream)
165 (external-format-char-size (stream-external-format stream)))))
166 (- res
167 (etypecase char-size
168 (function
169 (loop with buffer = (ansi-stream-cin-buffer stream)
170 with start = (ansi-stream-in-index stream)
171 for i from start below +ansi-stream-in-buffer-length+
172 sum (funcall char-size (aref buffer i))))
173 (fixnum
174 (* char-size
175 (- +ansi-stream-in-buffer-length+
176 (ansi-stream-in-index stream))))))))))))
178 (defun file-position (stream &optional position)
179 (if (ansi-stream-p stream)
180 (ansi-stream-file-position stream position)
181 (stream-file-position stream position)))
183 ;;; This is a literal translation of the ANSI glossary entry "stream
184 ;;; associated with a file".
186 ;;; KLUDGE: Note that since Unix famously thinks "everything is a
187 ;;; file", and in particular stdin, stdout, and stderr are files, we
188 ;;; end up with this test being satisfied for weird things like
189 ;;; *STANDARD-OUTPUT* (to a tty). That seems unlikely to be what the
190 ;;; ANSI spec really had in mind, especially since this is used as a
191 ;;; qualification for operations like FILE-LENGTH (so that ANSI was
192 ;;; probably thinking of something like what Unix calls block devices)
193 ;;; but I can't see any better way to do it. -- WHN 2001-04-14
194 (defun stream-associated-with-file-p (x)
195 "Test for the ANSI concept \"stream associated with a file\"."
196 (or (typep x 'file-stream)
197 (and (synonym-stream-p x)
198 (stream-associated-with-file-p (symbol-value
199 (synonym-stream-symbol x))))))
201 (defun stream-must-be-associated-with-file (stream)
202 (declare (type stream stream))
203 (unless (stream-associated-with-file-p stream)
204 (error 'simple-type-error
205 ;; KLUDGE: The ANSI spec for FILE-LENGTH specifically says
206 ;; this should be TYPE-ERROR. But what then can we use for
207 ;; EXPECTED-TYPE? This SATISFIES type (with a nonstandard
208 ;; private predicate function..) is ugly and confusing, but
209 ;; I can't see any other way. -- WHN 2001-04-14
210 :datum stream
211 :expected-type '(satisfies stream-associated-with-file-p)
212 :format-control
213 "~@<The stream ~2I~_~S ~I~_isn't associated with a file.~:>"
214 :format-arguments (list stream))))
216 ;;; like FILE-POSITION, only using :FILE-LENGTH
217 (defun file-length (stream)
218 ;; FIXME: The following declaration uses yet undefined types, which
219 ;; cause cross-compiler hangup.
221 ;; (declare (type (or file-stream synonym-stream) stream))
223 ;; The description for FILE-LENGTH says that an error must be raised
224 ;; for streams not associated with files (which broadcast streams
225 ;; aren't according to the glossary). However, the behaviour of
226 ;; FILE-LENGTH for broadcast streams is explicitly described in the
227 ;; BROADCAST-STREAM entry.
228 (unless (typep stream 'broadcast-stream)
229 (stream-must-be-associated-with-file stream))
230 (funcall (ansi-stream-misc stream) stream :file-length))
232 (defun file-string-length (stream object)
233 (funcall (ansi-stream-misc stream) stream :file-string-length object))
235 ;;;; input functions
237 (defun ansi-stream-read-line-from-frc-buffer (stream eof-error-p eof-value)
238 (prepare-for-fast-read-char stream
239 (declare (ignore %frc-method%))
240 (let ((chunks-total-length 0)
241 (chunks nil))
242 (declare (type index chunks-total-length)
243 (list chunks))
244 (labels ((refill-buffer ()
245 (prog1
246 (fast-read-char-refill stream nil nil)
247 (setf %frc-index% (ansi-stream-in-index %frc-stream%))))
248 (newline-position ()
249 (position #\Newline (the (simple-array character (*))
250 %frc-buffer%)
251 :test #'char=
252 :start %frc-index%))
253 (make-and-return-result-string (pos)
254 (let* ((len (+ (- (or pos %frc-index%)
255 %frc-index%)
256 chunks-total-length))
257 (res (make-string len))
258 (start 0))
259 (declare (type index start))
260 (when chunks
261 (dolist (chunk (nreverse chunks))
262 (declare (type (simple-array character) chunk))
263 (replace res chunk :start1 start)
264 (incf start (length chunk))))
265 (unless (null pos)
266 (replace res %frc-buffer%
267 :start1 start
268 :start2 %frc-index% :end2 pos)
269 (setf %frc-index% (1+ pos)))
270 (done-with-fast-read-char)
271 (return-from ansi-stream-read-line-from-frc-buffer (values res (null pos)))))
272 (add-chunk ()
273 (let* ((end (length %frc-buffer%))
274 (len (- end %frc-index%))
275 (chunk (make-string len)))
276 (replace chunk %frc-buffer% :start2 %frc-index% :end2 end)
277 (push chunk chunks)
278 (incf chunks-total-length len)
279 (when (refill-buffer)
280 (make-and-return-result-string nil)))))
281 (declare (inline make-and-return-result-string
282 refill-buffer))
283 (when (and (= %frc-index% +ansi-stream-in-buffer-length+)
284 (refill-buffer))
285 ;; EOF had been reached before we read anything
286 ;; at all. Return the EOF value or signal the error.
287 (done-with-fast-read-char)
288 (return-from ansi-stream-read-line-from-frc-buffer
289 (values (eof-or-lose stream eof-error-p eof-value) t)))
290 (loop
291 (let ((pos (newline-position)))
292 (if pos
293 (make-and-return-result-string pos)
294 (add-chunk))))))))
296 #!-sb-fluid (declaim (inline ansi-stream-read-line))
297 (defun ansi-stream-read-line (stream eof-error-p eof-value recursive-p)
298 (declare (ignore recursive-p))
299 (if (ansi-stream-cin-buffer stream)
300 ;; Stream has a fast-read-char buffer. Copy large chunks directly
301 ;; out of the buffer.
302 (ansi-stream-read-line-from-frc-buffer stream eof-error-p eof-value)
303 ;; Slow path, character by character.
304 (prepare-for-fast-read-char stream
305 (let ((res (make-string 80))
306 (len 80)
307 (index 0))
308 (loop
309 (let ((ch (fast-read-char nil nil)))
310 (cond (ch
311 (when (char= ch #\newline)
312 (done-with-fast-read-char)
313 (return (values (%shrink-vector res index) nil)))
314 (when (= index len)
315 (setq len (* len 2))
316 (let ((new (make-string len)))
317 (replace new res)
318 (setq res new)))
319 (setf (schar res index) ch)
320 (incf index))
321 ((zerop index)
322 (done-with-fast-read-char)
323 (return (values (eof-or-lose stream
324 eof-error-p
325 eof-value)
326 t)))
327 ;; Since FAST-READ-CHAR already hit the eof char, we
328 ;; shouldn't do another READ-CHAR.
330 (done-with-fast-read-char)
331 (return (values (%shrink-vector res index) t))))))))))
333 (defun read-line (&optional (stream *standard-input*) (eof-error-p t) eof-value
334 recursive-p)
335 (let ((stream (in-synonym-of stream)))
336 (if (ansi-stream-p stream)
337 (ansi-stream-read-line stream eof-error-p eof-value recursive-p)
338 ;; must be Gray streams FUNDAMENTAL-STREAM
339 (multiple-value-bind (string eof) (stream-read-line stream)
340 (if (and eof (zerop (length string)))
341 (values (eof-or-lose stream eof-error-p eof-value) t)
342 (values string eof))))))
344 ;;; We proclaim them INLINE here, then proclaim them NOTINLINE later on,
345 ;;; so, except in this file, they are not inline by default, but they can be.
346 #!-sb-fluid (declaim (inline read-char unread-char read-byte listen))
348 #!-sb-fluid (declaim (inline ansi-stream-read-char))
349 (defun ansi-stream-read-char (stream eof-error-p eof-value recursive-p)
350 (declare (ignore recursive-p))
351 (prepare-for-fast-read-char stream
352 (prog1
353 (fast-read-char eof-error-p eof-value)
354 (done-with-fast-read-char))))
356 (defun read-char (&optional (stream *standard-input*)
357 (eof-error-p t)
358 eof-value
359 recursive-p)
360 (let ((stream (in-synonym-of stream)))
361 (if (ansi-stream-p stream)
362 (ansi-stream-read-char stream eof-error-p eof-value recursive-p)
363 ;; must be Gray streams FUNDAMENTAL-STREAM
364 (let ((char (stream-read-char stream)))
365 (if (eq char :eof)
366 (eof-or-lose stream eof-error-p eof-value)
367 char)))))
369 #!-sb-fluid (declaim (inline ansi-stream-unread-char))
370 (defun ansi-stream-unread-char (character stream)
371 (let ((index (1- (ansi-stream-in-index stream)))
372 (buffer (ansi-stream-cin-buffer stream)))
373 (declare (fixnum index))
374 (when (minusp index) (error "nothing to unread"))
375 (cond (buffer
376 (setf (aref buffer index) character)
377 (setf (ansi-stream-in-index stream) index))
379 (funcall (ansi-stream-misc stream) stream
380 :unread character)))))
382 (defun unread-char (character &optional (stream *standard-input*))
383 (let ((stream (in-synonym-of stream)))
384 (if (ansi-stream-p stream)
385 (ansi-stream-unread-char character stream)
386 ;; must be Gray streams FUNDAMENTAL-STREAM
387 (stream-unread-char stream character)))
388 nil)
390 #!-sb-fluid (declaim (inline ansi-stream-listen))
391 (defun ansi-stream-listen (stream)
392 (or (/= (the fixnum (ansi-stream-in-index stream))
393 +ansi-stream-in-buffer-length+)
394 ;; Handle :EOF return from misc methods specially
395 (let ((result (funcall (ansi-stream-misc stream) stream :listen)))
396 (if (eq result :eof)
398 result))))
400 (defun listen (&optional (stream *standard-input*))
401 (let ((stream (in-synonym-of stream)))
402 (if (ansi-stream-p stream)
403 (ansi-stream-listen stream)
404 ;; Fall through to Gray streams FUNDAMENTAL-STREAM case.
405 (stream-listen stream))))
407 #!-sb-fluid (declaim (inline ansi-stream-read-char-no-hang))
408 (defun ansi-stream-read-char-no-hang (stream eof-error-p eof-value recursive-p)
409 (if (funcall (ansi-stream-misc stream) stream :listen)
410 ;; On T or :EOF get READ-CHAR to do the work.
411 (ansi-stream-read-char stream eof-error-p eof-value recursive-p)
412 nil))
414 (defun read-char-no-hang (&optional (stream *standard-input*)
415 (eof-error-p t)
416 eof-value
417 recursive-p)
418 (let ((stream (in-synonym-of stream)))
419 (if (ansi-stream-p stream)
420 (ansi-stream-read-char-no-hang stream eof-error-p eof-value
421 recursive-p)
422 ;; must be Gray streams FUNDAMENTAL-STREAM
423 (let ((char (stream-read-char-no-hang stream)))
424 (if (eq char :eof)
425 (eof-or-lose stream eof-error-p eof-value)
426 char)))))
428 #!-sb-fluid (declaim (inline ansi-stream-clear-input))
429 (defun ansi-stream-clear-input (stream)
430 (setf (ansi-stream-in-index stream) +ansi-stream-in-buffer-length+)
431 (funcall (ansi-stream-misc stream) stream :clear-input))
433 (defun clear-input (&optional (stream *standard-input*))
434 (let ((stream (in-synonym-of stream)))
435 (if (ansi-stream-p stream)
436 (ansi-stream-clear-input stream)
437 ;; must be Gray streams FUNDAMENTAL-STREAM
438 (stream-clear-input stream)))
439 nil)
441 #!-sb-fluid (declaim (inline ansi-stream-read-byte))
442 (defun ansi-stream-read-byte (stream eof-error-p eof-value recursive-p)
443 ;; Why the "recursive-p" parameter? a-s-r-b is funcall'ed from
444 ;; a-s-read-sequence and needs a lambda list that's congruent with
445 ;; that of a-s-read-char
446 (declare (ignore recursive-p))
447 (prepare-for-fast-read-byte stream
448 (prog1
449 (fast-read-byte eof-error-p eof-value t)
450 (done-with-fast-read-byte))))
452 (defun read-byte (stream &optional (eof-error-p t) eof-value)
453 (if (ansi-stream-p stream)
454 (ansi-stream-read-byte stream eof-error-p eof-value nil)
455 ;; must be Gray streams FUNDAMENTAL-STREAM
456 (let ((char (stream-read-byte stream)))
457 (if (eq char :eof)
458 (eof-or-lose stream eof-error-p eof-value)
459 char))))
461 ;;; Read NUMBYTES bytes into BUFFER beginning at START, and return the
462 ;;; number of bytes read.
464 ;;; Note: CMU CL's version of this had a special interpretation of
465 ;;; EOF-ERROR-P which SBCL does not have. (In the EOF-ERROR-P=NIL
466 ;;; case, CMU CL's version would return as soon as any data became
467 ;;; available.) This could be useful behavior for things like pipes in
468 ;;; some cases, but it wasn't being used in SBCL, so it was dropped.
469 ;;; If we ever need it, it could be added later as a new variant N-BIN
470 ;;; method (perhaps N-BIN-ASAP?) or something.
471 #!-sb-fluid (declaim (inline read-n-bytes))
472 (defun read-n-bytes (stream buffer start numbytes &optional (eof-error-p t))
473 (if (ansi-stream-p stream)
474 (ansi-stream-read-n-bytes stream buffer start numbytes eof-error-p)
475 ;; We don't need to worry about element-type size here is that
476 ;; callers are supposed to have checked everything is kosher.
477 (let* ((end (+ start numbytes))
478 (read-end (stream-read-sequence stream buffer start end)))
479 (eof-or-lose stream (and eof-error-p (< read-end end)) (- read-end start)))))
481 (defun ansi-stream-read-n-bytes (stream buffer start numbytes eof-error-p)
482 (declare (type ansi-stream stream)
483 (type index numbytes start)
484 (type (or (simple-array * (*)) system-area-pointer) buffer))
485 (let* ((stream (in-synonym-of stream ansi-stream))
486 (in-buffer (ansi-stream-in-buffer stream))
487 (index (ansi-stream-in-index stream))
488 (num-buffered (- +ansi-stream-in-buffer-length+ index)))
489 (declare (fixnum index num-buffered))
490 (cond
491 ((not in-buffer)
492 (funcall (ansi-stream-n-bin stream)
493 stream
494 buffer
495 start
496 numbytes
497 eof-error-p))
498 ((<= numbytes num-buffered)
499 #+nil
500 (let ((copy-function (typecase buffer
501 ((simple-array * (*)) #'ub8-bash-copy)
502 (system-area-pointer #'copy-ub8-to-system-area))))
503 (funcall copy-function in-buffer index buffer start numbytes))
504 (%byte-blt in-buffer index
505 buffer start (+ start numbytes))
506 (setf (ansi-stream-in-index stream) (+ index numbytes))
507 numbytes)
509 (let ((end (+ start num-buffered)))
510 #+nil
511 (let ((copy-function (typecase buffer
512 ((simple-array * (*)) #'ub8-bash-copy)
513 (system-area-pointer #'copy-ub8-to-system-area))))
514 (funcall copy-function in-buffer index buffer start num-buffered))
515 (%byte-blt in-buffer index buffer start end)
516 (setf (ansi-stream-in-index stream) +ansi-stream-in-buffer-length+)
517 (+ (funcall (ansi-stream-n-bin stream)
518 stream
519 buffer
521 (- numbytes num-buffered)
522 eof-error-p)
523 num-buffered))))))
525 ;;; the amount of space we leave at the start of the in-buffer for
526 ;;; unreading
528 ;;; (It's 4 instead of 1 to allow word-aligned copies.)
529 (defconstant +ansi-stream-in-buffer-extra+
530 4) ; FIXME: should be symbolic constant
532 ;;; This function is called by the FAST-READ-CHAR expansion to refill
533 ;;; the IN-BUFFER for text streams. There is definitely an IN-BUFFER,
534 ;;; and hence must be an N-BIN method. It's also called by other stream
535 ;;; functions which directly peek into the frc buffer.
536 (defun fast-read-char-refill (stream eof-error-p eof-value)
537 (let* ((ibuf (ansi-stream-cin-buffer stream))
538 (count (funcall (ansi-stream-n-bin stream)
539 stream
540 ibuf
541 +ansi-stream-in-buffer-extra+
542 (- +ansi-stream-in-buffer-length+
543 +ansi-stream-in-buffer-extra+)
544 nil))
545 (start (- +ansi-stream-in-buffer-length+ count)))
546 (declare (type index start count))
547 (cond ((zerop count)
548 ;; An empty count does not necessarily mean that we reached
549 ;; the EOF, it's also possible that it's e.g. due to a
550 ;; invalid octet sequence in a multibyte stream. To handle
551 ;; the resyncing case correctly we need to call the
552 ;; single-character reading function and check whether an
553 ;; EOF was really reached. If not, we can just fill the
554 ;; buffer by one character, and hope that the next refill
555 ;; will not need to resync.
556 (let* ((value (funcall (ansi-stream-in stream) stream nil :eof))
557 (index (1- +ansi-stream-in-buffer-length+)))
558 (case value
559 ((:eof)
560 ;; Mark buffer as empty.
561 (setf (ansi-stream-in-index stream)
562 +ansi-stream-in-buffer-length+)
563 ;; EOF. Redo the read, this time with the real eof parameters.
564 (values t (funcall (ansi-stream-in stream)
565 stream eof-error-p eof-value)))
566 (otherwise
567 (setf (aref ibuf index) value)
568 (values nil (setf (ansi-stream-in-index stream) index))))))
570 (when (/= start +ansi-stream-in-buffer-extra+)
571 (#.(let* ((n-character-array-bits
572 (sb!vm:saetp-n-bits
573 (find 'character
574 sb!vm:*specialized-array-element-type-properties*
575 :key #'sb!vm:saetp-specifier)))
576 (bash-function (intern (format nil "UB~D-BASH-COPY" n-character-array-bits)
577 (find-package "SB!KERNEL"))))
578 bash-function)
579 ibuf +ansi-stream-in-buffer-extra+
580 ibuf start
581 count))
582 (values nil
583 (setf (ansi-stream-in-index stream) start))))))
585 ;;; This is similar to FAST-READ-CHAR-REFILL, but we don't have to
586 ;;; leave room for unreading.
587 (defun fast-read-byte-refill (stream eof-error-p eof-value)
588 (let* ((ibuf (ansi-stream-in-buffer stream))
589 (count (funcall (ansi-stream-n-bin stream) stream
590 ibuf 0 +ansi-stream-in-buffer-length+
591 nil))
592 (start (- +ansi-stream-in-buffer-length+ count)))
593 (declare (type index start count))
594 (cond ((zerop count)
595 (setf (ansi-stream-in-index stream) +ansi-stream-in-buffer-length+)
596 (funcall (ansi-stream-bin stream) stream eof-error-p eof-value))
598 (unless (zerop start)
599 (ub8-bash-copy ibuf 0
600 ibuf start
601 count))
602 (setf (ansi-stream-in-index stream) (1+ start))
603 (aref ibuf start)))))
605 ;;; output functions
607 (defun write-char (character &optional (stream *standard-output*))
608 (with-out-stream stream (ansi-stream-out character)
609 (stream-write-char character))
610 character)
612 (defun terpri (&optional (stream *standard-output*))
613 (with-out-stream stream (ansi-stream-out #\newline) (stream-terpri))
614 nil)
616 #!-sb-fluid (declaim (inline ansi-stream-fresh-line))
617 (defun ansi-stream-fresh-line (stream)
618 (when (/= (or (charpos stream) 1) 0)
619 (funcall (ansi-stream-out stream) stream #\newline)
622 (defun fresh-line (&optional (stream *standard-output*))
623 (let ((stream (out-synonym-of stream)))
624 (if (ansi-stream-p stream)
625 (ansi-stream-fresh-line stream)
626 ;; must be Gray streams FUNDAMENTAL-STREAM
627 (stream-fresh-line stream))))
629 #!-sb-fluid (declaim (inline ansi-stream-write-string))
630 (defun ansi-stream-write-string (string stream start end)
631 (with-array-data ((data string) (offset-start start)
632 (offset-end end)
633 :check-fill-pointer t)
634 (funcall (ansi-stream-sout stream)
635 stream data offset-start offset-end)))
637 (defun %write-string (string stream start end)
638 (let ((stream (out-synonym-of stream)))
639 (if (ansi-stream-p stream)
640 (ansi-stream-write-string string stream start end)
641 ;; must be Gray streams FUNDAMENTAL-STREAM
642 (stream-write-string stream string start end)))
643 string)
645 (defun write-string (string &optional (stream *standard-output*)
646 &key (start 0) end)
647 (declare (type string string))
648 (declare (type stream-designator stream))
649 (%write-string string stream start end))
651 ;;; A wrapper function for all those (MACROLET OUT-FUN) definitions,
652 ;;; which cannot deal with keyword arguments. %WRITE-STRING cannot
653 ;;; replace this, as this needs to deal with simple-strings as well.
654 (declaim (inline write-string-no-key))
655 (defun write-string-no-key (string stream start end)
656 (write-string string stream :start start :end end))
658 (defun write-line (string &optional (stream *standard-output*)
659 &key (start 0) end)
660 (declare (type string string))
661 (declare (type stream-designator stream))
662 (let ((stream (out-synonym-of stream)))
663 (cond ((ansi-stream-p stream)
664 (ansi-stream-write-string string stream start end)
665 (funcall (ansi-stream-out stream) stream #\newline))
667 (stream-write-string stream string start end)
668 (stream-write-char stream #\newline))))
669 string)
671 (defun charpos (&optional (stream *standard-output*))
672 (with-out-stream stream (ansi-stream-misc :charpos) (stream-line-column)))
674 (defun line-length (&optional (stream *standard-output*))
675 (with-out-stream stream (ansi-stream-misc :line-length)
676 (stream-line-length)))
678 (defun finish-output (&optional (stream *standard-output*))
679 (with-out-stream stream (ansi-stream-misc :finish-output)
680 (stream-finish-output))
681 nil)
683 (defun force-output (&optional (stream *standard-output*))
684 (with-out-stream stream (ansi-stream-misc :force-output)
685 (stream-force-output))
686 nil)
688 (defun clear-output (&optional (stream *standard-output*))
689 (with-out-stream stream (ansi-stream-misc :clear-output)
690 (stream-force-output))
691 nil)
693 (defun write-byte (integer stream)
694 (with-out-stream/no-synonym stream (ansi-stream-bout integer)
695 (stream-write-byte integer))
696 integer)
699 ;;; (These were inline throughout this file, but that's not appropriate
700 ;;; globally. And we must not inline them in the rest of this file if
701 ;;; dispatch to gray or simple streams is to work, since both redefine
702 ;;; these functions later.)
703 (declaim (notinline read-char unread-char read-byte listen))
705 ;;; This is called from ANSI-STREAM routines that encapsulate CLOS
706 ;;; streams to handle the misc routines and dispatch to the
707 ;;; appropriate SIMPLE- or FUNDAMENTAL-STREAM functions.
708 (defun stream-misc-dispatch (stream operation &optional arg1 arg2)
709 (declare (type stream stream) (ignore arg2))
710 (ecase operation
711 (:listen
712 ;; Return T if input available, :EOF for end-of-file, otherwise NIL.
713 (let ((char (read-char-no-hang stream nil :eof)))
714 (when (characterp char)
715 (unread-char char stream))
716 char))
717 (:unread
718 (unread-char arg1 stream))
719 (:close
720 (close stream))
721 (:clear-input
722 (clear-input stream))
723 (:force-output
724 (force-output stream))
725 (:finish-output
726 (finish-output stream))
727 (:element-type
728 (stream-element-type stream))
729 (:stream-external-format
730 (stream-external-format stream))
731 (:interactive-p
732 (interactive-stream-p stream))
733 (:line-length
734 (line-length stream))
735 (:charpos
736 (charpos stream))
737 (:file-length
738 (file-length stream))
739 (:file-string-length
740 (file-string-length stream arg1))
741 (:file-position
742 (file-position stream arg1))))
744 ;;;; broadcast streams
746 (defstruct (broadcast-stream (:include ansi-stream
747 (out #'broadcast-out)
748 (bout #'broadcast-bout)
749 (sout #'broadcast-sout)
750 (misc #'broadcast-misc))
751 (:constructor %make-broadcast-stream
752 (&rest streams))
753 (:copier nil))
754 ;; a list of all the streams we broadcast to
755 (streams () :type list :read-only t))
757 (defun make-broadcast-stream (&rest streams)
758 (dolist (stream streams)
759 (unless (output-stream-p stream)
760 (error 'type-error
761 :datum stream
762 :expected-type '(satisfies output-stream-p))))
763 (apply #'%make-broadcast-stream streams))
765 (macrolet ((out-fun (name fun &rest args)
766 `(defun ,name (stream ,@args)
767 (dolist (stream (broadcast-stream-streams stream))
768 (,fun ,(car args) stream ,@(cdr args))))))
769 (out-fun broadcast-out write-char char)
770 (out-fun broadcast-bout write-byte byte)
771 (out-fun broadcast-sout write-string-no-key string start end))
773 (defun broadcast-misc (stream operation &optional arg1 arg2)
774 (let ((streams (broadcast-stream-streams stream)))
775 (case operation
776 ;; FIXME: This may not be the best place to note this, but I
777 ;; think the :CHARPOS protocol needs revision. Firstly, I think
778 ;; this is the last place where a NULL return value was possible
779 ;; (before adjusting it to be 0), so a bunch of conditionals IF
780 ;; CHARPOS can be removed; secondly, it is my belief that
781 ;; FD-STREAMS, when running FILE-POSITION, do not update the
782 ;; CHARPOS, and consequently there will be much wrongness.
784 ;; FIXME: see also TWO-WAY-STREAM treatment of :CHARPOS -- why
785 ;; is it testing the :charpos of an input stream?
787 ;; -- CSR, 2004-02-04
788 (:charpos
789 (dolist (stream streams 0)
790 (let ((charpos (charpos stream)))
791 (if charpos (return charpos)))))
792 (:line-length
793 (let ((min nil))
794 (dolist (stream streams min)
795 (let ((res (line-length stream)))
796 (when res (setq min (if min (min res min) res)))))))
797 (:element-type
798 #+nil ; old, arguably more logical, version
799 (let (res)
800 (dolist (stream streams (if (> (length res) 1) `(and ,@res) t))
801 (pushnew (stream-element-type stream) res :test #'equal)))
802 ;; ANSI-specified version (under System Class BROADCAST-STREAM)
803 (let ((res t))
804 (do ((streams streams (cdr streams)))
805 ((null streams) res)
806 (when (null (cdr streams))
807 (setq res (stream-element-type (car streams)))))))
808 (:external-format
809 (let ((res :default))
810 (dolist (stream streams res)
811 (setq res (stream-external-format stream)))))
812 (:file-length
813 (let ((last (last streams)))
814 (if last
815 (file-length (car last))
816 0)))
817 (:file-position
818 (if arg1
819 (let ((res (or (eql arg1 :start) (eql arg1 0))))
820 (dolist (stream streams res)
821 (setq res (file-position stream arg1))))
822 (let ((res 0))
823 (dolist (stream streams res)
824 (setq res (file-position stream))))))
825 (:file-string-length
826 (let ((res 1))
827 (dolist (stream streams res)
828 (setq res (file-string-length stream arg1)))))
829 (:close
830 (set-closed-flame stream))
832 (let ((res nil))
833 (dolist (stream streams res)
834 (setq res
835 (if (ansi-stream-p stream)
836 (funcall (ansi-stream-misc stream) stream operation
837 arg1 arg2)
838 (stream-misc-dispatch stream operation arg1 arg2)))))))))
840 ;;;; synonym streams
842 (defstruct (synonym-stream (:include ansi-stream
843 (in #'synonym-in)
844 (bin #'synonym-bin)
845 (n-bin #'synonym-n-bin)
846 (out #'synonym-out)
847 (bout #'synonym-bout)
848 (sout #'synonym-sout)
849 (misc #'synonym-misc))
850 (:constructor make-synonym-stream (symbol))
851 (:copier nil))
852 ;; This is the symbol, the value of which is the stream we are synonym to.
853 (symbol nil :type symbol :read-only t))
854 (def!method print-object ((x synonym-stream) stream)
855 (print-unreadable-object (x stream :type t :identity t)
856 (format stream ":SYMBOL ~S" (synonym-stream-symbol x))))
858 ;;; The output simple output methods just call the corresponding
859 ;;; function on the synonymed stream.
860 (macrolet ((out-fun (name fun &rest args)
861 `(defun ,name (stream ,@args)
862 (declare (optimize (safety 1)))
863 (let ((syn (symbol-value (synonym-stream-symbol stream))))
864 (,fun ,(car args) syn ,@(cdr args))))))
865 (out-fun synonym-out write-char ch)
866 (out-fun synonym-bout write-byte n)
867 (out-fun synonym-sout write-string-no-key string start end))
869 ;;; For the input methods, we just call the corresponding function on the
870 ;;; synonymed stream. These functions deal with getting input out of
871 ;;; the In-Buffer if there is any.
872 (macrolet ((in-fun (name fun &rest args)
873 `(defun ,name (stream ,@args)
874 (declare (optimize (safety 1)))
875 (,fun (symbol-value (synonym-stream-symbol stream))
876 ,@args))))
877 (in-fun synonym-in read-char eof-error-p eof-value)
878 (in-fun synonym-bin read-byte eof-error-p eof-value)
879 (in-fun synonym-n-bin read-n-bytes buffer start numbytes eof-error-p))
881 (defun synonym-misc (stream operation &optional arg1 arg2)
882 (declare (optimize (safety 1)))
883 (let ((syn (symbol-value (synonym-stream-symbol stream))))
884 (if (ansi-stream-p syn)
885 ;; We have to special-case some operations which interact with
886 ;; the in-buffer of the wrapped stream, since just calling
887 ;; ANSI-STREAM-MISC on them
888 (case operation
889 (:listen (or (/= (the fixnum (ansi-stream-in-index syn))
890 +ansi-stream-in-buffer-length+)
891 (funcall (ansi-stream-misc syn) syn :listen)))
892 (:clear-input (clear-input syn))
893 (:unread (unread-char arg1 syn))
895 (funcall (ansi-stream-misc syn) syn operation arg1 arg2)))
896 (stream-misc-dispatch syn operation arg1 arg2))))
898 ;;;; two-way streams
900 (defstruct (two-way-stream
901 (:include ansi-stream
902 (in #'two-way-in)
903 (bin #'two-way-bin)
904 (n-bin #'two-way-n-bin)
905 (out #'two-way-out)
906 (bout #'two-way-bout)
907 (sout #'two-way-sout)
908 (misc #'two-way-misc))
909 (:constructor %make-two-way-stream (input-stream output-stream))
910 (:copier nil))
911 (input-stream (missing-arg) :type stream :read-only t)
912 (output-stream (missing-arg) :type stream :read-only t))
913 (defprinter (two-way-stream) input-stream output-stream)
915 (defun make-two-way-stream (input-stream output-stream)
916 #!+sb-doc
917 "Return a bidirectional stream which gets its input from INPUT-STREAM and
918 sends its output to OUTPUT-STREAM."
919 ;; FIXME: This idiom of the-real-stream-of-a-possibly-synonym-stream
920 ;; should be encapsulated in a function, and used here and most of
921 ;; the other places that SYNONYM-STREAM-P appears.
922 (unless (output-stream-p output-stream)
923 (error 'type-error
924 :datum output-stream
925 :expected-type '(satisfies output-stream-p)))
926 (unless (input-stream-p input-stream)
927 (error 'type-error
928 :datum input-stream
929 :expected-type '(satisfies input-stream-p)))
930 (funcall #'%make-two-way-stream input-stream output-stream))
932 (macrolet ((out-fun (name fun &rest args)
933 `(defun ,name (stream ,@args)
934 (let ((syn (two-way-stream-output-stream stream)))
935 (,fun ,(car args) syn ,@(cdr args))))))
936 (out-fun two-way-out write-char ch)
937 (out-fun two-way-bout write-byte n)
938 (out-fun two-way-sout write-string-no-key string start end))
940 (macrolet ((in-fun (name fun &rest args)
941 `(defun ,name (stream ,@args)
942 (,fun (two-way-stream-input-stream stream) ,@args))))
943 (in-fun two-way-in read-char eof-error-p eof-value)
944 (in-fun two-way-bin read-byte eof-error-p eof-value)
945 (in-fun two-way-n-bin read-n-bytes buffer start numbytes eof-error-p))
947 (defun two-way-misc (stream operation &optional arg1 arg2)
948 (let* ((in (two-way-stream-input-stream stream))
949 (out (two-way-stream-output-stream stream))
950 (in-ansi-stream-p (ansi-stream-p in))
951 (out-ansi-stream-p (ansi-stream-p out)))
952 (case operation
953 (:listen
954 (if in-ansi-stream-p
955 (or (/= (the fixnum (ansi-stream-in-index in))
956 +ansi-stream-in-buffer-length+)
957 (funcall (ansi-stream-misc in) in :listen))
958 (listen in)))
959 ((:finish-output :force-output :clear-output)
960 (if out-ansi-stream-p
961 (funcall (ansi-stream-misc out) out operation arg1 arg2)
962 (stream-misc-dispatch out operation arg1 arg2)))
963 (:clear-input (clear-input in))
964 (:unread (unread-char arg1 in))
965 (:element-type
966 (let ((in-type (stream-element-type in))
967 (out-type (stream-element-type out)))
968 (if (equal in-type out-type)
969 in-type `(and ,in-type ,out-type))))
970 (:close
971 (set-closed-flame stream))
973 (or (if in-ansi-stream-p
974 (funcall (ansi-stream-misc in) in operation arg1 arg2)
975 (stream-misc-dispatch in operation arg1 arg2))
976 (if out-ansi-stream-p
977 (funcall (ansi-stream-misc out) out operation arg1 arg2)
978 (stream-misc-dispatch out operation arg1 arg2)))))))
980 ;;;; concatenated streams
982 (defstruct (concatenated-stream
983 (:include ansi-stream
984 (in #'concatenated-in)
985 (bin #'concatenated-bin)
986 (n-bin #'concatenated-n-bin)
987 (misc #'concatenated-misc))
988 (:constructor %make-concatenated-stream (&rest streams))
989 (:copier nil))
990 ;; The car of this is the substream we are reading from now.
991 (streams nil :type list))
992 (def!method print-object ((x concatenated-stream) stream)
993 (print-unreadable-object (x stream :type t :identity t)
994 (format stream
995 ":STREAMS ~S"
996 (concatenated-stream-streams x))))
998 (defun make-concatenated-stream (&rest streams)
999 #!+sb-doc
1000 "Return a stream which takes its input from each of the streams in turn,
1001 going on to the next at EOF."
1002 (dolist (stream streams)
1003 (unless (input-stream-p stream)
1004 (error 'type-error
1005 :datum stream
1006 :expected-type '(satisfies input-stream-p))))
1007 (apply #'%make-concatenated-stream streams))
1009 (macrolet ((in-fun (name fun)
1010 `(defun ,name (stream eof-error-p eof-value)
1011 (do ((streams (concatenated-stream-streams stream)
1012 (cdr streams)))
1013 ((null streams)
1014 (eof-or-lose stream eof-error-p eof-value))
1015 (let* ((stream (car streams))
1016 (result (,fun stream nil nil)))
1017 (when result (return result)))
1018 (pop (concatenated-stream-streams stream))))))
1019 (in-fun concatenated-in read-char)
1020 (in-fun concatenated-bin read-byte))
1022 (defun concatenated-n-bin (stream buffer start numbytes eof-errorp)
1023 (do ((streams (concatenated-stream-streams stream) (cdr streams))
1024 (current-start start)
1025 (remaining-bytes numbytes))
1026 ((null streams)
1027 (if eof-errorp
1028 (error 'end-of-file :stream stream)
1029 (- numbytes remaining-bytes)))
1030 (let* ((stream (car streams))
1031 (bytes-read (read-n-bytes stream buffer current-start
1032 remaining-bytes nil)))
1033 (incf current-start bytes-read)
1034 (decf remaining-bytes bytes-read)
1035 (when (zerop remaining-bytes) (return numbytes)))
1036 (setf (concatenated-stream-streams stream) (cdr streams))))
1038 (defun concatenated-misc (stream operation &optional arg1 arg2)
1039 (let* ((left (concatenated-stream-streams stream))
1040 (current (car left)))
1041 (case operation
1042 (:listen
1043 (unless left
1044 (return-from concatenated-misc :eof))
1045 (loop
1046 (let ((stuff (if (ansi-stream-p current)
1047 (funcall (ansi-stream-misc current) current
1048 :listen)
1049 (stream-misc-dispatch current :listen))))
1050 (cond ((eq stuff :eof)
1051 ;; Advance STREAMS, and try again.
1052 (pop (concatenated-stream-streams stream))
1053 (setf current
1054 (car (concatenated-stream-streams stream)))
1055 (unless current
1056 ;; No further streams. EOF.
1057 (return :eof)))
1058 (stuff
1059 ;; Stuff's available.
1060 (return t))
1062 ;; Nothing is available yet.
1063 (return nil))))))
1064 (:clear-input (when left (clear-input current)))
1065 (:unread (when left (unread-char arg1 current)))
1066 (:close
1067 (set-closed-flame stream))
1069 (when left
1070 (if (ansi-stream-p current)
1071 (funcall (ansi-stream-misc current) current operation arg1 arg2)
1072 (stream-misc-dispatch current operation arg1 arg2)))))))
1074 ;;;; echo streams
1076 (defstruct (echo-stream
1077 (:include two-way-stream
1078 (in #'echo-in)
1079 (bin #'echo-bin)
1080 (misc #'echo-misc)
1081 (n-bin #'echo-n-bin))
1082 (:constructor %make-echo-stream (input-stream output-stream))
1083 (:copier nil))
1084 (unread-stuff nil :type boolean))
1085 (def!method print-object ((x echo-stream) stream)
1086 (print-unreadable-object (x stream :type t :identity t)
1087 (format stream
1088 ":INPUT-STREAM ~S :OUTPUT-STREAM ~S"
1089 (two-way-stream-input-stream x)
1090 (two-way-stream-output-stream x))))
1092 (defun make-echo-stream (input-stream output-stream)
1093 #!+sb-doc
1094 "Return a bidirectional stream which gets its input from INPUT-STREAM and
1095 sends its output to OUTPUT-STREAM. In addition, all input is echoed to
1096 the output stream."
1097 (unless (output-stream-p output-stream)
1098 (error 'type-error
1099 :datum output-stream
1100 :expected-type '(satisfies output-stream-p)))
1101 (unless (input-stream-p input-stream)
1102 (error 'type-error
1103 :datum input-stream
1104 :expected-type '(satisfies input-stream-p)))
1105 (funcall #'%make-echo-stream input-stream output-stream))
1107 (macrolet ((in-fun (name in-fun out-fun &rest args)
1108 `(defun ,name (stream ,@args)
1109 (let* ((unread-stuff-p (echo-stream-unread-stuff stream))
1110 (in (echo-stream-input-stream stream))
1111 (out (echo-stream-output-stream stream))
1112 (result (if eof-error-p
1113 (,in-fun in ,@args)
1114 (,in-fun in nil in))))
1115 (setf (echo-stream-unread-stuff stream) nil)
1116 (cond
1117 ((eql result in) eof-value)
1118 ;; If unread-stuff was true, the character read
1119 ;; from the input stream was previously echoed.
1120 (t (unless unread-stuff-p (,out-fun result out)) result))))))
1121 (in-fun echo-in read-char write-char eof-error-p eof-value)
1122 (in-fun echo-bin read-byte write-byte eof-error-p eof-value))
1124 (defun echo-n-bin (stream buffer start numbytes eof-error-p)
1125 (let ((bytes-read 0))
1126 ;; Note: before ca 1.0.27.18, the logic for handling unread
1127 ;; characters never could have worked, so probably nobody has ever
1128 ;; tried doing bivalent block I/O through an echo stream; this may
1129 ;; not work either.
1130 (when (echo-stream-unread-stuff stream)
1131 (let* ((char (read-char stream))
1132 (octets (octets-to-string
1133 (string char)
1134 :external-format
1135 (stream-external-format
1136 (echo-stream-input-stream stream))))
1137 (octet-count (length octets))
1138 (blt-count (min octet-count numbytes)))
1139 (replace buffer octets :start1 start :end1 (+ start blt-count))
1140 (incf start blt-count)
1141 (decf numbytes blt-count)))
1142 (incf bytes-read (read-n-bytes (echo-stream-input-stream stream) buffer
1143 start numbytes nil))
1144 (cond
1145 ((not eof-error-p)
1146 (write-sequence buffer (echo-stream-output-stream stream)
1147 :start start :end (+ start bytes-read))
1148 bytes-read)
1149 ((> numbytes bytes-read)
1150 (write-sequence buffer (echo-stream-output-stream stream)
1151 :start start :end (+ start bytes-read))
1152 (error 'end-of-file :stream stream))
1154 (write-sequence buffer (echo-stream-output-stream stream)
1155 :start start :end (+ start bytes-read))
1156 (aver (= numbytes (+ start bytes-read)))
1157 numbytes))))
1159 ;;;; STRING-INPUT-STREAM stuff
1161 (defstruct (string-input-stream
1162 (:include ansi-stream
1163 (in #'string-inch)
1164 (bin #'ill-bin)
1165 (n-bin #'ill-bin)
1166 (misc #'string-in-misc))
1167 (:constructor internal-make-string-input-stream
1168 (string current end))
1169 (:copier nil))
1170 (string (missing-arg) :type simple-string)
1171 (current (missing-arg) :type index)
1172 (end (missing-arg) :type index))
1174 (defun string-inch (stream eof-error-p eof-value)
1175 (declare (type string-input-stream stream))
1176 (let ((string (string-input-stream-string stream))
1177 (index (string-input-stream-current stream)))
1178 (cond ((>= index (the index (string-input-stream-end stream)))
1179 (eof-or-lose stream eof-error-p eof-value))
1181 (setf (string-input-stream-current stream) (1+ index))
1182 (char string index)))))
1184 (defun string-binch (stream eof-error-p eof-value)
1185 (declare (type string-input-stream stream))
1186 (let ((string (string-input-stream-string stream))
1187 (index (string-input-stream-current stream)))
1188 (cond ((>= index (the index (string-input-stream-end stream)))
1189 (eof-or-lose stream eof-error-p eof-value))
1191 (setf (string-input-stream-current stream) (1+ index))
1192 (char-code (char string index))))))
1194 (defun string-stream-read-n-bytes (stream buffer start requested eof-error-p)
1195 (declare (type string-input-stream stream)
1196 (type index start requested))
1197 (let* ((string (string-input-stream-string stream))
1198 (index (string-input-stream-current stream))
1199 (available (- (string-input-stream-end stream) index))
1200 (copy (min available requested)))
1201 (declare (type simple-string string))
1202 (when (plusp copy)
1203 (setf (string-input-stream-current stream)
1204 (truly-the index (+ index copy)))
1205 ;; FIXME: why are we VECTOR-SAP'ing things here? what's the point?
1206 ;; and are there SB-UNICODE issues here as well? --njf, 2005-03-24
1207 (with-pinned-objects (string buffer)
1208 (system-area-ub8-copy (vector-sap string)
1209 index
1210 (if (typep buffer 'system-area-pointer)
1211 buffer
1212 (vector-sap buffer))
1213 start
1214 copy)))
1215 (if (and (> requested copy) eof-error-p)
1216 (error 'end-of-file :stream stream)
1217 copy)))
1219 (defun string-in-misc (stream operation &optional arg1 arg2)
1220 (declare (type string-input-stream stream)
1221 (ignore arg2))
1222 (case operation
1223 (:file-position
1224 (if arg1
1225 (setf (string-input-stream-current stream)
1226 (case arg1
1227 (:start 0)
1228 (:end (string-input-stream-end stream))
1229 ;; We allow moving position beyond EOF. Errors happen
1230 ;; on read, not move -- or the user may extend the
1231 ;; input string.
1232 (t arg1)))
1233 (string-input-stream-current stream)))
1234 ;; According to ANSI: "Should signal an error of type type-error
1235 ;; if stream is not a stream associated with a file."
1236 ;; This is checked by FILE-LENGTH, so no need to do it here either.
1237 ;; (:file-length (length (string-input-stream-string stream)))
1238 (:unread (decf (string-input-stream-current stream)))
1239 (:close (set-closed-flame stream))
1240 (:listen (or (/= (the index (string-input-stream-current stream))
1241 (the index (string-input-stream-end stream)))
1242 :eof))
1243 (:element-type (array-element-type (string-input-stream-string stream)))))
1245 (defun make-string-input-stream (string &optional (start 0) end)
1246 #!+sb-doc
1247 "Return an input stream which will supply the characters of STRING between
1248 START and END in order."
1249 (declare (type string string)
1250 (type index start)
1251 (type (or index null) end))
1252 (let* ((string (coerce string '(simple-array character (*)))))
1253 ;; FIXME: Why WITH-ARRAY-DATA, since the array is already simple?
1254 (with-array-data ((string string) (start start) (end end))
1255 (internal-make-string-input-stream
1256 string ;; now simple
1257 start
1258 end))))
1260 ;;;; STRING-OUTPUT-STREAM stuff
1261 ;;;;
1262 ;;;; FIXME: This, like almost none of the stream code is particularly
1263 ;;;; interrupt or thread-safe. While it should not be possible to
1264 ;;;; corrupt the heap here, it certainly is possible to end up with
1265 ;;;; a string-output-stream whose internal state is messed up.
1266 ;;;;
1267 ;;;; FIXME: It would be nice to support space-efficient
1268 ;;;; string-output-streams with element-type base-char. This would
1269 ;;;; mean either a separate subclass, or typecases in functions.
1271 (defparameter *string-output-stream-buffer-initial-size* 64)
1273 #!-sb-fluid
1274 (declaim (inline string-output-string-stream-buffer
1275 string-output-string-stream-pointer
1276 string-output-string-stream-index))
1277 (defstruct (string-output-stream
1278 (:include ansi-stream
1279 (out #'string-ouch)
1280 (sout #'string-sout)
1281 (misc #'string-out-misc))
1282 (:constructor make-string-output-stream
1283 (&key (element-type 'character)
1284 &aux (buffer
1285 (make-string
1286 *string-output-stream-buffer-initial-size*))))
1287 (:copier nil))
1288 ;; The string we throw stuff in.
1289 (buffer (missing-arg) :type (simple-array character (*)))
1290 ;; Chains of buffers to use
1291 (prev nil)
1292 (next nil)
1293 ;; Index of the next location to use in the current string.
1294 (pointer 0 :type index)
1295 ;; Global location in the stream
1296 (index 0 :type index)
1297 ;; Index cache: when we move backwards we save the greater of this
1298 ;; and index here, so the greater of index and this is always the
1299 ;; end of the stream.
1300 (index-cache 0 :type index)
1301 ;; Requested element type
1302 (element-type 'character))
1304 #!+sb-doc
1305 (setf (fdocumentation 'make-string-output-stream 'function)
1306 "Return an output stream which will accumulate all output given it for the
1307 benefit of the function GET-OUTPUT-STREAM-STRING.")
1309 ;;; Pushes the current segment onto the prev-list, and either pops
1310 ;;; or allocates a new one.
1311 (defun string-output-stream-new-buffer (stream size)
1312 (declare (index size))
1313 (/show0 "/string-output-stream-new-buffer")
1314 (push (string-output-stream-buffer stream)
1315 (string-output-stream-prev stream))
1316 (setf (string-output-stream-buffer stream)
1317 (or (pop (string-output-stream-next stream))
1318 ;; FIXME: This would be the correct place to detect that
1319 ;; more then FIXNUM characters are being written to the
1320 ;; stream, and do something about it.
1321 (make-string size))))
1323 ;;; Moves to the end of the next segment or the current one if there are
1324 ;;; no more segments. Returns true as long as there are next segments.
1325 (defun string-output-stream-next-buffer (stream)
1326 (/show0 "/string-output-stream-next-buffer")
1327 (let* ((old (string-output-stream-buffer stream))
1328 (new (pop (string-output-stream-next stream)))
1329 (old-size (length old))
1330 (skipped (- old-size (string-output-stream-pointer stream))))
1331 (cond (new
1332 (let ((new-size (length new)))
1333 (push old (string-output-stream-prev stream))
1334 (setf (string-output-stream-buffer stream) new
1335 (string-output-stream-pointer stream) new-size)
1336 (incf (string-output-stream-index stream) (+ skipped new-size)))
1339 (setf (string-output-stream-pointer stream) old-size)
1340 (incf (string-output-stream-index stream) skipped)
1341 nil))))
1343 ;;; Moves to the start of the previous segment or the current one if there
1344 ;;; are no more segments. Returns true as long as there are prev segments.
1345 (defun string-output-stream-prev-buffer (stream)
1346 (/show0 "/string-output-stream-prev-buffer")
1347 (let ((old (string-output-stream-buffer stream))
1348 (new (pop (string-output-stream-prev stream)))
1349 (skipped (string-output-stream-pointer stream)))
1350 (cond (new
1351 (push old (string-output-stream-next stream))
1352 (setf (string-output-stream-buffer stream) new
1353 (string-output-stream-pointer stream) 0)
1354 (decf (string-output-stream-index stream) (+ skipped (length new)))
1357 (setf (string-output-stream-pointer stream) 0)
1358 (decf (string-output-stream-index stream) skipped)
1359 nil))))
1361 (defun string-ouch (stream character)
1362 (/show0 "/string-ouch")
1363 (let ((pointer (string-output-stream-pointer stream))
1364 (buffer (string-output-stream-buffer stream))
1365 (index (string-output-stream-index stream)))
1366 (cond ((= pointer (length buffer))
1367 (setf buffer (string-output-stream-new-buffer stream index)
1368 (aref buffer 0) character
1369 (string-output-stream-pointer stream) 1))
1371 (setf (aref buffer pointer) character
1372 (string-output-stream-pointer stream) (1+ pointer))))
1373 (setf (string-output-stream-index stream) (1+ index))))
1375 (defun string-sout (stream string start end)
1376 (declare (type simple-string string)
1377 (type index start end))
1378 (let* ((full-length (- end start))
1379 (length full-length)
1380 (buffer (string-output-stream-buffer stream))
1381 (pointer (string-output-stream-pointer stream))
1382 (space (- (length buffer) pointer))
1383 (here (min space length))
1384 (stop (+ start here))
1385 (overflow (- length space)))
1386 (declare (index length space here stop full-length)
1387 (fixnum overflow)
1388 (type (simple-array character (*)) buffer))
1389 (tagbody
1390 :more
1391 (when (plusp here)
1392 (etypecase string
1393 ((simple-array character (*))
1394 (replace buffer string :start1 pointer :start2 start :end2 stop))
1395 (simple-base-string
1396 (replace buffer string :start1 pointer :start2 start :end2 stop))
1397 ((simple-array nil (*))
1398 (replace buffer string :start1 pointer :start2 start :end2 stop)))
1399 (setf (string-output-stream-pointer stream) (+ here pointer)))
1400 (when (plusp overflow)
1401 (setf start stop
1402 length (- end start)
1403 buffer (string-output-stream-new-buffer
1404 stream (max overflow (string-output-stream-index stream)))
1405 pointer 0
1406 space (length buffer)
1407 here (min space length)
1408 stop (+ start here)
1409 ;; there may be more overflow if we used a buffer
1410 ;; already allocated to the stream
1411 overflow (- length space))
1412 (go :more)))
1413 (incf (string-output-stream-index stream) full-length)))
1415 ;;; Factored out of the -misc method due to size.
1416 (defun set-string-output-stream-file-position (stream pos)
1417 (let* ((index (string-output-stream-index stream))
1418 (end (max index (string-output-stream-index-cache stream))))
1419 (declare (index index end))
1420 (setf (string-output-stream-index-cache stream) end)
1421 (cond ((eq :start pos)
1422 (loop while (string-output-stream-prev-buffer stream)))
1423 ((eq :end pos)
1424 (loop while (string-output-stream-next-buffer stream))
1425 (let ((over (- (string-output-stream-index stream) end)))
1426 (decf (string-output-stream-pointer stream) over))
1427 (setf (string-output-stream-index stream) end))
1428 ((< pos index)
1429 (loop while (< pos index)
1430 do (string-output-stream-prev-buffer stream)
1431 (setf index (string-output-stream-index stream)))
1432 (let ((step (- pos index)))
1433 (incf (string-output-stream-pointer stream) step)
1434 (setf (string-output-stream-index stream) pos)))
1435 ((> pos index)
1436 ;; We allow moving beyond the end of stream, implicitly
1437 ;; extending the output stream.
1438 (let ((next (string-output-stream-next-buffer stream)))
1439 ;; Update after -next-buffer, INDEX is kept pointing at
1440 ;; the end of the current buffer.
1441 (setf index (string-output-stream-index stream))
1442 (loop while (and next (> pos index))
1443 do (setf next (string-output-stream-next-buffer stream)
1444 index (string-output-stream-index stream))))
1445 ;; Allocate new buffer if needed, or step back to
1446 ;; the desired index and set pointer and index
1447 ;; correctly.
1448 (let ((diff (- pos index)))
1449 (if (plusp diff)
1450 (let* ((new (string-output-stream-new-buffer stream diff))
1451 (size (length new)))
1452 (aver (= pos (+ index size)))
1453 (setf (string-output-stream-pointer stream) size
1454 (string-output-stream-index stream) pos))
1455 (let ((size (length (string-output-stream-buffer stream))))
1456 (setf (string-output-stream-pointer stream) (+ size diff)
1457 (string-output-stream-index stream) pos))))))))
1459 (defun string-out-misc (stream operation &optional arg1 arg2)
1460 (declare (ignore arg2))
1461 (case operation
1462 (:charpos
1463 ;; Keeping this first is a silly micro-optimization: FRESH-LINE
1464 ;; makes this the most common one.
1465 (/show0 "/string-out-misc charpos")
1466 (prog ((pointer (string-output-stream-pointer stream))
1467 (buffer (string-output-stream-buffer stream))
1468 (prev (string-output-stream-prev stream))
1469 (base 0))
1470 :next
1471 (let ((pos (position #\newline buffer :from-end t :end pointer)))
1472 (when (or pos (not buffer))
1473 ;; If newline is at index I, and pointer at index I+N, charpos
1474 ;; is N-1. If there is no newline, and pointer is at index N,
1475 ;; charpos is N.
1476 (return (+ base (if pos (- pointer pos 1) pointer))))
1477 (setf base (+ base pointer)
1478 buffer (pop prev)
1479 pointer (length buffer))
1480 (/show0 "/string-out-misc charpos next")
1481 (go :next))))
1482 (:file-position
1483 (/show0 "/string-out-misc file-position")
1484 (when arg1
1485 (set-string-output-stream-file-position stream arg1))
1486 (string-output-stream-index stream))
1487 (:close
1488 (/show0 "/string-out-misc close")
1489 (set-closed-flame stream))
1490 (:element-type (string-output-stream-element-type stream))))
1492 ;;; Return a string of all the characters sent to a stream made by
1493 ;;; MAKE-STRING-OUTPUT-STREAM since the last call to this function.
1494 (defun get-output-stream-string (stream)
1495 (declare (type string-output-stream stream))
1496 (let* ((length (max (string-output-stream-index stream)
1497 (string-output-stream-index-cache stream)))
1498 (element-type (string-output-stream-element-type stream))
1499 (prev (string-output-stream-prev stream))
1500 (this (string-output-stream-buffer stream))
1501 (next (string-output-stream-next stream))
1502 (result
1503 (case element-type
1504 ;; overwhelmingly common case: can be inlined
1506 ;; FIXME: If we were willing to use %SHRINK-VECTOR here,
1507 ;; and allocate new strings the size of 2 * index in
1508 ;; STRING-SOUT, we would not need to allocate one here in
1509 ;; the common case, but could just use the last one
1510 ;; allocated, and chop it down to size..
1512 ((character) (make-string length))
1513 ;; slightly less common cases: inline it anyway
1514 ((base-char standard-char)
1515 (make-string length :element-type 'base-char))
1517 (make-string length :element-type element-type)))))
1519 (setf (string-output-stream-index stream) 0
1520 (string-output-stream-index-cache stream) 0
1521 (string-output-stream-pointer stream) 0
1522 ;; throw them away for simplicity's sake: this way the rest of the
1523 ;; implementation can assume that the greater of INDEX and INDEX-CACHE
1524 ;; is always within the last buffer.
1525 (string-output-stream-prev stream) nil
1526 (string-output-stream-next stream) nil)
1528 (flet ((replace-all (fun)
1529 (let ((start 0))
1530 (declare (index start))
1531 (setf prev (nreverse prev))
1532 (dolist (buffer prev)
1533 (funcall fun buffer start)
1534 (incf start (length buffer)))
1535 (funcall fun this start)
1536 (incf start (length this))
1537 (dolist (buffer next)
1538 (funcall fun buffer start)
1539 (incf start (length buffer)))
1540 ;; Hack: erase the pointers to strings, to make it less
1541 ;; likely that the conservative GC will accidentally
1542 ;; retain the buffers.
1543 (fill prev nil)
1544 (fill next nil))))
1545 (macrolet ((frob (type)
1546 `(replace-all (lambda (buffer from)
1547 (declare (type ,type result)
1548 (type (simple-array character (*))
1549 buffer))
1550 (replace result buffer :start1 from)))))
1551 (etypecase result
1552 ((simple-array character (*))
1553 (frob (simple-array character (*))))
1554 (simple-base-string
1555 (frob simple-base-string))
1556 ((simple-array nil (*))
1557 (frob (simple-array nil (*)))))))
1559 result))
1561 ;;;; fill-pointer streams
1563 ;;; Fill pointer STRING-OUTPUT-STREAMs are not explicitly mentioned in
1564 ;;; the CLM, but they are required for the implementation of
1565 ;;; WITH-OUTPUT-TO-STRING.
1567 ;;; FIXME: need to support (VECTOR NIL), ideally without destroying all hope
1568 ;;; of efficiency.
1569 (deftype string-with-fill-pointer ()
1570 '(and (or (vector character) (vector base-char))
1571 (satisfies array-has-fill-pointer-p)))
1573 (defstruct (fill-pointer-output-stream
1574 (:include ansi-stream
1575 (out #'fill-pointer-ouch)
1576 (sout #'fill-pointer-sout)
1577 (misc #'fill-pointer-misc))
1578 (:constructor make-fill-pointer-output-stream (string))
1579 (:copier nil))
1580 ;; a string with a fill pointer where we stuff the stuff we write
1581 (string (missing-arg) :type string-with-fill-pointer :read-only t))
1583 (defun fill-pointer-ouch (stream character)
1584 (let* ((buffer (fill-pointer-output-stream-string stream))
1585 (current (fill-pointer buffer))
1586 (current+1 (1+ current)))
1587 (declare (fixnum current))
1588 (with-array-data ((workspace buffer) (start) (end))
1589 (string-dispatch
1590 ((simple-array character (*))
1591 (simple-array base-char (*)))
1592 workspace
1593 (let ((offset-current (+ start current)))
1594 (declare (fixnum offset-current))
1595 (if (= offset-current end)
1596 (let* ((new-length (1+ (* current 2)))
1597 (new-workspace
1598 (ecase (array-element-type workspace)
1599 (character (make-string new-length
1600 :element-type 'character))
1601 (base-char (make-string new-length
1602 :element-type 'base-char)))))
1603 (replace new-workspace workspace :start2 start :end2 offset-current)
1604 (setf workspace new-workspace
1605 offset-current current)
1606 (set-array-header buffer workspace new-length
1607 current+1 0 new-length nil))
1608 (setf (fill-pointer buffer) current+1))
1609 (setf (char workspace offset-current) character))))
1610 current+1))
1612 (defun fill-pointer-sout (stream string start end)
1613 (declare (fixnum start end))
1614 (string-dispatch
1615 ((simple-array character (*))
1616 (simple-array base-char (*)))
1617 string
1618 (let* ((buffer (fill-pointer-output-stream-string stream))
1619 (current (fill-pointer buffer))
1620 (string-len (- end start))
1621 (dst-end (+ string-len current)))
1622 (declare (fixnum current dst-end string-len))
1623 (with-array-data ((workspace buffer) (dst-start) (dst-length))
1624 (let ((offset-dst-end (+ dst-start dst-end))
1625 (offset-current (+ dst-start current)))
1626 (declare (fixnum offset-dst-end offset-current))
1627 (if (> offset-dst-end dst-length)
1628 (let* ((new-length (+ (the fixnum (* current 2)) string-len))
1629 (new-workspace
1630 (ecase (array-element-type workspace)
1631 (character (make-string new-length
1632 :element-type 'character))
1633 (base-char (make-string new-length
1634 :element-type 'base-char)))))
1635 (replace new-workspace workspace
1636 :start2 dst-start :end2 offset-current)
1637 (setf workspace new-workspace
1638 offset-current current
1639 offset-dst-end dst-end)
1640 (set-array-header buffer workspace new-length
1641 dst-end 0 new-length nil))
1642 (setf (fill-pointer buffer) dst-end))
1643 (replace workspace string
1644 :start1 offset-current :start2 start :end2 end)))
1645 dst-end)))
1647 (defun fill-pointer-misc (stream operation &optional arg1 arg2)
1648 (declare (ignore arg2))
1649 (case operation
1650 (:file-position
1651 (let ((buffer (fill-pointer-output-stream-string stream)))
1652 (if arg1
1653 (setf (fill-pointer buffer)
1654 (case arg1
1655 (:start 0)
1656 ;; Fill-pointer is always at fill-pointer we will
1657 ;; make :END move to the end of the actual string.
1658 (:end (array-total-size buffer))
1659 ;; We allow moving beyond the end of string if the
1660 ;; string is adjustable.
1661 (t (when (>= arg1 (array-total-size buffer))
1662 (if (adjustable-array-p buffer)
1663 (adjust-array buffer arg1)
1664 (error "Cannot move FILE-POSITION beyond the end ~
1665 of WITH-OUTPUT-TO-STRING stream ~
1666 constructed with non-adjustable string.")))
1667 arg1)))
1668 (fill-pointer buffer))))
1669 (:charpos
1670 (let* ((buffer (fill-pointer-output-stream-string stream))
1671 (current (fill-pointer buffer)))
1672 (with-array-data ((string buffer) (start) (end current))
1673 (declare (simple-string string) (ignore start))
1674 (let ((found (position #\newline string :test #'char=
1675 :end end :from-end t)))
1676 (if found
1677 (- end (the fixnum found))
1678 current)))))
1679 (:element-type
1680 (array-element-type
1681 (fill-pointer-output-stream-string stream)))))
1683 ;;;; case frobbing streams, used by FORMAT ~(...~)
1685 (defstruct (case-frob-stream
1686 (:include ansi-stream
1687 (misc #'case-frob-misc))
1688 (:constructor %make-case-frob-stream (target out sout))
1689 (:copier nil))
1690 (target (missing-arg) :type stream))
1692 (defun make-case-frob-stream (target kind)
1693 #!+sb-doc
1694 "Return a stream that sends all output to the stream TARGET, but modifies
1695 the case of letters, depending on KIND, which should be one of:
1696 :UPCASE - convert to upper case.
1697 :DOWNCASE - convert to lower case.
1698 :CAPITALIZE - convert the first letter of words to upper case and the
1699 rest of the word to lower case.
1700 :CAPITALIZE-FIRST - convert the first letter of the first word to upper
1701 case and everything else to lower case."
1702 (declare (type stream target)
1703 (type (member :upcase :downcase :capitalize :capitalize-first)
1704 kind)
1705 (values stream))
1706 (if (case-frob-stream-p target)
1707 ;; If we are going to be writing to a stream that already does
1708 ;; case frobbing, why bother frobbing the case just so it can
1709 ;; frob it again?
1710 target
1711 (multiple-value-bind (out sout)
1712 (ecase kind
1713 (:upcase
1714 (values #'case-frob-upcase-out
1715 #'case-frob-upcase-sout))
1716 (:downcase
1717 (values #'case-frob-downcase-out
1718 #'case-frob-downcase-sout))
1719 (:capitalize
1720 (values #'case-frob-capitalize-out
1721 #'case-frob-capitalize-sout))
1722 (:capitalize-first
1723 (values #'case-frob-capitalize-first-out
1724 #'case-frob-capitalize-first-sout)))
1725 (%make-case-frob-stream target out sout))))
1727 (defun case-frob-misc (stream op &optional arg1 arg2)
1728 (declare (type case-frob-stream stream))
1729 (case op
1730 (:close
1731 (set-closed-flame stream))
1733 (let ((target (case-frob-stream-target stream)))
1734 (if (ansi-stream-p target)
1735 (funcall (ansi-stream-misc target) target op arg1 arg2)
1736 (stream-misc-dispatch target op arg1 arg2))))))
1738 (defun case-frob-upcase-out (stream char)
1739 (declare (type case-frob-stream stream)
1740 (type character char))
1741 (let ((target (case-frob-stream-target stream))
1742 (char (char-upcase char)))
1743 (if (ansi-stream-p target)
1744 (funcall (ansi-stream-out target) target char)
1745 (stream-write-char target char))))
1747 (defun case-frob-upcase-sout (stream str start end)
1748 (declare (type case-frob-stream stream)
1749 (type simple-string str)
1750 (type index start)
1751 (type (or index null) end))
1752 (let* ((target (case-frob-stream-target stream))
1753 (len (length str))
1754 (end (or end len))
1755 (string (if (and (zerop start) (= len end))
1756 (string-upcase str)
1757 (nstring-upcase (subseq str start end))))
1758 (string-len (- end start)))
1759 (if (ansi-stream-p target)
1760 (funcall (ansi-stream-sout target) target string 0 string-len)
1761 (stream-write-string target string 0 string-len))))
1763 (defun case-frob-downcase-out (stream char)
1764 (declare (type case-frob-stream stream)
1765 (type character char))
1766 (let ((target (case-frob-stream-target stream))
1767 (char (char-downcase char)))
1768 (if (ansi-stream-p target)
1769 (funcall (ansi-stream-out target) target char)
1770 (stream-write-char target char))))
1772 (defun case-frob-downcase-sout (stream str start end)
1773 (declare (type case-frob-stream stream)
1774 (type simple-string str)
1775 (type index start)
1776 (type (or index null) end))
1777 (let* ((target (case-frob-stream-target stream))
1778 (len (length str))
1779 (end (or end len))
1780 (string (if (and (zerop start) (= len end))
1781 (string-downcase str)
1782 (nstring-downcase (subseq str start end))))
1783 (string-len (- end start)))
1784 (if (ansi-stream-p target)
1785 (funcall (ansi-stream-sout target) target string 0 string-len)
1786 (stream-write-string target string 0 string-len))))
1788 (defun case-frob-capitalize-out (stream char)
1789 (declare (type case-frob-stream stream)
1790 (type character char))
1791 (let ((target (case-frob-stream-target stream)))
1792 (cond ((alphanumericp char)
1793 (let ((char (char-upcase char)))
1794 (if (ansi-stream-p target)
1795 (funcall (ansi-stream-out target) target char)
1796 (stream-write-char target char)))
1797 (setf (case-frob-stream-out stream) #'case-frob-capitalize-aux-out)
1798 (setf (case-frob-stream-sout stream)
1799 #'case-frob-capitalize-aux-sout))
1801 (if (ansi-stream-p target)
1802 (funcall (ansi-stream-out target) target char)
1803 (stream-write-char target char))))))
1805 (defun case-frob-capitalize-sout (stream str start end)
1806 (declare (type case-frob-stream stream)
1807 (type simple-string str)
1808 (type index start)
1809 (type (or index null) end))
1810 (let* ((target (case-frob-stream-target stream))
1811 (str (subseq str start end))
1812 (len (length str))
1813 (inside-word nil))
1814 (dotimes (i len)
1815 (let ((char (schar str i)))
1816 (cond ((not (alphanumericp char))
1817 (setf inside-word nil))
1818 (inside-word
1819 (setf (schar str i) (char-downcase char)))
1821 (setf inside-word t)
1822 (setf (schar str i) (char-upcase char))))))
1823 (when inside-word
1824 (setf (case-frob-stream-out stream)
1825 #'case-frob-capitalize-aux-out)
1826 (setf (case-frob-stream-sout stream)
1827 #'case-frob-capitalize-aux-sout))
1828 (if (ansi-stream-p target)
1829 (funcall (ansi-stream-sout target) target str 0 len)
1830 (stream-write-string target str 0 len))))
1832 (defun case-frob-capitalize-aux-out (stream char)
1833 (declare (type case-frob-stream stream)
1834 (type character char))
1835 (let ((target (case-frob-stream-target stream)))
1836 (cond ((alphanumericp char)
1837 (let ((char (char-downcase char)))
1838 (if (ansi-stream-p target)
1839 (funcall (ansi-stream-out target) target char)
1840 (stream-write-char target char))))
1842 (if (ansi-stream-p target)
1843 (funcall (ansi-stream-out target) target char)
1844 (stream-write-char target char))
1845 (setf (case-frob-stream-out stream)
1846 #'case-frob-capitalize-out)
1847 (setf (case-frob-stream-sout stream)
1848 #'case-frob-capitalize-sout)))))
1850 (defun case-frob-capitalize-aux-sout (stream str start end)
1851 (declare (type case-frob-stream stream)
1852 (type simple-string str)
1853 (type index start)
1854 (type (or index null) end))
1855 (let* ((target (case-frob-stream-target stream))
1856 (str (subseq str start end))
1857 (len (length str))
1858 (inside-word t))
1859 (dotimes (i len)
1860 (let ((char (schar str i)))
1861 (cond ((not (alphanumericp char))
1862 (setf inside-word nil))
1863 (inside-word
1864 (setf (schar str i) (char-downcase char)))
1866 (setf inside-word t)
1867 (setf (schar str i) (char-upcase char))))))
1868 (unless inside-word
1869 (setf (case-frob-stream-out stream)
1870 #'case-frob-capitalize-out)
1871 (setf (case-frob-stream-sout stream)
1872 #'case-frob-capitalize-sout))
1873 (if (ansi-stream-p target)
1874 (funcall (ansi-stream-sout target) target str 0 len)
1875 (stream-write-string target str 0 len))))
1877 (defun case-frob-capitalize-first-out (stream char)
1878 (declare (type case-frob-stream stream)
1879 (type character char))
1880 (let ((target (case-frob-stream-target stream)))
1881 (cond ((alphanumericp char)
1882 (let ((char (char-upcase char)))
1883 (if (ansi-stream-p target)
1884 (funcall (ansi-stream-out target) target char)
1885 (stream-write-char target char)))
1886 (setf (case-frob-stream-out stream)
1887 #'case-frob-downcase-out)
1888 (setf (case-frob-stream-sout stream)
1889 #'case-frob-downcase-sout))
1891 (if (ansi-stream-p target)
1892 (funcall (ansi-stream-out target) target char)
1893 (stream-write-char target char))))))
1895 (defun case-frob-capitalize-first-sout (stream str start end)
1896 (declare (type case-frob-stream stream)
1897 (type simple-string str)
1898 (type index start)
1899 (type (or index null) end))
1900 (let* ((target (case-frob-stream-target stream))
1901 (str (subseq str start end))
1902 (len (length str)))
1903 (dotimes (i len)
1904 (let ((char (schar str i)))
1905 (when (alphanumericp char)
1906 (setf (schar str i) (char-upcase char))
1907 (do ((i (1+ i) (1+ i)))
1908 ((= i len))
1909 (setf (schar str i) (char-downcase (schar str i))))
1910 (setf (case-frob-stream-out stream)
1911 #'case-frob-downcase-out)
1912 (setf (case-frob-stream-sout stream)
1913 #'case-frob-downcase-sout)
1914 (return))))
1915 (if (ansi-stream-p target)
1916 (funcall (ansi-stream-sout target) target str 0 len)
1917 (stream-write-string target str 0 len))))
1919 ;;;; READ-SEQUENCE
1921 (defun read-sequence (seq stream &key (start 0) end)
1922 #!+sb-doc
1923 "Destructively modify SEQ by reading elements from STREAM.
1924 That part of SEQ bounded by START and END is destructively modified by
1925 copying successive elements into it from STREAM. If the end of file
1926 for STREAM is reached before copying all elements of the subsequence,
1927 then the extra elements near the end of sequence are not updated, and
1928 the index of the next element is returned."
1929 (declare (type sequence seq)
1930 (type stream stream)
1931 (type index start)
1932 (type sequence-end end)
1933 (values index))
1934 (if (ansi-stream-p stream)
1935 (ansi-stream-read-sequence seq stream start end)
1936 ;; must be Gray streams FUNDAMENTAL-STREAM
1937 (stream-read-sequence stream seq start end)))
1939 (declaim (inline compatible-vector-and-stream-element-types-p))
1940 (defun compatible-vector-and-stream-element-types-p (vector stream)
1941 (declare (type vector vector)
1942 (type ansi-stream stream))
1943 (or (and (typep vector '(simple-array (unsigned-byte 8) (*)))
1944 (subtypep (stream-element-type stream) '(unsigned-byte 8)))
1945 (and (typep vector '(simple-array (signed-byte 8) (*)))
1946 (subtypep (stream-element-type stream) '(signed-byte 8)))))
1948 (defun ansi-stream-read-sequence (seq stream start %end)
1949 (declare (type sequence seq)
1950 (type ansi-stream stream)
1951 (type index start)
1952 (type sequence-end %end)
1953 (values index))
1954 (let ((end (or %end (length seq))))
1955 (declare (type index end))
1956 (etypecase seq
1957 (list
1958 (let ((read-function
1959 (if (subtypep (stream-element-type stream) 'character)
1960 #'ansi-stream-read-char
1961 #'ansi-stream-read-byte)))
1962 (do ((rem (nthcdr start seq) (rest rem))
1963 (i start (1+ i)))
1964 ((or (endp rem) (>= i end)) i)
1965 (declare (type list rem)
1966 (type index i))
1967 (let ((el (funcall read-function stream nil :eof nil)))
1968 (when (eq el :eof)
1969 (return i))
1970 (setf (first rem) el)))))
1971 (vector
1972 (with-array-data ((data seq) (offset-start start) (offset-end end)
1973 :check-fill-pointer t)
1974 (cond ((compatible-vector-and-stream-element-types-p data stream)
1975 (let* ((numbytes (- end start))
1976 (bytes-read (read-n-bytes stream data offset-start
1977 numbytes nil)))
1978 (if (< bytes-read numbytes)
1979 (+ start bytes-read)
1980 end)))
1981 ((and (ansi-stream-cin-buffer stream)
1982 (typep seq 'simple-string))
1983 (ansi-stream-read-string-from-frc-buffer seq stream
1984 start %end))
1986 (let ((read-function
1987 (if (subtypep (stream-element-type stream) 'character)
1988 ;; If the stream-element-type is CHARACTER,
1989 ;; this might be a bivalent stream. If the
1990 ;; sequence is a specialized unsigned-byte
1991 ;; vector, try to read use binary IO. It'll
1992 ;; signal an error if stream is an pure
1993 ;; character stream.
1994 (if (subtypep (array-element-type data)
1995 'unsigned-byte)
1996 #'ansi-stream-read-byte
1997 #'ansi-stream-read-char)
1998 #'ansi-stream-read-byte)))
1999 (do ((i offset-start (1+ i)))
2000 ((>= i offset-end) end)
2001 (declare (type index i))
2002 (let ((el (funcall read-function stream nil :eof nil)))
2003 (when (eq el :eof)
2004 (return (+ start (- i offset-start))))
2005 (setf (aref data i) el)))))))))))
2007 (defun ansi-stream-read-string-from-frc-buffer (seq stream start %end)
2008 (declare (type simple-string seq)
2009 (type ansi-stream stream)
2010 (type index start)
2011 (type (or null index) %end))
2012 (let ((needed (- (or %end (length seq))
2013 start))
2014 (read 0))
2015 (prepare-for-fast-read-char stream
2016 (declare (ignore %frc-method%))
2017 (unless %frc-buffer%
2018 (return-from ansi-stream-read-string-from-frc-buffer nil))
2019 (labels ((refill-buffer ()
2020 (prog1
2021 (fast-read-char-refill stream nil nil)
2022 (setf %frc-index% (ansi-stream-in-index %frc-stream%))))
2023 (add-chunk ()
2024 (let* ((end (length %frc-buffer%))
2025 (len (min (- end %frc-index%)
2026 (- needed read))))
2027 (declare (type index end len read needed))
2028 (string-dispatch (simple-base-string
2029 (simple-array character (*)))
2031 (replace seq %frc-buffer%
2032 :start1 (+ start read)
2033 :end1 (+ start read len)
2034 :start2 %frc-index%
2035 :end2 (+ %frc-index% len)))
2036 (incf read len)
2037 (incf %frc-index% len)
2038 (when (or (eql needed read)
2039 (refill-buffer))
2040 (done-with-fast-read-char)
2041 (return-from ansi-stream-read-string-from-frc-buffer
2042 (+ start read))))))
2043 (declare (inline refill-buffer))
2044 (when (and (= %frc-index% +ansi-stream-in-buffer-length+)
2045 (refill-buffer))
2046 ;; EOF had been reached before we read anything
2047 ;; at all. Return the EOF value or signal the error.
2048 (done-with-fast-read-char)
2049 (return-from ansi-stream-read-string-from-frc-buffer start))
2050 (loop (add-chunk))))))
2053 ;;;; WRITE-SEQUENCE
2055 (defun write-sequence (seq stream &key (start 0) (end nil))
2056 #!+sb-doc
2057 "Write the elements of SEQ bounded by START and END to STREAM."
2058 (declare (type sequence seq)
2059 (type stream stream)
2060 (type index start)
2061 (type sequence-end end)
2062 (values sequence))
2063 (if (ansi-stream-p stream)
2064 (ansi-stream-write-sequence seq stream start end)
2065 ;; must be Gray-streams FUNDAMENTAL-STREAM
2066 (stream-write-sequence stream seq start end)))
2068 (defun ansi-stream-write-sequence (seq stream start %end)
2069 (declare (type sequence seq)
2070 (type ansi-stream stream)
2071 (type index start)
2072 (type sequence-end %end)
2073 (values sequence))
2074 (let ((end (or %end (length seq))))
2075 (declare (type index end))
2076 (etypecase seq
2077 (list
2078 (let ((write-function
2079 (if (subtypep (stream-element-type stream) 'character)
2080 (ansi-stream-out stream)
2081 (ansi-stream-bout stream))))
2082 (do ((rem (nthcdr start seq) (rest rem))
2083 (i start (1+ i)))
2084 ((or (endp rem) (>= i end)))
2085 (declare (type list rem)
2086 (type index i))
2087 (funcall write-function stream (first rem)))))
2088 (string
2089 (%write-string seq stream start end))
2090 (vector
2091 (with-array-data ((data seq) (offset-start start) (offset-end end)
2092 :check-fill-pointer t)
2093 (labels
2094 ((output-seq-in-loop ()
2095 (let ((write-function
2096 (if (subtypep (stream-element-type stream) 'character)
2097 (lambda (stream object)
2098 ;; This might be a bivalent stream, so we need
2099 ;; to dispatch on a per-element basis, rather
2100 ;; than just based on the sequence or stream
2101 ;; element types.
2102 (if (characterp object)
2103 (funcall (ansi-stream-out stream)
2104 stream object)
2105 (funcall (ansi-stream-bout stream)
2106 stream object)))
2107 (ansi-stream-bout stream))))
2108 (do ((i offset-start (1+ i)))
2109 ((>= i offset-end))
2110 (declare (type index i))
2111 (funcall write-function stream (aref data i))))))
2112 (if (and (fd-stream-p stream)
2113 (compatible-vector-and-stream-element-types-p data stream))
2114 (buffer-output stream data offset-start offset-end)
2115 (output-seq-in-loop)))))))
2116 seq)
2118 ;;;; etc.