lib/socket: `PollFD` is `FinalizableOnce`
[nit.git] / lib / socket / socket_c.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2013 Matthieu Lucas <lucasmatthieu@gmail.com>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Low-level socket functionalities
18 module socket_c
19
20 in "C Header" `{
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <string.h>
25 #include <sys/socket.h>
26 #include <sys/types.h>
27 #include <netinet/in.h>
28 #include <arpa/inet.h>
29 #include <netdb.h>
30 #include <sys/poll.h>
31 `}
32
33 in "C" `{
34 #include <fcntl.h>
35 #include <netinet/tcp.h>
36 `}
37
38 # Wrapper for the data structure PollFD used for polling on a socket
39 class PollFD
40 super FinalizableOnce
41
42 # The PollFD object
43 private var poll_struct: NativeSocketPollFD
44
45 # A collection of the events to be watched
46 var events: Array[NativeSocketPollValues]
47
48 init(pid: Int, events: Array[NativeSocketPollValues])
49 do
50 assert events.length >= 1
51 self.events = events
52
53 var events_in_one = events[0]
54
55 for i in [1 .. events.length-1] do
56 events_in_one += events[i]
57 end
58
59 self.poll_struct = new NativeSocketPollFD(pid, events_in_one)
60 end
61
62 # Reads the response and returns an array with the type of events that have been found
63 private fun check_response(response: Int): Array[NativeSocketPollValues]
64 do
65 var resp_array = new Array[NativeSocketPollValues]
66 for i in events do
67 if c_check_resp(response, i) != 0 then
68 resp_array.push(i)
69 end
70 end
71 return resp_array
72 end
73
74 # Checks if the poll call has returned true for a particular type of event
75 private fun c_check_resp(response: Int, mask: NativeSocketPollValues): Int
76 `{
77 return response & mask;
78 `}
79
80 redef fun finalize_once
81 do
82 poll_struct.free
83 end
84 end
85
86 # Data structure used by the poll function
87 private extern class NativeSocketPollFD `{ struct pollfd * `}
88
89 # File descriptor
90 fun fd: Int `{ return recv->fd; `}
91
92 # List of events to be watched
93 fun events: Int `{ return recv->events; `}
94
95 # List of events received by the last poll function
96 fun revents: Int `{ return recv->revents; `}
97
98 new (pid: Int, events: NativeSocketPollValues) `{
99 struct pollfd *poll = malloc(sizeof(struct pollfd));
100 poll->fd = pid;
101 poll->events = events;
102 return poll;
103 `}
104 end
105
106 extern class NativeSocket `{ int* `}
107
108 new socket(domain: NativeSocketAddressFamilies, socketType: NativeSocketTypes, protocol: NativeSocketProtocolFamilies) `{
109 int ds = socket(domain, socketType, protocol);
110 if(ds == -1){
111 return NULL;
112 }
113 int *d = malloc(sizeof(int));
114 memcpy(d, &ds, sizeof(ds));
115 return d;
116 `}
117
118 fun destroy `{ free(recv); `}
119
120 fun close: Int `{ return close(*recv); `}
121
122 fun descriptor: Int `{ return *recv; `}
123
124 fun gethostbyname(n: String): NativeSocketHostent import String.to_cstring `{ return gethostbyname(String_to_cstring(n)); `}
125
126 fun connect(addrIn: NativeSocketAddrIn): Int `{
127 return connect(*recv, (struct sockaddr*)addrIn, sizeof(*addrIn));
128 `}
129
130 fun write(buffer: String): Int
131 import String.to_cstring, String.length `{
132 return write(*recv, (char*)String_to_cstring(buffer), String_length(buffer));
133 `}
134
135 fun read: String import NativeString.to_s_with_length `{
136 static char c[1024];
137 int n = read(*recv, c, 1024);
138 if(n < 0) {
139 return NativeString_to_s_with_length("",0);
140 }
141 char* ret = malloc(n + 1);
142 memcpy(ret, c, n);
143 ret[n] = '\0';
144 return NativeString_to_s_with_length(ret, n);
145 `}
146
147 # Sets an option for the socket
148 fun setsockopt(level: NativeSocketOptLevels, option_name: NativeSocketOptNames, option_value: Int) `{
149 int err = setsockopt(*recv, level, option_name, &option_value, sizeof(int));
150 if(err != 0){
151 perror("Error on setsockopts: ");
152 exit(1);
153 }
154 `}
155
156 fun bind(addrIn: NativeSocketAddrIn): Int `{ return bind(*recv, (struct sockaddr*)addrIn, sizeof(*addrIn)); `}
157
158 fun listen(size: Int): Int `{ return listen(*recv, size); `}
159
160 # Checks if the buffer is ready for any event specified when creating the pollfd structure
161 fun socket_poll(filedesc: PollFD, timeout: Int): Array[NativeSocketPollValues]
162 do
163 var result = native_poll(filedesc.poll_struct, timeout)
164 assert result != -1
165 return filedesc.check_response(result)
166 end
167
168 # Call to the poll function of the C socket
169 #
170 # Signature:
171 # int poll(struct pollfd fds[], nfds_t nfds, int timeout);
172 #
173 # Official documentation of the poll function:
174 #
175 # The poll() function provides applications with a mechanism for multiplexing input/output over a set of file descriptors.
176 # For each member of the array pointed to by fds, poll() shall examine the given file descriptor for the event(s) specified in events.
177 # The number of pollfd structures in the fds array is specified by nfds.
178 # The poll() function shall identify those file descriptors on which an application can read or write data, or on which certain events have occurred.
179 # The fds argument specifies the file descriptors to be examined and the events of interest for each file descriptor.
180 # It is a pointer to an array with one member for each open file descriptor of interest.
181 # The array's members are pollfd structures within which fd specifies an open file descriptor and events and revents are bitmasks constructed by
182 # OR'ing a combination of the pollfd flags.
183 private fun native_poll(filedesc: NativeSocketPollFD, timeout: Int): Int `{
184 int poll_return = poll(filedesc, 1, timeout);
185 return poll_return;
186 `}
187
188 private fun native_accept(addr_in: NativeSocketAddrIn): NativeSocket `{
189 socklen_t s = sizeof(struct sockaddr);
190 int socket = accept(*recv, (struct sockaddr*)addr_in, &s);
191 if (socket == -1) return NULL;
192
193 int *ptr = malloc(sizeof(int));
194 *ptr = socket;
195 return ptr;
196 `}
197
198 fun accept: nullable SocketAcceptResult
199 do
200 var addrIn = new NativeSocketAddrIn
201 var s = native_accept(addrIn)
202 if s.address_is_null then return null
203 return new SocketAcceptResult(s, addrIn)
204 end
205
206 # Set wether this socket is non blocking
207 fun non_blocking=(value: Bool) `{
208 int flags = fcntl(*recv, F_GETFL, 0);
209 if (flags == -1) flags = 0;
210
211 if (value) {
212 flags = flags | O_NONBLOCK;
213 } else if (flags & O_NONBLOCK) {
214 flags = flags - O_NONBLOCK;
215 } else {
216 return;
217 }
218 fcntl(*recv, F_SETFL, flags);
219 `}
220 end
221
222 # Result of a call to `NativeSocket::accept`
223 class SocketAcceptResult
224
225 # Opened socket
226 var socket: NativeSocket
227
228 # Address of the remote client
229 var addr_in: NativeSocketAddrIn
230 end
231
232 extern class NativeSocketAddrIn `{ struct sockaddr_in* `}
233 new `{
234 struct sockaddr_in *sai = NULL;
235 sai = malloc(sizeof(struct sockaddr_in));
236 return sai;
237 `}
238
239 new with(port: Int, family: NativeSocketAddressFamilies) `{
240 struct sockaddr_in *sai = NULL;
241 sai = malloc(sizeof(struct sockaddr_in));
242 sai->sin_family = family;
243 sai->sin_port = htons(port);
244 sai->sin_addr.s_addr = INADDR_ANY;
245 return sai;
246 `}
247
248 new with_hostent(hostent: NativeSocketHostent, port: Int) `{
249 struct sockaddr_in *sai = NULL;
250 sai = malloc(sizeof(struct sockaddr_in));
251 sai->sin_family = hostent->h_addrtype;
252 sai->sin_port = htons(port);
253 memcpy((char*)&sai->sin_addr.s_addr, (char*)hostent->h_addr, hostent->h_length);
254 return sai;
255 `}
256
257 fun address: String import NativeString.to_s `{ return NativeString_to_s((char*)inet_ntoa(recv->sin_addr)); `}
258
259 fun family: NativeSocketAddressFamilies `{ return recv->sin_family; `}
260
261 fun port: Int `{ return ntohs(recv->sin_port); `}
262
263 fun destroy `{ free(recv); `}
264 end
265
266 extern class NativeSocketHostent `{ struct hostent* `}
267 private fun native_h_aliases(i: Int): String import NativeString.to_s `{ return NativeString_to_s(recv->h_aliases[i]); `}
268
269 private fun native_h_aliases_reachable(i: Int): Bool `{ return (recv->h_aliases[i] != NULL); `}
270
271 fun h_aliases: Array[String]
272 do
273 var i=0
274 var d=new Array[String]
275 loop
276 d.add(native_h_aliases(i))
277 if native_h_aliases_reachable(i+1) == false then break
278 i += 1
279 end
280 return d
281 end
282
283 fun h_addr: String import NativeString.to_s `{ return NativeString_to_s((char*)inet_ntoa(*(struct in_addr*)recv->h_addr)); `}
284
285 fun h_addrtype: Int `{ return recv->h_addrtype; `}
286
287 fun h_length: Int `{ return recv->h_length; `}
288
289 fun h_name: String import NativeString.to_s `{ return NativeString_to_s(recv->h_name); `}
290 end
291
292 extern class NativeTimeval `{ struct timeval* `}
293 new (seconds: Int, microseconds: Int) `{
294 struct timeval* tv = NULL;
295 tv = malloc(sizeof(struct timeval));
296 tv->tv_sec = seconds;
297 tv->tv_usec = microseconds;
298 return tv;
299 `}
300
301 fun seconds: Int `{ return recv->tv_sec; `}
302
303 fun microseconds: Int `{ return recv->tv_usec; `}
304
305 fun destroy `{ free(recv); `}
306 end
307
308 extern class NativeSocketSet `{ fd_set* `}
309 new `{
310 fd_set *f = NULL;
311 f = malloc(sizeof(fd_set));
312 return f;
313 `}
314
315 fun set(s: NativeSocket) `{ FD_SET(*s, recv); `}
316
317 fun is_set(s: NativeSocket): Bool `{ return FD_ISSET(*s, recv); `}
318
319 fun zero `{ FD_ZERO(recv); `}
320
321 fun clear(s: NativeSocket) `{ FD_CLR(*s, recv); `}
322
323 fun destroy `{ free(recv); `}
324 end
325
326 class NativeSocketObserver
327 # FIXME this implementation is broken. `reads`, `write` and `except`
328 # are boxed objects, passing them to a C function is illegal.
329 fun select(max: NativeSocket, reads: nullable NativeSocketSet, write: nullable NativeSocketSet,
330 except: nullable NativeSocketSet, timeout: NativeTimeval): Int `{
331 fd_set *rds, *wts, *exs = NULL;
332 struct timeval *tm = NULL;
333 if (reads != NULL) rds = (fd_set*)reads;
334 if (write != NULL) wts = (fd_set*)write;
335 if (except != NULL) exs = (fd_set*)except;
336 if (timeout != NULL) tm = (struct timeval*)timeout;
337 return select(*max, rds, wts, exs, tm);
338 `}
339 end
340
341 extern class NativeSocketTypes `{ int `}
342 new sock_stream `{ return SOCK_STREAM; `}
343 new sock_dgram `{ return SOCK_DGRAM; `}
344 new sock_raw `{ return SOCK_RAW; `}
345 new sock_seqpacket `{ return SOCK_SEQPACKET; `}
346 end
347
348 extern class NativeSocketAddressFamilies `{ int `}
349 new af_null `{ return 0; `}
350
351 # Unspecified
352 new af_unspec `{ return AF_UNSPEC; `}
353
354 # Local to host (pipes)
355 new af_unix `{ return AF_UNIX; `}
356
357 # For backward compatibility
358 new af_local `{ return AF_LOCAL; `}
359
360 # Internetwork: UDP, TCP, etc.
361 new af_inet `{ return AF_INET; `}
362
363 # IBM SNA
364 new af_sna `{ return AF_SNA; `}
365
366 # DECnet
367 new af_decnet `{ return AF_DECnet; `}
368
369 # Internal Routing Protocol
370 new af_route `{ return AF_ROUTE; `}
371
372 # Novell Internet Protocol
373 new af_ipx `{ return AF_IPX; `}
374
375 # IPv6
376 new af_inet6 `{ return AF_INET6; `}
377
378 new af_max `{ return AF_MAX; `}
379 end
380
381 extern class NativeSocketProtocolFamilies `{ int `}
382 new pf_null `{ return 0; `}
383 new pf_unspec `{ return PF_UNSPEC; `}
384 new pf_local `{ return PF_LOCAL; `}
385 new pf_unix `{ return PF_UNIX; `}
386 new pf_inet `{ return PF_INET; `}
387 new pf_sna `{ return PF_SNA; `}
388 new pf_decnet `{ return PF_DECnet; `}
389 new pf_route `{ return PF_ROUTE; `}
390 new pf_ipx `{ return PF_IPX; `}
391 new pf_key `{ return PF_KEY; `}
392 new pf_inet6 `{ return PF_INET6; `}
393 new pf_max `{ return PF_MAX; `}
394 end
395
396 # Level on which to set options
397 extern class NativeSocketOptLevels `{ int `}
398
399 # Dummy for IP (As defined in C)
400 new ip `{ return IPPROTO_IP;`}
401
402 # Control message protocol
403 new icmp `{ return IPPROTO_ICMP;`}
404
405 # Use TCP
406 new tcp `{ return IPPROTO_TCP; `}
407
408 # Socket level options
409 new socket `{ return SOL_SOCKET; `}
410 end
411
412 # Options for socket, use with setsockopt
413 extern class NativeSocketOptNames `{ int `}
414
415 # Enables debugging information
416 new debug `{ return SO_DEBUG; `}
417
418 # Authorizes the broadcasting of messages
419 new broadcast `{ return SO_BROADCAST; `}
420
421 # Authorizes the reuse of the local address
422 new reuseaddr `{ return SO_REUSEADDR; `}
423
424 # Authorizes the use of keep-alive packets in a connection
425 new keepalive `{ return SO_KEEPALIVE; `}
426
427 # Disable the Nagle algorithm and send data as soon as possible, in smaller packets
428 new tcp_nodelay `{ return TCP_NODELAY; `}
429 end
430
431 # Used for the poll function of a socket, mix several Poll values to check for events on more than one type of event
432 extern class NativeSocketPollValues `{ int `}
433
434 # Data other than high-priority data may be read without blocking.
435 new pollin `{ return POLLIN; `}
436
437 # Normal data may be read without blocking.
438 new pollrdnorm `{ return POLLRDNORM; `}
439
440 # Priority data may be read without blocking.
441 new pollrdband `{ return POLLRDBAND; `}
442
443 # High-priority data may be read without blocking.
444 new pollpri `{ return POLLPRI; `}
445
446 # Normal data may be written without blocking.
447 new pollout `{ return POLLOUT; `}
448
449 # Equivalent to POLLOUT
450 new pollwrnorm `{ return POLLWRNORM; `}
451
452 # Priority data may be written.
453 new pollwrband `{ return POLLWRBAND; `}
454
455 # An error has occurred on the device or stream.
456 #
457 # This flag is only valid in the revents bitmask; it shall be ignored in the events member.
458 new pollerr `{ return POLLERR; `}
459
460 # The device has been disconnected.
461 #
462 # This event and POLLOUT are mutually-exclusive; a stream can never be
463 # writable if a hangup has occurred. However, this event and POLLIN,
464 # POLLRDNORM, POLLRDBAND, or POLLPRI are not mutually-exclusive.
465 #
466 # This flag is only valid in the revents bitmask; it shall be ignored in the events member.
467 new pollhup `{ return POLLHUP; `}
468
469 # The specified fd value is invalid.
470 #
471 # This flag is only valid in the revents member; it shall ignored in the events member.
472 new pollnval `{ return POLLNVAL; `}
473
474 # Combines two NativeSocketPollValues
475 private fun +(other: NativeSocketPollValues): NativeSocketPollValues `{
476 return recv | other;
477 `}
478 end