Branch
Hash :
dc0cbafd
Author :
Thomas de Grivel
Date :
2018-06-15T10:48:42
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
;;
;; 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 (ub8-stream)
((fd :initarg :fd
:reader stream-fd
:type unistd: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-close ((stream unistd-stream))
(when (stream-open-p stream)
(unistd:close (stream-fd stream))))
(defmethod stream-open-p ((stream unistd-stream))
(let ((fd (stream-fd stream)))
(unless (= -1 (unistd:c-dup2 fd fd))
t)))