0.9.2.43:
[sbcl.git] / contrib / sb-bsd-sockets / misc.lisp
1 (in-package :sb-bsd-sockets)
2
3 ;;; Miscellaneous things, placed here until I can find a logically more
4 ;;; coherent place to put them
5
6 ;;; I don't want to provide a complete interface to unix file
7 ;;; operations, for example, but being about to set O_NONBLOCK on a
8 ;;; socket is a necessary operation.
9
10 ;;; XXX bad (sizeof (int) ==4 ) assumptions
11
12 (defgeneric non-blocking-mode (socket)
13   (:documentation "Is SOCKET in non-blocking mode?"))
14
15 (defmethod non-blocking-mode ((socket socket))
16   (let ((fd (socket-file-descriptor socket)))
17     (sb-alien:with-alien ((arg integer))
18                          (> (logand
19                              (sockint::fcntl fd sockint::f-getfl arg)
20                              sockint::o-nonblock)
21                             0))))
22
23 (defgeneric (setf non-blocking-mode) (non-blocking-p socket)
24   (:documentation "Put SOCKET in non-blocking mode - or not, according to NON-BLOCKING-P"))
25
26 (defmethod (setf non-blocking-mode) (non-blocking-p (socket socket))
27   (declare (optimize (speed 3)))
28   (let* ((fd (socket-file-descriptor socket))
29          (arg1 (the (signed-byte 32) (sockint::fcntl fd sockint::f-getfl 0)))
30          (arg2
31           (if non-blocking-p
32               (logior arg1 sockint::o-nonblock)
33             (logand (lognot sockint::o-nonblock) arg1))))
34     (when (= (the (signed-byte 32) -1)
35              (the (signed-byte 32)
36                (sockint::fcntl fd sockint::f-setfl arg2)))
37       (socket-error "fcntl"))
38     non-blocking-p))
39
40