Add keyword args WAIT and TIMEOUT to ACCEPT-CONNECTION.
[iolib.git] / net.sockets / base-sockets.lisp
blobc943837c93063635ec2b0f75ff38022bc5c1cc06
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; indent-tabs-mode: nil -*-
2 ;;;
3 ;;; --- Base socket classes.
4 ;;;
6 (in-package :net.sockets)
8 ;;;; Sockets
10 (defclass socket (dual-channel-single-fd-mixin)
11 ((family :initarg :family :accessor socket-family)
12 (protocol :initarg :protocol :accessor socket-protocol)
13 (bound :initform nil :reader socket-bound-p :type boolean))
14 (:documentation "Base class for sockets."))
15 (unset-method-docstring #'socket-family () '(socket))
16 (set-function-docstring 'socket-family "Return the family of a socket.")
17 (unset-method-docstring #'socket-protocol () '(socket))
18 (set-function-docstring 'socket-protocol "Return the protocol of a socket.")
20 (defgeneric socket-os-fd (socket)
21 (:documentation "Returns the OS file descriptor of `SOCKET'."))
23 (defgeneric socket-type (socket)
24 (:documentation "Returns the socket type of `SOCKET' - one of :STREAM or :DATAGRAM."))
26 (defgeneric socket-open-p (socket)
27 (:documentation "Returns a boolean indicating whether or not the file descriptor of `SOCKET' is open."))
29 (defgeneric local-name (socket)
30 (:documentation "For INTERNET sockets, returns two values: the local host and the local port.
31 For LOCAL sockets, returns the local filename."))
33 (defgeneric local-host (socket)
34 (:documentation "Returns the local host of `SOCKET'.
35 Works only on INTERNET sockets."))
37 (defgeneric local-port (socket)
38 (:documentation "Returns the local port of `SOCKET' - an (unsigned-byte 16).
39 Works only on INTERNET sockets."))
41 (defgeneric local-filename (socket)
42 (:documentation "Returns the local filename of `SOCKET'.
43 Works only on LOCAL sockets."))
45 (defgeneric remote-name (socket)
46 (:documentation "For INTERNET sockets, returns two values: the remote host and the remote port.
47 For REMOTE sockets, returns the remote filename."))
49 (defgeneric remote-host (socket)
50 (:documentation "Returns the remote host of `SOCKET'.
51 Works only on INTERNET sockets."))
53 (defgeneric remote-port (socket)
54 (:documentation "Returns the remote port of `SOCKET' - an (unsigned-byte 16).
55 Works only on INTERNET sockets."))
57 (defgeneric remote-filename (socket)
58 (:documentation "Returns the remote filename of `SOCKET'.
59 Works only on LOCAL sockets."))
61 (defgeneric socket-option (socket option-name)
62 (:documentation "Returns the value(s) of OS options on `SOCKET'.
63 For a complete list of supported options see net.sockets/socket-options.lisp ."))
65 (defclass stream-socket (socket) ()
66 (:default-initargs :type :stream)
67 (:documentation "Mixin for sockets of type SOCK_STREAM."))
69 (defclass datagram-socket (socket) ()
70 (:default-initargs :type :datagram)
71 (:documentation "Mixin for sockets of type SOCK_DGRAM."))
73 (defgeneric disconnect (socket)
74 (:documentation "Disassociates `SOCKET' from any remote address.
75 Works only on DATAGRAM sockets."))
77 (define-symbol-macro +default-inet-family+
78 (if *ipv6* :ipv6 :ipv4))
80 (defclass internet-socket (socket) ()
81 (:default-initargs :family +default-inet-family+)
82 (:documentation "Mixin for sockets of domain AF_INET or AF_INET6."))
84 (defclass local-socket (socket) ()
85 (:default-initargs :family :local)
86 (:documentation "Mixin for sockets of domain AF_LOCAL."))
88 (defgeneric send-file-descriptor (socket file-descriptor)
89 (:documentation "Send `FILE-DESCRIPTOR' through `SOCKET'.
90 The receiving process must use RECEIVE-FILE-DESCRIPTOR to receive the
91 file descriptor in order for it to be valid in the receiving process."))
93 (defgeneric receive-file-descriptor (socket)
94 (:documentation "Receive a file descriptor as ancillary data through `SOCKET'."))
96 (defun socket-read-fn (fd buffer nbytes)
97 (%recvfrom fd buffer nbytes 0 (null-pointer) (null-pointer)))
99 (defun socket-write-fn (fd buffer nbytes)
100 (%sendto fd buffer nbytes 0 (null-pointer) 0))
102 (defclass active-socket (socket dual-channel-gray-stream) ()
103 (:default-initargs :read-fn 'socket-read-fn
104 :write-fn 'socket-write-fn)
105 (:documentation "Mixin class for active(client) sockets."))
107 (defgeneric connect (socket address &key &allow-other-keys)
108 (:documentation "Connects `SOCKET' to `ADDRESS'. For INTERNET sockets you can specify
109 the port to connect to using keyword argument `PORT'. The default value of `PORT' is 0,
110 which usually means letting the OS choose a random port to connect to."))
112 (defgeneric socket-connected-p (socket)
113 (:documentation "Returns a boolean specifying whether or not `SOCKET' is connected."))
115 (defgeneric shutdown (socket &key read write)
116 (:documentation "Shut down all or part of a connection. If `READ' it non-NIL, further receptions are
117 disallowed; if `WRITE' is non-NIL, further transmissions are disallowed. CLOSE must still be called on
118 `SOCKET' in order to release OS resources."))
120 (defgeneric receive-from (socket &rest args &key &allow-other-keys)
121 (:documentation "Receives data from `SOCKET'. If `BUFFER' is specified - which must be either a
122 string or a (simple-array (unsigned-byte 8) *) - then `START' and `END' are used as bounding index,
123 otherwise a buffer of size `SIZE' will be allocated.
125 Some flags can also be passed to recvfrom(2):
126 * `OUT-OF-BAND' for receiving out-of-band data - only for stream sockets
127 * `PEEK' for keeping the returned data in the kernel buffers
128 * `WAIT-ALL' for waiting until the entire buffer can be filled
129 * `DONT-WAIT' for making only the current call non-blocking
131 The first two values returned are the buffer and the number of elements that have been copied into the buffer.
132 For INTERNET DATAGRAM sockets, two additional values are returned: the host and port of the remote peer
133 from which the data was received.
134 For LOCAL DATAGRAM sockets, one additional values is returned: the filename of the remote peer
135 from which the data was received."))
137 (defgeneric send-to (socket buffer &rest args &key &allow-other-keys)
138 (:documentation "Send the contents of `BUFFER' to `SOCKET'.
139 `BUFFER' must be either a string or a vector that can be coerced to a (simple-array (unsigned-byte 8) *).
140 `START' and `END' are used a bounding index on `BUFFER'.
141 For disconnected datagram sockets, `REMOTE-HOST' and `REMOTE-PORT' or `REMOTE-FILENAME' are used
142 as destination for the data.
144 Some flags can also be passed to sendto(2):
145 * `OUT-OF-BAND' for receiving out-of-band data - only for stream sockets
146 * `DONT-WAIT' for making only the current call non-blocking
147 * `DONT-ROUTE' for sending only to hosts on directly connected networks, not using gateways
148 * `CONFIRM' for signalling progress on the link layer - only available on Linux and only with DATAGRAM sockets
149 * `MORE' for telling the kernel that there is more data to send - only available on Linux
151 Returns the number of bytes sent."))
153 (defclass passive-socket (socket)
154 ((listening :initform nil :reader socket-listening-p :type boolean)
155 (external-format :initarg :external-format :reader external-format-of)
156 (active-class :initarg :active-class :reader active-class
157 :type symbol :allocation :class))
158 (:default-initargs :external-format :default)
159 (:documentation "Mixin class for passive(server) sockets."))
161 (defgeneric bind-address (socket address &key &allow-other-keys)
162 (:documentation "Sets the local address of `SOCKET' to `ADDRESS'(and `PORT' for INTERNET sockets).
163 `REUSE-ADDRESS' sets the SO_REUSEADDR socket option on `SOCKET'."))
165 (defgeneric listen-on (socket &key &allow-other-keys)
166 (:documentation "Start allowing incoming connections on `SOCKET'.
167 `BACKLOG' specifies the maximum length of the queue of pending connections."))
169 (defgeneric accept-connection (passive-socket &key &allow-other-keys)
170 (:documentation "Returns one connection from the queue of pending connections on `SOCKET'.
171 If `WAIT' is true, waits until a connection is received or `TIMEOUT' expires in which case returns NIL.
172 If `WAIT' is false and there are no pending connections return NIL.
173 `EXTERNAL-FORMAT' optionally specifies the external format of the new socket - the default being
174 that of `SOCKET'. Buffer sizes for the new socket can also be specified using `INPUT-BUFFER-SIZE'
175 and `OUTPUT-BUFFER-SIZE'."))
177 (defclass socket-stream-internet-active
178 (active-socket stream-socket internet-socket) ()
179 (:documentation "Class representing active sockets of type SOCK_STREAM and domain AF_INET or AF_INET6."))
181 (defclass socket-stream-internet-passive
182 (passive-socket stream-socket internet-socket) ()
183 (:default-initargs :active-class 'socket-stream-internet-active)
184 (:documentation "Class representing passive sockets of type SOCK_STREAM and domain AF_INET or AF_INET6."))
186 (defclass socket-stream-local-active
187 (active-socket stream-socket local-socket) ()
188 (:documentation "Class representing active sockets of type SOCK_STREAM and domain AF_LOCAL."))
190 (defclass socket-stream-local-passive
191 (passive-socket stream-socket local-socket) ()
192 (:default-initargs :active-class 'socket-stream-local-active)
193 (:documentation "Class representing passive sockets of type SOCK_STREAM and domain AF_LOCAL."))
195 (defclass socket-datagram-internet-active
196 (active-socket datagram-socket internet-socket) ()
197 (:documentation "Class representing active sockets of type SOCK_DGRAM and domain AF_INET or AF_INET6."))
199 (defclass socket-datagram-local-active
200 (active-socket datagram-socket local-socket) ()
201 (:documentation "Class representing active sockets of type SOCK_DGRAM and domain AF_LOCAL."))