0.8.10.40:
[sbcl.git] / src / code / fd-stream.lisp
1 ;;;; streams for UNIX file descriptors
2
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.
11
12 (in-package "SB!IMPL")
13
14 ;;;; buffer manipulation routines
15
16 ;;; FIXME: Is it really good to maintain this pool separate from the
17 ;;; GC and the C malloc logic?
18 (defvar *available-buffers* ()
19   #!+sb-doc
20   "List of available buffers. Each buffer is an sap pointing to
21   bytes-per-buffer of memory.")
22
23 (defconstant bytes-per-buffer (* 4 1024)
24   #!+sb-doc
25   "Number of bytes per buffer.")
26
27 ;;; Return the next available buffer, creating one if necessary.
28 #!-sb-fluid (declaim (inline next-available-buffer))
29 (defun next-available-buffer ()
30   (if *available-buffers*
31       (pop *available-buffers*)
32       (allocate-system-memory bytes-per-buffer)))
33 \f
34 ;;;; the FILE-STREAM structure
35
36 (defstruct (file-stream
37             (:constructor %make-fd-stream)
38             ;; KLUDGE: in an ideal world, maybe we'd rewrite
39             ;; everything to use FILE-STREAM rather than simply
40             ;; providing this hack for compatibility with the old
41             ;; code.  However, CVS doesn't deal terribly well with
42             ;; file renaming, so for now we use this
43             ;; backward-compatibility feature.
44             (:conc-name fd-stream-)
45             (:predicate fd-stream-p)
46             (:include ansi-stream
47                       (misc #'fd-stream-misc-routine))
48             (:copier nil))
49
50   ;; the name of this stream
51   (name nil)
52   ;; the file this stream is for
53   (file nil)
54   ;; the backup file namestring for the old file, for :IF-EXISTS
55   ;; :RENAME or :RENAME-AND-DELETE.
56   (original nil :type (or simple-string null))
57   (delete-original nil)       ; for :if-exists :rename-and-delete
58   ;;; the number of bytes per element
59   (element-size 1 :type index)
60   ;; the type of element being transfered
61   (element-type 'base-char)   
62   ;; the Unix file descriptor
63   (fd -1 :type fixnum)        
64   ;; controls when the output buffer is flushed
65   (buffering :full :type (member :full :line :none))
66   ;; character position (if known)
67   (char-pos nil :type (or index null))
68   ;; T if input is waiting on FD. :EOF if we hit EOF.
69   (listen nil :type (member nil t :eof))
70
71   ;; the input buffer
72   (unread nil)
73   (ibuf-sap nil :type (or system-area-pointer null))
74   (ibuf-length nil :type (or index null))
75   (ibuf-head 0 :type index)
76   (ibuf-tail 0 :type index)
77
78   ;; the output buffer
79   (obuf-sap nil :type (or system-area-pointer null))
80   (obuf-length nil :type (or index null))
81   (obuf-tail 0 :type index)
82
83   ;; output flushed, but not written due to non-blocking io?
84   (output-later nil)
85   (handler nil)
86   ;; timeout specified for this stream, or NIL if none
87   (timeout nil :type (or index null))
88   ;; pathname of the file this stream is opened to (returned by PATHNAME)
89   (pathname nil :type (or pathname null)))
90 (def!method print-object ((fd-stream file-stream) stream)
91   (declare (type stream stream))
92   (print-unreadable-object (fd-stream stream :type t :identity t)
93     (format stream "for ~S" (fd-stream-name fd-stream))))
94 \f
95 ;;;; output routines and related noise
96
97 (defvar *output-routines* ()
98   #!+sb-doc
99   "List of all available output routines. Each element is a list of the
100   element-type output, the kind of buffering, the function name, and the number
101   of bytes per element.")
102
103 ;;; common idioms for reporting low-level stream and file problems
104 (defun simple-stream-perror (note-format stream errno)
105   (error 'simple-stream-error
106          :stream stream
107          :format-control "~@<~?: ~2I~_~A~:>"
108          :format-arguments (list note-format (list stream) (strerror errno))))
109 (defun simple-file-perror (note-format pathname errno)
110   (error 'simple-file-error
111          :pathname pathname
112          :format-control "~@<~?: ~2I~_~A~:>"
113          :format-arguments
114          (list note-format (list pathname) (strerror errno))))
115
116 ;;; This is called by the server when we can write to the given file
117 ;;; descriptor. Attempt to write the data again. If it worked, remove
118 ;;; the data from the OUTPUT-LATER list. If it didn't work, something
119 ;;; is wrong.
120 (defun frob-output-later (stream)
121   (let* ((stuff (pop (fd-stream-output-later stream)))
122          (base (car stuff))
123          (start (cadr stuff))
124          (end (caddr stuff))
125          (reuse-sap (cadddr stuff))
126          (length (- end start)))
127     (declare (type index start end length))
128     (multiple-value-bind (count errno)
129         (sb!unix:unix-write (fd-stream-fd stream)
130                             base
131                             start
132                             length)
133       (cond ((not count)
134              (if (= errno sb!unix:ewouldblock)
135                  (error "Write would have blocked, but SERVER told us to go.")
136                  (simple-stream-perror "couldn't write to ~S" stream errno)))
137             ((eql count length) ; Hot damn, it worked.
138              (when reuse-sap
139                (push base *available-buffers*)))
140             ((not (null count)) ; sorta worked..
141              (push (list base
142                          (the index (+ start count))
143                          end)
144                    (fd-stream-output-later stream))))))
145   (unless (fd-stream-output-later stream)
146     (sb!sys:remove-fd-handler (fd-stream-handler stream))
147     (setf (fd-stream-handler stream) nil)))
148
149 ;;; Arange to output the string when we can write on the file descriptor.
150 (defun output-later (stream base start end reuse-sap)
151   (cond ((null (fd-stream-output-later stream))
152          (setf (fd-stream-output-later stream)
153                (list (list base start end reuse-sap)))
154          (setf (fd-stream-handler stream)
155                (sb!sys:add-fd-handler (fd-stream-fd stream)
156                                       :output
157                                       (lambda (fd)
158                                         (declare (ignore fd))
159                                         (frob-output-later stream)))))
160         (t
161          (nconc (fd-stream-output-later stream)
162                 (list (list base start end reuse-sap)))))
163   (when reuse-sap
164     (let ((new-buffer (next-available-buffer)))
165       (setf (fd-stream-obuf-sap stream) new-buffer)
166       (setf (fd-stream-obuf-length stream) bytes-per-buffer))))
167
168 ;;; Output the given noise. Check to see whether there are any pending
169 ;;; writes. If so, just queue this one. Otherwise, try to write it. If
170 ;;; this would block, queue it.
171 (defun frob-output (stream base start end reuse-sap)
172   (declare (type file-stream stream)
173            (type (or system-area-pointer (simple-array * (*))) base)
174            (type index start end))
175   (if (not (null (fd-stream-output-later stream))) ; something buffered.
176       (progn
177         (output-later stream base start end reuse-sap)
178         ;; ### check to see whether any of this noise can be output
179         )
180       (let ((length (- end start)))
181         (multiple-value-bind (count errno)
182             (sb!unix:unix-write (fd-stream-fd stream) base start length)
183           (cond ((not count)
184                  (if (= errno sb!unix:ewouldblock)
185                      (output-later stream base start end reuse-sap)
186                      (simple-stream-perror "couldn't write to ~S"
187                                            stream
188                                            errno)))
189                 ((not (eql count length))
190                  (output-later stream base (the index (+ start count))
191                                end reuse-sap)))))))
192
193 ;;; Flush any data in the output buffer.
194 (defun flush-output-buffer (stream)
195   (let ((length (fd-stream-obuf-tail stream)))
196     (unless (= length 0)
197       (frob-output stream (fd-stream-obuf-sap stream) 0 length t)
198       (setf (fd-stream-obuf-tail stream) 0))))
199
200 (defmacro output-wrapper ((stream size buffering) &body body)
201   (let ((stream-var (gensym)))
202     `(let ((,stream-var ,stream))
203       ,(unless (eq (car buffering) :none)
204          `(when (< (fd-stream-obuf-length ,stream-var)
205                    (+ (fd-stream-obuf-tail ,stream-var)
206                        ,size))
207             (flush-output-buffer ,stream-var)))
208       ,(unless (eq (car buffering) :none)
209          `(when (> (fd-stream-ibuf-tail ,stream-var)
210                    (fd-stream-ibuf-head ,stream-var))
211             (file-position ,stream-var (file-position ,stream-var))))
212     
213       ,@body
214       (incf (fd-stream-obuf-tail ,stream-var) ,size)
215       ,(ecase (car buffering)
216          (:none
217           `(flush-output-buffer ,stream-var))
218          (:line
219           `(when (eq (char-code byte) (char-code #\Newline))
220              (flush-output-buffer ,stream-var)))
221          (:full))
222     (values))))
223
224 ;;; Define output routines that output numbers SIZE bytes long for the
225 ;;; given bufferings. Use BODY to do the actual output.
226 (defmacro def-output-routines ((name-fmt size &rest bufferings) &body body)
227   (declare (optimize (speed 1)))
228   (cons 'progn
229         (mapcar
230             (lambda (buffering)
231               (let ((function
232                      (intern (let ((*print-case* :upcase))
233                                (format nil name-fmt (car buffering))))))
234                 `(progn
235                    (defun ,function (stream byte)
236                      (output-wrapper (stream ,size ,buffering)
237                        ,@body))
238                    (setf *output-routines*
239                          (nconc *output-routines*
240                                 ',(mapcar
241                                    (lambda (type)
242                                      (list type
243                                            (car buffering)
244                                            function
245                                            size))
246                                    (cdr buffering)))))))
247             bufferings)))
248
249 (def-output-routines ("OUTPUT-CHAR-~A-BUFFERED"
250                       1
251                       (:none character)
252                       (:line character)
253                       (:full character))
254   (if (and (base-char-p byte) (char= byte #\Newline))
255       (setf (fd-stream-char-pos stream) 0)
256       (incf (fd-stream-char-pos stream)))
257   (setf (sap-ref-8 (fd-stream-obuf-sap stream) (fd-stream-obuf-tail stream))
258         (char-code byte)))
259
260 (def-output-routines ("OUTPUT-UNSIGNED-BYTE-~A-BUFFERED"
261                       1
262                       (:none (unsigned-byte 8))
263                       (:full (unsigned-byte 8)))
264   (setf (sap-ref-8 (fd-stream-obuf-sap stream) (fd-stream-obuf-tail stream))
265         byte))
266
267 (def-output-routines ("OUTPUT-SIGNED-BYTE-~A-BUFFERED"
268                       1
269                       (:none (signed-byte 8))
270                       (:full (signed-byte 8)))
271   (setf (signed-sap-ref-8 (fd-stream-obuf-sap stream)
272                           (fd-stream-obuf-tail stream))
273         byte))
274
275 (def-output-routines ("OUTPUT-UNSIGNED-SHORT-~A-BUFFERED"
276                       2
277                       (:none (unsigned-byte 16))
278                       (:full (unsigned-byte 16)))
279   (setf (sap-ref-16 (fd-stream-obuf-sap stream) (fd-stream-obuf-tail stream))
280         byte))
281
282 (def-output-routines ("OUTPUT-SIGNED-SHORT-~A-BUFFERED"
283                       2
284                       (:none (signed-byte 16))
285                       (:full (signed-byte 16)))
286   (setf (signed-sap-ref-16 (fd-stream-obuf-sap stream)
287                            (fd-stream-obuf-tail stream))
288         byte))
289
290 (def-output-routines ("OUTPUT-UNSIGNED-LONG-~A-BUFFERED"
291                       4
292                       (:none (unsigned-byte 32))
293                       (:full (unsigned-byte 32)))
294   (setf (sap-ref-32 (fd-stream-obuf-sap stream) (fd-stream-obuf-tail stream))
295         byte))
296
297 (def-output-routines ("OUTPUT-SIGNED-LONG-~A-BUFFERED"
298                       4
299                       (:none (signed-byte 32))
300                       (:full (signed-byte 32)))
301   (setf (signed-sap-ref-32 (fd-stream-obuf-sap stream)
302                            (fd-stream-obuf-tail stream))
303         byte))
304
305 ;;; Do the actual output. If there is space to buffer the string,
306 ;;; buffer it. If the string would normally fit in the buffer, but
307 ;;; doesn't because of other stuff in the buffer, flush the old noise
308 ;;; out of the buffer and put the string in it. Otherwise we have a
309 ;;; very long string, so just send it directly (after flushing the
310 ;;; buffer, of course).
311 (defun output-raw-bytes (fd-stream thing &optional start end)
312   #!+sb-doc
313   "Output THING to FD-STREAM. THING can be any kind of vector or a SAP. If
314   THING is a SAP, END must be supplied (as length won't work)."
315   (let ((start (or start 0))
316         (end (or end (length (the (simple-array * (*)) thing)))))
317     (declare (type index start end))
318     (when (> (fd-stream-ibuf-tail fd-stream)
319              (fd-stream-ibuf-head fd-stream))
320       (file-position fd-stream (file-position fd-stream)))
321     (let* ((len (fd-stream-obuf-length fd-stream))
322            (tail (fd-stream-obuf-tail fd-stream))
323            (space (- len tail))
324            (bytes (- end start))
325            (newtail (+ tail bytes)))
326       (cond ((minusp bytes) ; error case
327              (error ":END before :START!"))
328             ((zerop bytes)) ; easy case
329             ((<= bytes space)
330              (if (system-area-pointer-p thing)
331                  (system-area-copy thing
332                                    (* start sb!vm:n-byte-bits)
333                                    (fd-stream-obuf-sap fd-stream)
334                                    (* tail sb!vm:n-byte-bits)
335                                    (* bytes sb!vm:n-byte-bits))
336                  ;; FIXME: There should be some type checking somewhere to
337                  ;; verify that THING here is a vector, not just <not a SAP>.
338                  (copy-to-system-area thing
339                                       (+ (* start sb!vm:n-byte-bits)
340                                          (* sb!vm:vector-data-offset
341                                             sb!vm:n-word-bits))
342                                       (fd-stream-obuf-sap fd-stream)
343                                       (* tail sb!vm:n-byte-bits)
344                                       (* bytes sb!vm:n-byte-bits)))
345              (setf (fd-stream-obuf-tail fd-stream) newtail))
346             ((<= bytes len)
347              (flush-output-buffer fd-stream)
348              (if (system-area-pointer-p thing)
349                  (system-area-copy thing
350                                    (* start sb!vm:n-byte-bits)
351                                    (fd-stream-obuf-sap fd-stream)
352                                    0
353                                    (* bytes sb!vm:n-byte-bits))
354                  ;; FIXME: There should be some type checking somewhere to
355                  ;; verify that THING here is a vector, not just <not a SAP>.
356                  (copy-to-system-area thing
357                                       (+ (* start sb!vm:n-byte-bits)
358                                          (* sb!vm:vector-data-offset
359                                             sb!vm:n-word-bits))
360                                       (fd-stream-obuf-sap fd-stream)
361                                       0
362                                       (* bytes sb!vm:n-byte-bits)))
363              (setf (fd-stream-obuf-tail fd-stream) bytes))
364             (t
365              (flush-output-buffer fd-stream)
366              (frob-output fd-stream thing start end nil))))))
367
368 ;;; the routine to use to output a string. If the stream is
369 ;;; unbuffered, slam the string down the file descriptor, otherwise
370 ;;; use OUTPUT-RAW-BYTES to buffer the string. Update charpos by
371 ;;; checking to see where the last newline was.
372 ;;;
373 ;;; Note: some bozos (the FASL dumper) call write-string with things
374 ;;; other than strings. Therefore, we must make sure we have a string
375 ;;; before calling POSITION on it.
376 ;;; KLUDGE: It would be better to fix the bozos instead of trying to
377 ;;; cover for them here. -- WHN 20000203
378 (defun fd-sout (stream thing start end)
379   (let ((start (or start 0))
380         (end (or end (length (the vector thing)))))
381     (declare (fixnum start end))
382     (if (stringp thing)
383         (let ((last-newline (and (find #\newline (the simple-string thing)
384                                        :start start :end end)
385                                  ;; FIXME why do we need both calls?
386                                  ;; Is find faster forwards than
387                                  ;; position is backwards?
388                                  (position #\newline (the simple-string thing)
389                                            :from-end t
390                                            :start start
391                                            :end end))))
392           (ecase (fd-stream-buffering stream)
393             (:full
394              (output-raw-bytes stream thing start end))
395             (:line
396              (output-raw-bytes stream thing start end)
397              (when last-newline
398                (flush-output-buffer stream)))
399             (:none
400              (frob-output stream thing start end nil)))
401           (if last-newline
402               (setf (fd-stream-char-pos stream)
403                     (- end last-newline 1))
404               (incf (fd-stream-char-pos stream)
405                     (- end start))))
406         (ecase (fd-stream-buffering stream)
407           ((:line :full)
408            (output-raw-bytes stream thing start end))
409           (:none
410            (frob-output stream thing start end nil))))))
411
412 ;;; Find an output routine to use given the type and buffering. Return
413 ;;; as multiple values the routine, the real type transfered, and the
414 ;;; number of bytes per element.
415 (defun pick-output-routine (type buffering)
416   (dolist (entry *output-routines*)
417     (when (and (subtypep type (car entry))
418                (eq buffering (cadr entry)))
419       (return-from pick-output-routine
420         (values (symbol-function (caddr entry))
421                 (car entry)
422                 (cadddr entry)))))
423   ;; KLUDGE: dealing with the buffering here leads to excessive code
424   ;; explosion.
425   ;;
426   ;; KLUDGE: also see comments in PICK-INPUT-ROUTINE
427   (loop for i from 40 by 8 to 1024 ; ARB (KLUDGE)
428         if (subtypep type `(unsigned-byte ,i))
429         do (return-from pick-output-routine
430              (values
431               (ecase buffering
432                 (:none
433                  (lambda (stream byte)
434                    (output-wrapper (stream (/ i 8) (:none))
435                      (loop for j from 0 below (/ i 8)
436                            do (setf (sap-ref-8 
437                                      (fd-stream-obuf-sap stream)
438                                      (+ j (fd-stream-obuf-tail stream)))
439                                     (ldb (byte 8 (- i 8 (* j 8))) byte))))))
440                 (:full
441                  (lambda (stream byte)
442                    (output-wrapper (stream (/ i 8) (:full))
443                      (loop for j from 0 below (/ i 8)
444                            do (setf (sap-ref-8 
445                                      (fd-stream-obuf-sap stream)
446                                      (+ j (fd-stream-obuf-tail stream)))
447                                     (ldb (byte 8 (- i 8 (* j 8))) byte)))))))
448               `(unsigned-byte ,i)
449               (/ i 8))))
450   (loop for i from 40 by 8 to 1024 ; ARB (KLUDGE)
451         if (subtypep type `(signed-byte ,i))
452         do (return-from pick-output-routine
453              (values
454               (ecase buffering
455                 (:none
456                  (lambda (stream byte)
457                    (output-wrapper (stream (/ i 8) (:none))
458                      (loop for j from 0 below (/ i 8)
459                            do (setf (sap-ref-8 
460                                      (fd-stream-obuf-sap stream)
461                                      (+ j (fd-stream-obuf-tail stream)))
462                                     (ldb (byte 8 (- i 8 (* j 8))) byte))))))
463                 (:full
464                  (lambda (stream byte)
465                    (output-wrapper (stream (/ i 8) (:full))
466                      (loop for j from 0 below (/ i 8)
467                            do (setf (sap-ref-8 
468                                      (fd-stream-obuf-sap stream)
469                                      (+ j (fd-stream-obuf-tail stream)))
470                                     (ldb (byte 8 (- i 8 (* j 8))) byte)))))))
471               `(signed-byte ,i)
472               (/ i 8)))))
473 \f
474 ;;;; input routines and related noise
475
476 ;;; a list of all available input routines. Each element is a list of
477 ;;; the element-type input, the function name, and the number of bytes
478 ;;; per element.
479 (defvar *input-routines* ())
480
481 ;;; Fill the input buffer, and return the first character. Throw to
482 ;;; EOF-INPUT-CATCHER if the eof was reached. Drop into SYSTEM:SERVER
483 ;;; if necessary.
484 (defun frob-input (stream)
485   (let ((fd (fd-stream-fd stream))
486         (ibuf-sap (fd-stream-ibuf-sap stream))
487         (buflen (fd-stream-ibuf-length stream))
488         (head (fd-stream-ibuf-head stream))
489         (tail (fd-stream-ibuf-tail stream)))
490     (declare (type index head tail))
491     (unless (zerop head)
492       (cond ((eql head tail)
493              (setf head 0)
494              (setf tail 0)
495              (setf (fd-stream-ibuf-head stream) 0)
496              (setf (fd-stream-ibuf-tail stream) 0))
497             (t
498              (decf tail head)
499              (system-area-copy ibuf-sap (* head sb!vm:n-byte-bits)
500                                ibuf-sap 0 (* tail sb!vm:n-byte-bits))
501              (setf head 0)
502              (setf (fd-stream-ibuf-head stream) 0)
503              (setf (fd-stream-ibuf-tail stream) tail))))
504     (setf (fd-stream-listen stream) nil)
505     (multiple-value-bind (count errno)
506         ;; FIXME: Judging from compiler warnings, this WITH-ALIEN form expands
507         ;; into something which uses the not-yet-defined type
508         ;;   (SB!ALIEN-INTERNALS:ALIEN (* (SB!ALIEN:STRUCT SB!UNIX:FD-SET))).
509         ;; This is probably inefficient and unsafe and generally bad, so
510         ;; try to find some way to make that type known before
511         ;; this is compiled.
512         (sb!alien:with-alien ((read-fds (sb!alien:struct sb!unix:fd-set)))
513           (sb!unix:fd-zero read-fds)
514           (sb!unix:fd-set fd read-fds)
515           (sb!unix:unix-fast-select (1+ fd)
516                                     (sb!alien:addr read-fds)
517                                     nil
518                                     nil
519                                     0
520                                     0))
521       (case count
522         (1)
523         (0
524          (unless (sb!sys:wait-until-fd-usable
525                   fd :input (fd-stream-timeout stream))
526            (error 'io-timeout :stream stream :direction :read)))
527         (t
528          (simple-stream-perror "couldn't check whether ~S is readable"
529                                stream
530                                errno))))
531     (multiple-value-bind (count errno)
532         (sb!unix:unix-read fd
533                            (sb!sys:int-sap (+ (sb!sys:sap-int ibuf-sap) tail))
534                            (- buflen tail))
535       (cond ((null count)
536              (if (eql errno sb!unix:ewouldblock)
537                  (progn
538                    (unless (sb!sys:wait-until-fd-usable
539                             fd :input (fd-stream-timeout stream))
540                      (error 'io-timeout :stream stream :direction :read))
541                    (frob-input stream))
542                  (simple-stream-perror "couldn't read from ~S" stream errno)))
543             ((zerop count)
544              (setf (fd-stream-listen stream) :eof)
545              (/show0 "THROWing EOF-INPUT-CATCHER")
546              (throw 'eof-input-catcher nil))
547             (t
548              (incf (fd-stream-ibuf-tail stream) count))))))
549                         
550 ;;; Make sure there are at least BYTES number of bytes in the input
551 ;;; buffer. Keep calling FROB-INPUT until that condition is met.
552 (defmacro input-at-least (stream bytes)
553   (let ((stream-var (gensym))
554         (bytes-var (gensym)))
555     `(let ((,stream-var ,stream)
556            (,bytes-var ,bytes))
557        (loop
558          (when (>= (- (fd-stream-ibuf-tail ,stream-var)
559                       (fd-stream-ibuf-head ,stream-var))
560                    ,bytes-var)
561            (return))
562          (frob-input ,stream-var)))))
563
564 ;;; a macro to wrap around all input routines to handle EOF-ERROR noise
565 (defmacro input-wrapper ((stream bytes eof-error eof-value) &body read-forms)
566   (let ((stream-var (gensym))
567         (element-var (gensym)))
568     `(let ((,stream-var ,stream))
569        (if (fd-stream-unread ,stream-var)
570            (prog1
571                (fd-stream-unread ,stream-var)
572              (setf (fd-stream-unread ,stream-var) nil)
573              (setf (fd-stream-listen ,stream-var) nil))
574            (let ((,element-var
575                   (catch 'eof-input-catcher
576                     (input-at-least ,stream-var ,bytes)
577                     (locally ,@read-forms))))
578              (cond (,element-var
579                     (incf (fd-stream-ibuf-head ,stream-var) ,bytes)
580                     ,element-var)
581                    (t
582                     (eof-or-lose ,stream-var ,eof-error ,eof-value))))))))
583
584 (defmacro def-input-routine (name
585                              (type size sap head)
586                              &rest body)
587   `(progn
588      (defun ,name (stream eof-error eof-value)
589        (input-wrapper (stream ,size eof-error eof-value)
590          (let ((,sap (fd-stream-ibuf-sap stream))
591                (,head (fd-stream-ibuf-head stream)))
592            ,@body)))
593      (setf *input-routines*
594            (nconc *input-routines*
595                   (list (list ',type ',name ',size))))))
596
597 ;;; STREAM-IN routine for reading a string char
598 (def-input-routine input-character
599                    (character 1 sap head)
600   (code-char (sap-ref-8 sap head)))
601
602 ;;; STREAM-IN routine for reading an unsigned 8 bit number
603 (def-input-routine input-unsigned-8bit-byte
604                    ((unsigned-byte 8) 1 sap head)
605   (sap-ref-8 sap head))
606
607 ;;; STREAM-IN routine for reading a signed 8 bit number
608 (def-input-routine input-signed-8bit-number
609                    ((signed-byte 8) 1 sap head)
610   (signed-sap-ref-8 sap head))
611
612 ;;; STREAM-IN routine for reading an unsigned 16 bit number
613 (def-input-routine input-unsigned-16bit-byte
614                    ((unsigned-byte 16) 2 sap head)
615   (sap-ref-16 sap head))
616
617 ;;; STREAM-IN routine for reading a signed 16 bit number
618 (def-input-routine input-signed-16bit-byte
619                    ((signed-byte 16) 2 sap head)
620   (signed-sap-ref-16 sap head))
621
622 ;;; STREAM-IN routine for reading a unsigned 32 bit number
623 (def-input-routine input-unsigned-32bit-byte
624                    ((unsigned-byte 32) 4 sap head)
625   (sap-ref-32 sap head))
626
627 ;;; STREAM-IN routine for reading a signed 32 bit number
628 (def-input-routine input-signed-32bit-byte
629                    ((signed-byte 32) 4 sap head)
630   (signed-sap-ref-32 sap head))
631
632 ;;; Find an input routine to use given the type. Return as multiple
633 ;;; values the routine, the real type transfered, and the number of
634 ;;; bytes per element.
635 (defun pick-input-routine (type)
636   (dolist (entry *input-routines*)
637     (when (subtypep type (car entry))
638       (return-from pick-input-routine
639         (values (symbol-function (cadr entry))
640                 (car entry)
641                 (caddr entry)))))
642   ;; FIXME: let's do it the hard way, then (but ignore things like
643   ;; endianness, efficiency, and the necessary coupling between these
644   ;; and the output routines).  -- CSR, 2004-02-09
645   (loop for i from 40 by 8 to 1024 ; ARB (well, KLUDGE really)
646         if (subtypep type `(unsigned-byte ,i))
647         do (return-from pick-input-routine
648              (values
649               (lambda (stream eof-error eof-value)
650                 (input-wrapper (stream (/ i 8) eof-error eof-value)
651                   (let ((sap (fd-stream-ibuf-sap stream))
652                         (head (fd-stream-ibuf-head stream)))
653                     (loop for j from 0 below (/ i 8)
654                           with result = 0
655                           do (setf result
656                                    (+ (* 256 result)
657                                       (sap-ref-8 sap (+ head j))))
658                           finally (return result)))))
659               `(unsigned-byte ,i)
660               (/ i 8))))
661   (loop for i from 40 by 8 to 1024 ; ARB (well, KLUDGE really)
662         if (subtypep type `(signed-byte ,i))
663         do (return-from pick-input-routine
664              (values
665               (lambda (stream eof-error eof-value)
666                 (input-wrapper (stream (/ i 8) eof-error eof-value)
667                   (let ((sap (fd-stream-ibuf-sap stream))
668                         (head (fd-stream-ibuf-head stream)))
669                     (loop for j from 0 below (/ i 8)
670                           with result = 0
671                           do (setf result
672                                    (+ (* 256 result)
673                                       (sap-ref-8 sap (+ head j))))
674                           finally (return (dpb result (byte i 0) -1))))))
675               `(signed-byte ,i)
676               (/ i 8)))))
677
678 ;;; Return a string constructed from SAP, START, and END.
679 (defun string-from-sap (sap start end)
680   (declare (type index start end))
681   (let* ((length (- end start))
682          (string (make-string length)))
683     (copy-from-system-area sap (* start sb!vm:n-byte-bits)
684                            string (* sb!vm:vector-data-offset
685                                      sb!vm:n-word-bits)
686                            (* length sb!vm:n-byte-bits))
687     string))
688
689 ;;; the N-BIN method for FD-STREAMs
690 ;;;
691 ;;; Note that this blocks in UNIX-READ. It is generally used where
692 ;;; there is a definite amount of reading to be done, so blocking
693 ;;; isn't too problematical.
694 (defun fd-stream-read-n-bytes (stream buffer start requested eof-error-p
695                                &aux (total-copied 0))
696   (declare (type file-stream stream))
697   (declare (type index start requested total-copied))
698   (let ((unread (fd-stream-unread stream)))
699     (when unread
700       ;; AVERs designed to fail when we have more complicated
701       ;; character representations.
702       (aver (typep unread 'base-char))
703       (aver (= (fd-stream-element-size stream) 1))
704       ;; KLUDGE: this is a slightly-unrolled-and-inlined version of
705       ;; %BYTE-BLT
706       (etypecase buffer
707         (system-area-pointer
708          (setf (sap-ref-8 buffer start) (char-code unread)))
709         ((simple-unboxed-array (*))
710          (setf (aref buffer start) unread)))
711       (setf (fd-stream-unread stream) nil)
712       (setf (fd-stream-listen stream) nil)
713       (incf total-copied)))
714   (do ()
715       (nil)
716     (let* ((remaining-request (- requested total-copied))
717            (head (fd-stream-ibuf-head stream))
718            (tail (fd-stream-ibuf-tail stream))
719            (available (- tail head))
720            (n-this-copy (min remaining-request available))
721            (this-start (+ start total-copied))
722            (this-end (+ this-start n-this-copy))
723            (sap (fd-stream-ibuf-sap stream)))
724       (declare (type index remaining-request head tail available))
725       (declare (type index n-this-copy))
726       ;; Copy data from stream buffer into user's buffer. 
727       (%byte-blt sap head buffer this-start this-end)
728       (incf (fd-stream-ibuf-head stream) n-this-copy)
729       (incf total-copied n-this-copy)
730       ;; Maybe we need to refill the stream buffer.
731       (cond (;; If there were enough data in the stream buffer, we're done.
732              (= total-copied requested)
733              (return total-copied))
734             (;; If EOF, we're done in another way.
735              (zerop (refill-fd-stream-buffer stream))
736              (if eof-error-p
737                  (error 'end-of-file :stream stream)
738                  (return total-copied)))
739             ;; Otherwise we refilled the stream buffer, so fall
740             ;; through into another pass of the loop.
741             ))))
742
743 ;;; Try to refill the stream buffer. Return the number of bytes read.
744 ;;; (For EOF, the return value will be zero, otherwise positive.)
745 (defun refill-fd-stream-buffer (stream)
746   ;; We don't have any logic to preserve leftover bytes in the buffer,
747   ;; so we should only be called when the buffer is empty.
748   (aver (= (fd-stream-ibuf-head stream) (fd-stream-ibuf-tail stream)))
749   (multiple-value-bind (count err)
750       (sb!unix:unix-read (fd-stream-fd stream)
751                          (fd-stream-ibuf-sap stream)
752                          (fd-stream-ibuf-length stream))
753     (declare (type (or index null) count))
754     (when (null count)
755       (simple-stream-perror "couldn't read from ~S" stream err))
756     (setf (fd-stream-listen stream) nil
757           (fd-stream-ibuf-head stream) 0
758           (fd-stream-ibuf-tail stream) count)
759     count))
760 \f
761 ;;;; utility functions (misc routines, etc)
762
763 ;;; Fill in the various routine slots for the given type. INPUT-P and
764 ;;; OUTPUT-P indicate what slots to fill. The buffering slot must be
765 ;;; set prior to calling this routine.
766 (defun set-fd-stream-routines (fd-stream type input-p output-p buffer-p)
767   (let ((target-type (case type
768                        ((:default unsigned-byte)
769                         '(unsigned-byte 8))
770                        (signed-byte
771                         '(signed-byte 8))
772                        (t
773                         type)))
774         (input-type nil)
775         (output-type nil)
776         (input-size nil)
777         (output-size nil))
778
779     (when (fd-stream-obuf-sap fd-stream)
780       (push (fd-stream-obuf-sap fd-stream) *available-buffers*)
781       (setf (fd-stream-obuf-sap fd-stream) nil))
782     (when (fd-stream-ibuf-sap fd-stream)
783       (push (fd-stream-ibuf-sap fd-stream) *available-buffers*)
784       (setf (fd-stream-ibuf-sap fd-stream) nil))
785
786     (when input-p
787       (multiple-value-bind (routine type size)
788           (pick-input-routine target-type)
789         (unless routine
790           (error "could not find any input routine for ~S" target-type))
791         (setf (fd-stream-ibuf-sap fd-stream) (next-available-buffer))
792         (setf (fd-stream-ibuf-length fd-stream) bytes-per-buffer)
793         (setf (fd-stream-ibuf-tail fd-stream) 0)
794         (if (subtypep type 'character)
795             (setf (fd-stream-in fd-stream) routine
796                   (fd-stream-bin fd-stream) #'ill-bin)
797             (setf (fd-stream-in fd-stream) #'ill-in
798                   (fd-stream-bin fd-stream) routine))
799         (when (eql size 1)
800           (setf (fd-stream-n-bin fd-stream) #'fd-stream-read-n-bytes)
801           (when (and buffer-p
802                      ;; We only create this buffer for streams of type
803                      ;; (unsigned-byte 8).  Because there's no buffer, the
804                      ;; other element-types will dispatch to the appropriate
805                      ;; input (output) routine in fast-read-byte.
806                      (equal target-type '(unsigned-byte 8))
807                      #+nil
808                      (or (eq type 'unsigned-byte)
809                          (eq type :default)))
810             (setf (ansi-stream-in-buffer fd-stream)
811                   (make-array +ansi-stream-in-buffer-length+
812                               :element-type '(unsigned-byte 8)))))
813         (setf input-size size)
814         (setf input-type type)))
815
816     (when output-p
817       (multiple-value-bind (routine type size)
818           (pick-output-routine target-type (fd-stream-buffering fd-stream))
819         (unless routine
820           (error "could not find any output routine for ~S buffered ~S"
821                  (fd-stream-buffering fd-stream)
822                  target-type))
823         (setf (fd-stream-obuf-sap fd-stream) (next-available-buffer))
824         (setf (fd-stream-obuf-length fd-stream) bytes-per-buffer)
825         (setf (fd-stream-obuf-tail fd-stream) 0)
826         (if (subtypep type 'character)
827           (setf (fd-stream-out fd-stream) routine
828                 (fd-stream-bout fd-stream) #'ill-bout)
829           (setf (fd-stream-out fd-stream)
830                 (or (if (eql size 1)
831                       (pick-output-routine 'base-char
832                                            (fd-stream-buffering fd-stream)))
833                     #'ill-out)
834                 (fd-stream-bout fd-stream) routine))
835         (setf (fd-stream-sout fd-stream)
836               (if (eql size 1) #'fd-sout #'ill-out))
837         (setf (fd-stream-char-pos fd-stream) 0)
838         (setf output-size size)
839         (setf output-type type)))
840
841     (when (and input-size output-size
842                (not (eq input-size output-size)))
843       (error "Element sizes for input (~S:~S) and output (~S:~S) differ?"
844              input-type input-size
845              output-type output-size))
846     (setf (fd-stream-element-size fd-stream)
847           (or input-size output-size))
848
849     (setf (fd-stream-element-type fd-stream)
850           (cond ((equal input-type output-type)
851                  input-type)
852                 ((null output-type)
853                  input-type)
854                 ((null input-type)
855                  output-type)
856                 ((subtypep input-type output-type)
857                  input-type)
858                 ((subtypep output-type input-type)
859                  output-type)
860                 (t
861                  (error "Input type (~S) and output type (~S) are unrelated?"
862                         input-type
863                         output-type))))))
864
865 ;;; Handle miscellaneous operations on FD-STREAM.
866 (defun fd-stream-misc-routine (fd-stream operation &optional arg1 arg2)
867   (declare (ignore arg2))
868   (case operation
869     (:listen
870      (or (not (eql (fd-stream-ibuf-head fd-stream)
871                    (fd-stream-ibuf-tail fd-stream)))
872          (fd-stream-listen fd-stream)
873          (setf (fd-stream-listen fd-stream)
874                (eql (sb!alien:with-alien ((read-fds (sb!alien:struct
875                                                      sb!unix:fd-set)))
876                       (sb!unix:fd-zero read-fds)
877                       (sb!unix:fd-set (fd-stream-fd fd-stream) read-fds)
878                       (sb!unix:unix-fast-select (1+ (fd-stream-fd fd-stream))
879                                                 (sb!alien:addr read-fds)
880                                                 nil nil 0 0))
881                     1))))
882     (:unread
883      (setf (fd-stream-unread fd-stream) arg1)
884      (setf (fd-stream-listen fd-stream) t))
885     (:close
886      (cond (arg1 ; We got us an abort on our hands.
887             (when (fd-stream-handler fd-stream)
888               (sb!sys:remove-fd-handler (fd-stream-handler fd-stream))
889               (setf (fd-stream-handler fd-stream) nil))
890             ;; We can't do anything unless we know what file were
891             ;; dealing with, and we don't want to do anything
892             ;; strange unless we were writing to the file.
893             (when (and (fd-stream-file fd-stream)
894                        (fd-stream-obuf-sap fd-stream))
895               (if (fd-stream-original fd-stream)
896                   ;; If the original is EQ to file we are appending
897                   ;; and can just close the file without renaming.
898                   (unless (eq (fd-stream-original fd-stream)
899                               (fd-stream-file fd-stream))
900                     ;; We have a handle on the original, just revert.
901                     (multiple-value-bind (okay err)
902                         (sb!unix:unix-rename (fd-stream-original fd-stream)
903                                              (fd-stream-file fd-stream))
904                       (unless okay
905                         (simple-stream-perror
906                          "couldn't restore ~S to its original contents"
907                          fd-stream
908                          err))))
909                   ;; We can't restore the original, and aren't
910                   ;; appending, so nuke that puppy.
911                   ;;
912                   ;; FIXME: This is currently the fate of superseded
913                   ;; files, and according to the CLOSE spec this is
914                   ;; wrong. However, there seems to be no clean way to
915                   ;; do that that doesn't involve either copying the
916                   ;; data (bad if the :abort resulted from a full
917                   ;; disk), or renaming the old file temporarily
918                   ;; (probably bad because stream opening becomes more
919                   ;; racy).
920                   (multiple-value-bind (okay err)
921                       (sb!unix:unix-unlink (fd-stream-file fd-stream))
922                     (unless okay
923                       (error 'simple-file-error
924                              :pathname (fd-stream-file fd-stream)
925                              :format-control
926                              "~@<couldn't remove ~S: ~2I~_~A~:>"
927                              :format-arguments (list (fd-stream-file fd-stream)
928                                                      (strerror err))))))))
929            (t
930             (fd-stream-misc-routine fd-stream :finish-output)
931             (when (and (fd-stream-original fd-stream)
932                        (fd-stream-delete-original fd-stream))
933               (multiple-value-bind (okay err)
934                   (sb!unix:unix-unlink (fd-stream-original fd-stream))
935                 (unless okay
936                   (error 'simple-file-error
937                          :pathname (fd-stream-original fd-stream)
938                          :format-control 
939                          "~@<couldn't delete ~S during close of ~S: ~
940                           ~2I~_~A~:>"
941                          :format-arguments
942                          (list (fd-stream-original fd-stream)
943                                fd-stream
944                                (strerror err))))))))
945      (when (fboundp 'cancel-finalization)
946        (cancel-finalization fd-stream))
947      (sb!unix:unix-close (fd-stream-fd fd-stream))
948      (when (fd-stream-obuf-sap fd-stream)
949        (push (fd-stream-obuf-sap fd-stream) *available-buffers*)
950        (setf (fd-stream-obuf-sap fd-stream) nil))
951      (when (fd-stream-ibuf-sap fd-stream)
952        (push (fd-stream-ibuf-sap fd-stream) *available-buffers*)
953        (setf (fd-stream-ibuf-sap fd-stream) nil))
954      (sb!impl::set-closed-flame fd-stream))
955     (:clear-input
956      (setf (fd-stream-unread fd-stream) nil)
957      (setf (fd-stream-ibuf-head fd-stream) 0)
958      (setf (fd-stream-ibuf-tail fd-stream) 0)
959      (catch 'eof-input-catcher
960        (loop
961         (let ((count (sb!alien:with-alien ((read-fds (sb!alien:struct
962                                                       sb!unix:fd-set)))
963                        (sb!unix:fd-zero read-fds)
964                        (sb!unix:fd-set (fd-stream-fd fd-stream) read-fds)
965                        (sb!unix:unix-fast-select (1+ (fd-stream-fd fd-stream))
966                                                  (sb!alien:addr read-fds)
967                                                  nil
968                                                  nil
969                                                  0
970                                                  0))))
971           (cond ((eql count 1)
972                  (frob-input fd-stream)
973                  (setf (fd-stream-ibuf-head fd-stream) 0)
974                  (setf (fd-stream-ibuf-tail fd-stream) 0))
975                 (t
976                  (return t)))))))
977     (:force-output
978      (flush-output-buffer fd-stream))
979     (:finish-output
980      (flush-output-buffer fd-stream)
981      (do ()
982          ((null (fd-stream-output-later fd-stream)))
983        (sb!sys:serve-all-events)))
984     (:element-type
985      (fd-stream-element-type fd-stream))
986     (:interactive-p
987      (= 1 (the (member 0 1)
988             (sb!unix:unix-isatty (fd-stream-fd fd-stream)))))
989     (:line-length
990      80)
991     (:charpos
992      (fd-stream-char-pos fd-stream))
993     (:file-length
994      (unless (fd-stream-file fd-stream)
995        ;; This is a TYPE-ERROR because ANSI's species FILE-LENGTH
996        ;; "should signal an error of type TYPE-ERROR if stream is not
997        ;; a stream associated with a file". Too bad there's no very
998        ;; appropriate value for the EXPECTED-TYPE slot..
999        (error 'simple-type-error
1000               :datum fd-stream
1001               :expected-type 'file-stream
1002               :format-control "~S is not a stream associated with a file."
1003               :format-arguments (list fd-stream)))
1004      (multiple-value-bind (okay dev ino mode nlink uid gid rdev size
1005                            atime mtime ctime blksize blocks)
1006          (sb!unix:unix-fstat (fd-stream-fd fd-stream))
1007        (declare (ignore ino nlink uid gid rdev
1008                         atime mtime ctime blksize blocks))
1009        (unless okay
1010          (simple-stream-perror "failed Unix fstat(2) on ~S" fd-stream dev))
1011        (if (zerop mode)
1012            nil
1013            (truncate size (fd-stream-element-size fd-stream)))))
1014     (:file-position
1015      (fd-stream-file-position fd-stream arg1))))
1016
1017 (defun fd-stream-file-position (stream &optional newpos)
1018   (declare (type file-stream stream)
1019            (type (or (alien sb!unix:off-t) (member nil :start :end)) newpos))
1020   (if (null newpos)
1021       (sb!sys:without-interrupts
1022         ;; First, find the position of the UNIX file descriptor in the file.
1023         (multiple-value-bind (posn errno)
1024             (sb!unix:unix-lseek (fd-stream-fd stream) 0 sb!unix:l_incr)
1025           (declare (type (or (alien sb!unix:off-t) null) posn))
1026           (cond ((integerp posn)
1027                  ;; Adjust for buffered output: If there is any output
1028                  ;; buffered, the *real* file position will be larger
1029                  ;; than reported by lseek() because lseek() obviously
1030                  ;; cannot take into account output we have not sent
1031                  ;; yet.
1032                  (dolist (later (fd-stream-output-later stream))
1033                    (incf posn (- (caddr later)
1034                                  (cadr later))))
1035                  (incf posn (fd-stream-obuf-tail stream))
1036                  ;; Adjust for unread input: If there is any input
1037                  ;; read from UNIX but not supplied to the user of the
1038                  ;; stream, the *real* file position will smaller than
1039                  ;; reported, because we want to look like the unread
1040                  ;; stuff is still available.
1041                  (decf posn (- (fd-stream-ibuf-tail stream)
1042                                (fd-stream-ibuf-head stream)))
1043                  (when (fd-stream-unread stream)
1044                    (decf posn))
1045                  ;; Divide bytes by element size.
1046                  (truncate posn (fd-stream-element-size stream)))
1047                 ((eq errno sb!unix:espipe)
1048                  nil)
1049                 (t
1050                  (sb!sys:with-interrupts
1051                    (simple-stream-perror "failure in Unix lseek() on ~S"
1052                                          stream
1053                                          errno))))))
1054       (let ((offset 0) origin)
1055         (declare (type (alien sb!unix:off-t) offset))
1056         ;; Make sure we don't have any output pending, because if we
1057         ;; move the file pointer before writing this stuff, it will be
1058         ;; written in the wrong location.
1059         (flush-output-buffer stream)
1060         (do ()
1061             ((null (fd-stream-output-later stream)))
1062           (sb!sys:serve-all-events))
1063         ;; Clear out any pending input to force the next read to go to
1064         ;; the disk.
1065         (setf (fd-stream-unread stream) nil)
1066         (setf (fd-stream-ibuf-head stream) 0)
1067         (setf (fd-stream-ibuf-tail stream) 0)
1068         ;; Trash cached value for listen, so that we check next time.
1069         (setf (fd-stream-listen stream) nil)
1070         ;; Now move it.
1071         (cond ((eq newpos :start)
1072                (setf offset 0 origin sb!unix:l_set))
1073               ((eq newpos :end)
1074                (setf offset 0 origin sb!unix:l_xtnd))
1075               ((typep newpos '(alien sb!unix:off-t))
1076                (setf offset (* newpos (fd-stream-element-size stream))
1077                      origin sb!unix:l_set))
1078               (t
1079                (error "invalid position given to FILE-POSITION: ~S" newpos)))
1080         (multiple-value-bind (posn errno)
1081             (sb!unix:unix-lseek (fd-stream-fd stream) offset origin)
1082           (cond ((typep posn '(alien sb!unix:off-t))
1083                  t)
1084                 ((eq errno sb!unix:espipe)
1085                  nil)
1086                 (t
1087                  (simple-stream-perror "error in Unix lseek() on ~S"
1088                                        stream
1089                                        errno)))))))
1090 \f
1091 ;;;; creation routines (MAKE-FD-STREAM and OPEN)
1092
1093 ;;; Create a stream for the given Unix file descriptor.
1094 ;;;
1095 ;;; If INPUT is non-NIL, allow input operations. If OUTPUT is non-nil,
1096 ;;; allow output operations. If neither INPUT nor OUTPUT is specified,
1097 ;;; default to allowing input.
1098 ;;;
1099 ;;; ELEMENT-TYPE indicates the element type to use (as for OPEN).
1100 ;;;
1101 ;;; BUFFERING indicates the kind of buffering to use.
1102 ;;;
1103 ;;; TIMEOUT (if true) is the number of seconds to wait for input. If
1104 ;;; NIL (the default), then wait forever. When we time out, we signal
1105 ;;; IO-TIMEOUT.
1106 ;;;
1107 ;;; FILE is the name of the file (will be returned by PATHNAME).
1108 ;;;
1109 ;;; NAME is used to identify the stream when printed.
1110 (defun make-fd-stream (fd
1111                        &key
1112                        (input nil input-p)
1113                        (output nil output-p)
1114                        (element-type 'base-char)
1115                        (buffering :full)
1116                        timeout
1117                        file
1118                        original
1119                        delete-original
1120                        pathname
1121                        input-buffer-p
1122                        (name (if file
1123                                  (format nil "file ~S" file)
1124                                  (format nil "descriptor ~W" fd)))
1125                        auto-close)
1126   (declare (type index fd) (type (or index null) timeout)
1127            (type (member :none :line :full) buffering))
1128   (cond ((not (or input-p output-p))
1129          (setf input t))
1130         ((not (or input output))
1131          (error "File descriptor must be opened either for input or output.")))
1132   (let ((stream (%make-fd-stream :fd fd
1133                                  :name name
1134                                  :file file
1135                                  :original original
1136                                  :delete-original delete-original
1137                                  :pathname pathname
1138                                  :buffering buffering
1139                                  :timeout timeout)))
1140     (set-fd-stream-routines stream element-type input output input-buffer-p)
1141     (when (and auto-close (fboundp 'finalize))
1142       (finalize stream
1143                 (lambda ()
1144                   (sb!unix:unix-close fd)
1145                   #!+sb-show
1146                   (format *terminal-io* "** closed file descriptor ~W **~%"
1147                           fd))))
1148     stream))
1149
1150 ;;; Pick a name to use for the backup file for the :IF-EXISTS
1151 ;;; :RENAME-AND-DELETE and :RENAME options.
1152 (defun pick-backup-name (name)
1153   (declare (type simple-base-string name))
1154   (concatenate 'simple-base-string name ".bak"))
1155
1156 ;;; Ensure that the given arg is one of the given list of valid
1157 ;;; things. Allow the user to fix any problems.
1158 (defun ensure-one-of (item list what)
1159   (unless (member item list)
1160     (error 'simple-type-error
1161            :datum item
1162            :expected-type `(member ,@list)
1163            :format-control "~@<~S is ~_invalid for ~S; ~_need one of~{ ~S~}~:>"
1164            :format-arguments (list item what list))))
1165
1166 ;;; Rename NAMESTRING to ORIGINAL. First, check whether we have write
1167 ;;; access, since we don't want to trash unwritable files even if we
1168 ;;; technically can. We return true if we succeed in renaming.
1169 (defun rename-the-old-one (namestring original)
1170   (unless (sb!unix:unix-access namestring sb!unix:w_ok)
1171     (error "~@<The file ~2I~_~S ~I~_is not writable.~:>" namestring))
1172   (multiple-value-bind (okay err) (sb!unix:unix-rename namestring original)
1173     (if okay
1174         t
1175         (error 'simple-file-error
1176                :pathname namestring
1177                :format-control 
1178                "~@<couldn't rename ~2I~_~S ~I~_to ~2I~_~S: ~4I~_~A~:>"
1179                :format-arguments (list namestring original (strerror err))))))
1180
1181 (defun open (filename
1182              &key
1183              (direction :input)
1184              (element-type 'base-char)
1185              (if-exists nil if-exists-given)
1186              (if-does-not-exist nil if-does-not-exist-given)
1187              (external-format :default)
1188              &aux ; Squelch assignment warning.
1189              (direction direction)
1190              (if-does-not-exist if-does-not-exist)
1191              (if-exists if-exists))
1192   #!+sb-doc
1193   "Return a stream which reads from or writes to FILENAME.
1194   Defined keywords:
1195    :DIRECTION - one of :INPUT, :OUTPUT, :IO, or :PROBE
1196    :ELEMENT-TYPE - the type of object to read or write, default BASE-CHAR
1197    :IF-EXISTS - one of :ERROR, :NEW-VERSION, :RENAME, :RENAME-AND-DELETE,
1198                        :OVERWRITE, :APPEND, :SUPERSEDE or NIL
1199    :IF-DOES-NOT-EXIST - one of :ERROR, :CREATE or NIL
1200   See the manual for details."
1201
1202   (declare (ignore external-format)) ; FIXME: CHECK-TYPE?  WARN-if-not?
1203   
1204   ;; Calculate useful stuff.
1205   (multiple-value-bind (input output mask)
1206       (case direction
1207         (:input  (values   t nil sb!unix:o_rdonly))
1208         (:output (values nil   t sb!unix:o_wronly))
1209         (:io     (values   t   t sb!unix:o_rdwr))
1210         (:probe  (values   t nil sb!unix:o_rdonly)))
1211     (declare (type index mask))
1212     (let* ((pathname (merge-pathnames filename))
1213            (namestring
1214             (cond ((unix-namestring pathname input))
1215                   ((and input (eq if-does-not-exist :create))
1216                    (unix-namestring pathname nil))
1217                   ((and (eq direction :io) (not if-does-not-exist-given))
1218                    (unix-namestring pathname nil)))))
1219       ;; Process if-exists argument if we are doing any output.
1220       (cond (output
1221              (unless if-exists-given
1222                (setf if-exists
1223                      (if (eq (pathname-version pathname) :newest)
1224                          :new-version
1225                          :error)))
1226              (ensure-one-of if-exists
1227                             '(:error :new-version :rename
1228                                      :rename-and-delete :overwrite
1229                                      :append :supersede nil)
1230                             :if-exists)
1231              (case if-exists
1232                ((:new-version :error nil)
1233                 (setf mask (logior mask sb!unix:o_excl)))
1234                ((:rename :rename-and-delete)
1235                 (setf mask (logior mask sb!unix:o_creat)))
1236                ((:supersede)
1237                 (setf mask (logior mask sb!unix:o_trunc)))
1238                (:append
1239                 (setf mask (logior mask sb!unix:o_append)))))
1240             (t
1241              (setf if-exists :ignore-this-arg)))
1242
1243       (unless if-does-not-exist-given
1244         (setf if-does-not-exist
1245               (cond ((eq direction :input) :error)
1246                     ((and output
1247                           (member if-exists '(:overwrite :append)))
1248                      :error)
1249                     ((eq direction :probe)
1250                      nil)
1251                     (t
1252                      :create))))
1253       (ensure-one-of if-does-not-exist
1254                      '(:error :create nil)
1255                      :if-does-not-exist)
1256       (if (eq if-does-not-exist :create)
1257         (setf mask (logior mask sb!unix:o_creat)))
1258
1259       (let ((original (case if-exists
1260                         ((:rename :rename-and-delete)
1261                          (pick-backup-name namestring))
1262                         ((:append)
1263                          ;; KLUDGE: Provent CLOSE from deleting
1264                          ;; appending streams when called with :ABORT T
1265                          namestring)))
1266             (delete-original (eq if-exists :rename-and-delete))
1267             (mode #o666))
1268         (when (and original (not (eq original namestring)))
1269           ;; We are doing a :RENAME or :RENAME-AND-DELETE. Determine
1270           ;; whether the file already exists, make sure the original
1271           ;; file is not a directory, and keep the mode.
1272           (let ((exists
1273                  (and namestring
1274                       (multiple-value-bind (okay err/dev inode orig-mode)
1275                           (sb!unix:unix-stat namestring)
1276                         (declare (ignore inode)
1277                                  (type (or index null) orig-mode))
1278                         (cond
1279                          (okay
1280                           (when (and output (= (logand orig-mode #o170000)
1281                                                #o40000))
1282                             (error 'simple-file-error
1283                                    :pathname namestring
1284                                    :format-control
1285                                    "can't open ~S for output: is a directory"
1286                                    :format-arguments (list namestring)))
1287                           (setf mode (logand orig-mode #o777))
1288                           t)
1289                          ((eql err/dev sb!unix:enoent)
1290                           nil)
1291                          (t
1292                           (simple-file-perror "can't find ~S"
1293                                               namestring
1294                                               err/dev)))))))
1295             (unless (and exists
1296                          (rename-the-old-one namestring original))
1297               (setf original nil)
1298               (setf delete-original nil)
1299               ;; In order to use :SUPERSEDE instead, we have to make
1300               ;; sure SB!UNIX:O_CREAT corresponds to
1301               ;; IF-DOES-NOT-EXIST. SB!UNIX:O_CREAT was set before
1302               ;; because of IF-EXISTS being :RENAME.
1303               (unless (eq if-does-not-exist :create)
1304                 (setf mask
1305                       (logior (logandc2 mask sb!unix:o_creat)
1306                               sb!unix:o_trunc)))
1307               (setf if-exists :supersede))))
1308
1309         ;; Now we can try the actual Unix open(2).
1310         (multiple-value-bind (fd errno)
1311             (if namestring
1312                 (sb!unix:unix-open namestring mask mode)
1313                 (values nil sb!unix:enoent))
1314           (labels ((open-error (format-control &rest format-arguments)
1315                      (error 'simple-file-error
1316                             :pathname pathname
1317                             :format-control format-control
1318                             :format-arguments format-arguments))
1319                    (vanilla-open-error ()
1320                      (simple-file-perror "error opening ~S" pathname errno)))
1321             (cond ((numberp fd)
1322                    (case direction
1323                      ((:input :output :io)
1324                       (make-fd-stream fd
1325                                       :input input
1326                                       :output output
1327                                       :element-type element-type
1328                                       :file namestring
1329                                       :original original
1330                                       :delete-original delete-original
1331                                       :pathname pathname
1332                                       :input-buffer-p t
1333                                       :auto-close t))
1334                      (:probe
1335                       (let ((stream
1336                              (%make-fd-stream :name namestring
1337                                               :fd fd
1338                                               :pathname pathname
1339                                               :element-type element-type)))
1340                         (close stream)
1341                         stream))))
1342                   ((eql errno sb!unix:enoent)
1343                    (case if-does-not-exist
1344                      (:error (vanilla-open-error))
1345                      (:create
1346                       (open-error "~@<The path ~2I~_~S ~I~_does not exist.~:>"
1347                                   pathname))
1348                      (t nil)))
1349                   ((and (eql errno sb!unix:eexist) (null if-exists))
1350                    nil)
1351                   (t
1352                    (vanilla-open-error)))))))))
1353 \f
1354 ;;;; initialization
1355
1356 ;;; the stream connected to the controlling terminal, or NIL if there is none
1357 (defvar *tty*)
1358
1359 ;;; the stream connected to the standard input (file descriptor 0)
1360 (defvar *stdin*)
1361
1362 ;;; the stream connected to the standard output (file descriptor 1)
1363 (defvar *stdout*)
1364
1365 ;;; the stream connected to the standard error output (file descriptor 2)
1366 (defvar *stderr*)
1367
1368 ;;; This is called when the cold load is first started up, and may also
1369 ;;; be called in an attempt to recover from nested errors.
1370 (defun stream-cold-init-or-reset ()
1371   (stream-reinit)
1372   (setf *terminal-io* (make-synonym-stream '*tty*))
1373   (setf *standard-output* (make-synonym-stream '*stdout*))
1374   (setf *standard-input* (make-synonym-stream '*stdin*))
1375   (setf *error-output* (make-synonym-stream '*stderr*))
1376   (setf *query-io* (make-synonym-stream '*terminal-io*))
1377   (setf *debug-io* *query-io*)
1378   (setf *trace-output* *standard-output*)
1379   (values))
1380
1381 ;;; This is called whenever a saved core is restarted.
1382 (defun stream-reinit ()
1383   (setf *available-buffers* nil)
1384   (setf *stdin*
1385         (make-fd-stream 0 :name "standard input" :input t :buffering :line))
1386   (setf *stdout*
1387         (make-fd-stream 1 :name "standard output" :output t :buffering :line))
1388   (setf *stderr*
1389         (make-fd-stream 2 :name "standard error" :output t :buffering :line))
1390   (let ((tty (sb!unix:unix-open "/dev/tty" sb!unix:o_rdwr #o666)))
1391     (if tty
1392         (setf *tty*
1393               (make-fd-stream tty
1394                               :name "the terminal"
1395                               :input t
1396                               :output t
1397                               :buffering :line
1398                               :auto-close t))
1399         (setf *tty* (make-two-way-stream *stdin* *stdout*))))
1400   (values))
1401 \f
1402 ;;;; miscellany
1403
1404 ;;; the Unix way to beep
1405 (defun beep (stream)
1406   (write-char (code-char bell-char-code) stream)
1407   (finish-output stream))
1408
1409 ;;; This is kind of like FILE-POSITION, but is an internal hack used
1410 ;;; by the filesys stuff to get and set the file name.
1411 ;;;
1412 ;;; FIXME: misleading name, screwy interface
1413 (defun file-name (stream &optional new-name)
1414   (when (typep stream 'file-stream)
1415       (cond (new-name
1416              (setf (fd-stream-pathname stream) new-name)
1417              (setf (fd-stream-file stream)
1418                    (unix-namestring new-name nil))
1419              t)
1420             (t
1421              (fd-stream-pathname stream)))))
1422 \f
1423 ;;;; international character support (which is trivial for our simple
1424 ;;;; character sets)
1425
1426 ;;;; (Those who do Lisp only in English might not remember that ANSI
1427 ;;;; requires these functions to be exported from package
1428 ;;;; COMMON-LISP.)
1429
1430 (defun file-string-length (stream object)
1431   (declare (type (or string character) object) (type file-stream stream))
1432   #!+sb-doc
1433   "Return the delta in STREAM's FILE-POSITION that would be caused by writing
1434    OBJECT to STREAM. Non-trivial only in implementations that support
1435    international character sets."
1436   (declare (ignore stream))
1437   (etypecase object
1438     (character 1)
1439     (string (length object))))
1440
1441 (defun stream-external-format (stream)
1442   (declare (type file-stream stream) (ignore stream))
1443   #!+sb-doc
1444   "Return :DEFAULT."
1445   :default)