lib: fix C compiler warnings in sha1, socket and sdl
[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 self->fd; `}
91
92 # List of events to be watched
93 fun events: Int `{ return self->events; `}
94
95 # List of events received by the last poll function
96 fun revents: Int `{ return self->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(self); `}
119
120 fun close: Int `{ return close(*self); `}
121
122 fun descriptor: Int `{ return *self; `}
123
124 fun connect(addrIn: NativeSocketAddrIn): Int `{
125 return connect(*self, (struct sockaddr*)addrIn, sizeof(*addrIn));
126 `}
127
128 fun write(buffer: String): Int
129 import String.to_cstring, String.length `{
130 return write(*self, (char*)String_to_cstring(buffer), String_length(buffer));
131 `}
132
133 # Write `value` as a single byte
134 fun write_byte(value: Int): Int `{
135 unsigned char byt = (unsigned char)value;
136 return write(*self, &byt, 1);
137 `}
138
139 fun read: String import NativeString.to_s_with_length, NativeString `{
140 char *c = new_NativeString(1024);
141 int n = read(*self, c, 1023);
142 if(n < 0) {
143 return NativeString_to_s_with_length("",0);
144 }
145 c[n] = 0;
146 return NativeString_to_s_with_length(c, n);
147 `}
148
149 # Sets an option for the socket
150 #
151 # Returns `true` on success.
152 fun setsockopt(level: NativeSocketOptLevels, option_name: NativeSocketOptNames, option_value: Int): Bool `{
153 int err = setsockopt(*self, level, option_name, &option_value, sizeof(int));
154 if(err != 0){
155 return 0;
156 }
157 return 1;
158 `}
159
160 fun bind(addrIn: NativeSocketAddrIn): Int `{ return bind(*self, (struct sockaddr*)addrIn, sizeof(*addrIn)); `}
161
162 fun listen(size: Int): Int `{ return listen(*self, size); `}
163
164 # Checks if the buffer is ready for any event specified when creating the pollfd structure
165 fun socket_poll(filedesc: PollFD, timeout: Int): Array[NativeSocketPollValues]
166 do
167 var result = native_poll(filedesc.poll_struct, timeout)
168 assert result != -1
169 return filedesc.check_response(result)
170 end
171
172 # Call to the poll function of the C socket
173 #
174 # Signature:
175 # int poll(struct pollfd fds[], nfds_t nfds, int timeout);
176 #
177 # Official documentation of the poll function:
178 #
179 # The poll() function provides applications with a mechanism for multiplexing input/output over a set of file descriptors.
180 # For each member of the array pointed to by fds, poll() shall examine the given file descriptor for the event(s) specified in events.
181 # The number of pollfd structures in the fds array is specified by nfds.
182 # The poll() function shall identify those file descriptors on which an application can read or write data, or on which certain events have occurred.
183 # The fds argument specifies the file descriptors to be examined and the events of interest for each file descriptor.
184 # It is a pointer to an array with one member for each open file descriptor of interest.
185 # The array's members are pollfd structures within which fd specifies an open file descriptor and events and revents are bitmasks constructed by
186 # OR'ing a combination of the pollfd flags.
187 private fun native_poll(filedesc: NativeSocketPollFD, timeout: Int): Int `{
188 int poll_return = poll(filedesc, 1, timeout);
189 return poll_return;
190 `}
191
192 private fun native_accept(addr_in: NativeSocketAddrIn): NativeSocket `{
193 socklen_t s = sizeof(struct sockaddr);
194 int socket = accept(*self, (struct sockaddr*)addr_in, &s);
195 if (socket == -1) return NULL;
196
197 int *ptr = malloc(sizeof(int));
198 *ptr = socket;
199 return ptr;
200 `}
201
202 fun accept: nullable SocketAcceptResult
203 do
204 var addrIn = new NativeSocketAddrIn
205 var s = native_accept(addrIn)
206 if s.address_is_null then return null
207 return new SocketAcceptResult(s, addrIn)
208 end
209
210 # Set wether this socket is non blocking
211 fun non_blocking=(value: Bool) `{
212 int flags = fcntl(*self, F_GETFL, 0);
213 if (flags == -1) flags = 0;
214
215 if (value) {
216 flags = flags | O_NONBLOCK;
217 } else if (flags & O_NONBLOCK) {
218 flags = flags - O_NONBLOCK;
219 } else {
220 return;
221 }
222 fcntl(*self, F_SETFL, flags);
223 `}
224 end
225
226 # Result of a call to `NativeSocket::accept`
227 class SocketAcceptResult
228
229 # Opened socket
230 var socket: NativeSocket
231
232 # Address of the remote client
233 var addr_in: NativeSocketAddrIn
234 end
235
236 extern class NativeSocketAddrIn `{ struct sockaddr_in* `}
237 new `{
238 struct sockaddr_in *sai = NULL;
239 sai = malloc(sizeof(struct sockaddr_in));
240 return sai;
241 `}
242
243 new with_port(port: Int, family: NativeSocketAddressFamilies) `{
244 struct sockaddr_in *sai = NULL;
245 sai = malloc(sizeof(struct sockaddr_in));
246 sai->sin_family = family;
247 sai->sin_port = htons(port);
248 sai->sin_addr.s_addr = INADDR_ANY;
249 return sai;
250 `}
251
252 new with_hostent(hostent: NativeSocketHostent, port: Int) `{
253 struct sockaddr_in *sai = NULL;
254 sai = malloc(sizeof(struct sockaddr_in));
255 sai->sin_family = hostent->h_addrtype;
256 sai->sin_port = htons(port);
257 memcpy((char*)&sai->sin_addr.s_addr, (char*)hostent->h_addr, hostent->h_length);
258 return sai;
259 `}
260
261 fun address: String import NativeString.to_s `{ return NativeString_to_s((char*)inet_ntoa(self->sin_addr)); `}
262
263 fun family: NativeSocketAddressFamilies `{ return self->sin_family; `}
264
265 fun port: Int `{ return ntohs(self->sin_port); `}
266
267 fun destroy `{ free(self); `}
268 end
269
270 extern class NativeSocketHostent `{ struct hostent* `}
271 private fun native_h_aliases(i: Int): String import NativeString.to_s `{ return NativeString_to_s(self->h_aliases[i]); `}
272
273 private fun native_h_aliases_reachable(i: Int): Bool `{ return (self->h_aliases[i] != NULL); `}
274
275 fun h_aliases: Array[String]
276 do
277 var i=0
278 var d=new Array[String]
279 loop
280 d.add(native_h_aliases(i))
281 if native_h_aliases_reachable(i+1) == false then break
282 i += 1
283 end
284 return d
285 end
286
287 fun h_addr: String import NativeString.to_s `{ return NativeString_to_s((char*)inet_ntoa(*(struct in_addr*)self->h_addr)); `}
288
289 fun h_addrtype: Int `{ return self->h_addrtype; `}
290
291 fun h_length: Int `{ return self->h_length; `}
292
293 fun h_name: String import NativeString.to_s `{ return NativeString_to_s(self->h_name); `}
294 end
295
296 extern class NativeTimeval `{ struct timeval* `}
297 new (seconds: Int, microseconds: Int) `{
298 struct timeval* tv = NULL;
299 tv = malloc(sizeof(struct timeval));
300 tv->tv_sec = seconds;
301 tv->tv_usec = microseconds;
302 return tv;
303 `}
304
305 fun seconds: Int `{ return self->tv_sec; `}
306
307 fun microseconds: Int `{ return self->tv_usec; `}
308
309 fun destroy `{ free(self); `}
310 end
311
312 extern class NativeSocketSet `{ fd_set* `}
313 new `{
314 fd_set *f = NULL;
315 f = malloc(sizeof(fd_set));
316 return f;
317 `}
318
319 fun set(s: NativeSocket) `{ FD_SET(*s, self); `}
320
321 fun is_set(s: NativeSocket): Bool `{ return FD_ISSET(*s, self); `}
322
323 fun zero `{ FD_ZERO(self); `}
324
325 fun clear(s: NativeSocket) `{ FD_CLR(*s, self); `}
326
327 fun destroy `{ free(self); `}
328 end
329
330 class NativeSocketObserver
331 # FIXME this implementation is broken. `reads`, `write` and `except`
332 # are boxed objects, passing them to a C function is illegal.
333 fun select(max: NativeSocket, reads: nullable NativeSocketSet, write: nullable NativeSocketSet,
334 except: nullable NativeSocketSet, timeout: NativeTimeval): Int `{
335 fd_set *rds = NULL,
336 *wts = NULL,
337 *exs = NULL;
338 struct timeval *tm = NULL;
339 if (reads != NULL) rds = (fd_set*)reads;
340 if (write != NULL) wts = (fd_set*)write;
341 if (except != NULL) exs = (fd_set*)except;
342 if (timeout != NULL) tm = (struct timeval*)timeout;
343 return select(*max, rds, wts, exs, tm);
344 `}
345 end
346
347 extern class NativeSocketTypes `{ int `}
348 new sock_stream `{ return SOCK_STREAM; `}
349 new sock_dgram `{ return SOCK_DGRAM; `}
350 new sock_raw `{ return SOCK_RAW; `}
351 new sock_seqpacket `{ return SOCK_SEQPACKET; `}
352 end
353
354 extern class NativeSocketAddressFamilies `{ int `}
355 new af_null `{ return 0; `}
356
357 # Unspecified
358 new af_unspec `{ return AF_UNSPEC; `}
359
360 # Local to host (pipes)
361 new af_unix `{ return AF_UNIX; `}
362
363 # For backward compatibility
364 new af_local `{ return AF_LOCAL; `}
365
366 # Internetwork: UDP, TCP, etc.
367 new af_inet `{ return AF_INET; `}
368
369 # IBM SNA
370 new af_sna `{ return AF_SNA; `}
371
372 # DECnet
373 new af_decnet `{ return AF_DECnet; `}
374
375 # Internal Routing Protocol
376 new af_route `{ return AF_ROUTE; `}
377
378 # Novell Internet Protocol
379 new af_ipx `{ return AF_IPX; `}
380
381 # IPv6
382 new af_inet6 `{ return AF_INET6; `}
383
384 new af_max `{ return AF_MAX; `}
385 end
386
387 extern class NativeSocketProtocolFamilies `{ int `}
388 new pf_null `{ return 0; `}
389 new pf_unspec `{ return PF_UNSPEC; `}
390 new pf_local `{ return PF_LOCAL; `}
391 new pf_unix `{ return PF_UNIX; `}
392 new pf_inet `{ return PF_INET; `}
393 new pf_sna `{ return PF_SNA; `}
394 new pf_decnet `{ return PF_DECnet; `}
395 new pf_route `{ return PF_ROUTE; `}
396 new pf_ipx `{ return PF_IPX; `}
397 new pf_key `{ return PF_KEY; `}
398 new pf_inet6 `{ return PF_INET6; `}
399 new pf_max `{ return PF_MAX; `}
400 end
401
402 # Level on which to set options
403 extern class NativeSocketOptLevels `{ int `}
404
405 # Dummy for IP (As defined in C)
406 new ip `{ return IPPROTO_IP;`}
407
408 # Control message protocol
409 new icmp `{ return IPPROTO_ICMP;`}
410
411 # Use TCP
412 new tcp `{ return IPPROTO_TCP; `}
413
414 # Socket level options
415 new socket `{ return SOL_SOCKET; `}
416 end
417
418 # Options for socket, use with setsockopt
419 extern class NativeSocketOptNames `{ int `}
420
421 # Enables debugging information
422 new debug `{ return SO_DEBUG; `}
423
424 # Authorizes the broadcasting of messages
425 new broadcast `{ return SO_BROADCAST; `}
426
427 # Authorizes the reuse of the local address
428 new reuseaddr `{ return SO_REUSEADDR; `}
429
430 # Authorizes the use of keep-alive packets in a connection
431 new keepalive `{ return SO_KEEPALIVE; `}
432
433 # Disable the Nagle algorithm and send data as soon as possible, in smaller packets
434 new tcp_nodelay `{ return TCP_NODELAY; `}
435 end
436
437 # Used for the poll function of a socket, mix several Poll values to check for events on more than one type of event
438 extern class NativeSocketPollValues `{ int `}
439
440 # Data other than high-priority data may be read without blocking.
441 new pollin `{ return POLLIN; `}
442
443 # Normal data may be read without blocking.
444 new pollrdnorm `{ return POLLRDNORM; `}
445
446 # Priority data may be read without blocking.
447 new pollrdband `{ return POLLRDBAND; `}
448
449 # High-priority data may be read without blocking.
450 new pollpri `{ return POLLPRI; `}
451
452 # Normal data may be written without blocking.
453 new pollout `{ return POLLOUT; `}
454
455 # Equivalent to POLLOUT
456 new pollwrnorm `{ return POLLWRNORM; `}
457
458 # Priority data may be written.
459 new pollwrband `{ return POLLWRBAND; `}
460
461 # An error has occurred on the device or stream.
462 #
463 # This flag is only valid in the revents bitmask; it shall be ignored in the events member.
464 new pollerr `{ return POLLERR; `}
465
466 # The device has been disconnected.
467 #
468 # This event and POLLOUT are mutually-exclusive; a stream can never be
469 # writable if a hangup has occurred. However, this event and POLLIN,
470 # POLLRDNORM, POLLRDBAND, or POLLPRI are not mutually-exclusive.
471 #
472 # This flag is only valid in the revents bitmask; it shall be ignored in the events member.
473 new pollhup `{ return POLLHUP; `}
474
475 # The specified fd value is invalid.
476 #
477 # This flag is only valid in the revents member; it shall ignored in the events member.
478 new pollnval `{ return POLLNVAL; `}
479
480 # Combines two NativeSocketPollValues
481 private fun +(other: NativeSocketPollValues): NativeSocketPollValues `{
482 return self | other;
483 `}
484 end
485
486 redef class Sys
487 # Get network host entry
488 fun gethostbyname(name: NativeString): NativeSocketHostent `{
489 return gethostbyname(name);
490 `}
491
492 # Last error raised by `gethostbyname`
493 fun h_errno: HErrno `{ return h_errno; `}
494 end
495
496 # Error code of `Sys::h_errno`
497 extern class HErrno `{ int `}
498 # The specified host is unknown
499 fun host_not_found: Bool `{ return self == HOST_NOT_FOUND; `}
500
501 # The requested name is valid but does not have an IP address
502 #
503 # Same as `no_data`.
504 fun no_address: Bool `{ return self == NO_ADDRESS; `}
505
506 # The requested name is valid byt does not have an IP address
507 #
508 # Same as `no_address`.
509 fun no_data: Bool `{ return self == NO_DATA; `}
510
511 # A nonrecoverable name server error occurred
512 fun no_recovery: Bool `{ return self == NO_RECOVERY; `}
513
514 # A temporary error occurred on an authoritative name server, try again later
515 fun try_again: Bool `{ return self == TRY_AGAIN; `}
516
517 redef fun to_s
518 do
519 if host_not_found then
520 return "The specified host is unknown"
521 else if no_address then
522 return "The requested name is valid but does not have an IP address"
523 else if no_recovery then
524 return "A nonrecoverable name server error occurred"
525 else if try_again then
526 return "A temporary error occurred on an authoritative name server, try again later"
527 else
528 # This may happen if another call was made to `gethostbyname`
529 # before we fetch the error code.
530 return "Unknown error on `gethostbyname`"
531 end
532 end
533 end