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