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