Hash :
13db0e47
Author :
Thomas de Grivel
Date :
2018-02-05T02:02:00
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
;;
;; unistd-stream - Unix file descriptor layer for cl-stream
;;
;; Copyright 2017,2018 Thomas de Grivel <thoxdg@gmail.com>
;;
;; Permission to use, copy, modify, and distribute this software for any
;; purpose with or without fee is hereby granted, provided that the above
;; copyright notice and this permission notice appear in all copies.
;;
;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
;; WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
;; MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
;; ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
;; WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
;; ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
;; OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
;;
(in-package :unistd-stream)
(deftype fixnum+ (&optional (start 0))
`(integer ,start ,most-positive-fixnum))
(defclass unistd-stream (stream)
((fd :initarg :fd
:reader stream-fd
:type file-descriptor)
(blocking-p :initarg :blocking-p
:type boolean))
(:documentation "Base class for file descriptor streams."))
(defmethod stream-blocking-p ((stream unistd-stream))
(or (when (slot-boundp stream 'blocking-p)
(slot-value stream 'blocking-p))
(setf (slot-value stream 'blocking-p)
(let ((flags (fcntl:getfl (stream-fd stream))))
(zerop (logand fcntl:+o-nonblock+ flags))))))
(defmethod (setf stream-blocking-p) (value (stream unistd-stream))
(let* ((fd (stream-fd stream))
(flags (fcntl:getfl fd))
(o-nonblock (not (= 0 (logand fcntl:+o-nonblock+ flags)))))
(cond
((and value (not o-nonblock))
t)
((and (not value) o-nonblock)
nil)
(t
(fcntl:setfl fd (if value
(logand (lognot fcntl:+o-nonblock+) flags)
(logior fcntl:+o-nonblock+ flags)))
(setf (slot-value stream 'blocking-p) value)))))
(defmethod stream-element-type ((stream unistd-stream))
'(unsigned-byte 8))
(defmethod close ((stream unistd-stream))
(unistd:close (stream-fd stream))
(call-next-method))
(defclass unistd-input-stream (unistd-stream buffered-input-stream)
()
(:documentation "A buffered input stream using UNISTD:READ."))
(defmethod make-stream-input-buffer ((stream unistd-input-stream))
(cffi:foreign-alloc :unsigned-char
:count (stream-input-buffer-size stream)))
(defmethod discard-stream-input-buffer ((stream unistd-input-stream))
(cffi:foreign-free (stream-input-buffer stream))
(setf (stream-input-buffer stream) nil))
(defmethod stream-fill-input-buffer ((stream unistd-input-stream))
(let* ((buffer (stream-input-buffer stream))
(length (stream-input-length stream))
(fd (stream-fd stream))
(buf (cffi:mem-aptr buffer :unsigned-char length))
(buflen (- (stream-input-buffer-size stream) length))
(r (if (stream-blocking-p stream)
(unistd:read fd buf buflen)
(unistd:read-non-blocking fd buf buflen))))
(cond ((eq :non-blocking r)
:non-blocking)
((= r 0)
:eof)
((< r 0)
(error 'stream-input-error :stream stream))
(t
(incf (stream-input-length stream) r)
nil))))
(defmethod stream-read-element-from-buffer ((stream unistd-input-stream))
(let ((element (cffi:mem-aref (stream-input-buffer stream) :unsigned-char
(stream-input-index stream))))
(incf (stream-input-index stream))
(values element nil)))
(defun unistd-input-stream (fd)
"Creates a buffered input stream for file descriptor FD."
(make-instance 'unistd-input-stream :fd fd))
(defclass unistd-output-stream (unistd-stream buffered-output-stream)
()
(:documentation "A buffered output stream using UNISTD:WRITE."))
(defmethod make-stream-output-buffer ((stream unistd-output-stream))
(cffi:foreign-alloc :unsigned-char
:count (stream-output-buffer-size stream)))
(defmethod discard-stream-output-buffer ((stream unistd-output-stream))
(cffi:foreign-free (stream-output-buffer stream))
(setf (stream-output-buffer stream) nil))
(defmethod stream-flush-output-buffer ((stream unistd-output-stream))
(let ((buffer (stream-output-buffer stream)))
(let* ((fd (stream-fd stream))
(index (stream-output-index stream))
(buf (cffi:mem-aptr buffer :unsigned-char index))
(buflen (- (stream-output-length stream) index))
(r (if (stream-blocking-p stream)
(unistd:write fd buf buflen)
(unistd:write-non-blocking fd buf buflen))))
(cond ((eq :non-blocking r)
:non-blocking)
((= 0 r)
:eof)
((< r 0)
(error 'stream-output-error :stream stream))
(t
(incf (stream-output-index stream) r)
(when (= (stream-output-index stream)
(stream-output-length stream))
(setf (stream-output-index stream) 0
(stream-output-length stream) 0))
nil)))))
(defmethod stream-write-element-to-buffer ((stream unistd-output-stream)
element)
(setf (cffi:mem-aref (stream-output-buffer stream) :unsigned-char
(stream-output-length stream))
element)
(incf (stream-output-length stream))
nil)
(defun unistd-output-stream (fd)
"Creates a buffered output stream for file descriptor FD."
(make-instance 'unistd-output-stream :fd fd))
(defclass unistd-io-stream (unistd-input-stream unistd-output-stream)
()
(:documentation "A buffered input/output stream using
UNISTD:READ and UNISTD:WRITE."))
(defmethod close ((stream unistd-io-stream))
(call-next-method)
(cffi:foreign-free (stream-input-buffer stream))
(cffi:foreign-free (stream-output-buffer stream)))
(defun unistd-io-stream (fd)
"Creates a buffered input/output stream for file descriptor FD."
(make-instance 'unistd-io-stream :fd fd))
(defun unistd-stream-open (pathname &key
(append nil)
(blocking t)
(create t)
(direction :io)
(input-buffer-size *stream-default-buffer-size*)
(mode #o777)
(output-buffer-size *stream-default-buffer-size*))
(let* ((flags (logior (if append
fcntl:+o-append+
0)
(if blocking
0
fcntl:+o-nonblock+)
(if create
fcntl:+o-creat+
0)
(ecase direction
((:input) fcntl:+o-rdonly+)
((:output) fcntl:+o-wronly+)
((:io) fcntl:+o-rdwr+))))
(fd (fcntl:open pathname flags mode)))
(make-instance (case direction
((:input) 'unistd-input-stream)
((:output) 'unistd-output-stream)
((:io) 'unistd-io-stream))
:fd fd
:input-buffer-size input-buffer-size
:output-buffer-size output-buffer-size)))