]> git.lizzy.rs Git - rust.git/blob - src/librustuv/uvll.rs
uv: Remove lots of uv/C++ wrappers
[rust.git] / src / librustuv / uvll.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 /*!
12  * Low-level bindings to the libuv library.
13  *
14  * This module contains a set of direct, 'bare-metal' wrappers around
15  * the libuv C-API.
16  *
17  * We're not bothering yet to redefine uv's structs as Rust structs
18  * because they are quite large and change often between versions.
19  * The maintenance burden is just too high. Instead we use the uv's
20  * `uv_handle_size` and `uv_req_size` to find the correct size of the
21  * structs and allocate them on the heap. This can be revisited later.
22  *
23  * There are also a collection of helper functions to ease interacting
24  * with the low-level API.
25  *
26  * As new functionality, existent in uv.h, is added to the rust stdlib,
27  * the mappings should be added in this module.
28  */
29
30 #[allow(non_camel_case_types)]; // C types
31
32 use std::libc::{size_t, c_int, c_uint, c_void, c_char, uintptr_t};
33 use std::libc::ssize_t;
34 use std::libc::{malloc, free};
35 use std::libc;
36 use std::vec;
37
38 pub use self::errors::*;
39
40 pub static OK: c_int = 0;
41 pub static EOF: c_int = -4095;
42 pub static UNKNOWN: c_int = -4094;
43
44 // uv-errno.h redefines error codes for windows, but not for unix...
45
46 #[cfg(windows)]
47 pub mod errors {
48     use std::libc::c_int;
49
50     pub static EACCES: c_int = -4093;
51     pub static ECONNREFUSED: c_int = -4079;
52     pub static ECONNRESET: c_int = -4078;
53     pub static ENOTCONN: c_int = -4054;
54     pub static EPIPE: c_int = -4048;
55     pub static ECONNABORTED: c_int = -4080;
56 }
57 #[cfg(not(windows))]
58 pub mod errors {
59     use std::libc;
60     use std::libc::c_int;
61
62     pub static EACCES: c_int = -libc::EACCES;
63     pub static ECONNREFUSED: c_int = -libc::ECONNREFUSED;
64     pub static ECONNRESET: c_int = -libc::ECONNRESET;
65     pub static ENOTCONN: c_int = -libc::ENOTCONN;
66     pub static EPIPE: c_int = -libc::EPIPE;
67     pub static ECONNABORTED: c_int = -libc::ECONNABORTED;
68 }
69
70 pub static PROCESS_SETUID: c_int = 1 << 0;
71 pub static PROCESS_SETGID: c_int = 1 << 1;
72 pub static PROCESS_WINDOWS_VERBATIM_ARGUMENTS: c_int = 1 << 2;
73 pub static PROCESS_DETACHED: c_int = 1 << 3;
74 pub static PROCESS_WINDOWS_HIDE: c_int = 1 << 4;
75
76 pub static STDIO_IGNORE: c_int = 0x00;
77 pub static STDIO_CREATE_PIPE: c_int = 0x01;
78 pub static STDIO_INHERIT_FD: c_int = 0x02;
79 pub static STDIO_INHERIT_STREAM: c_int = 0x04;
80 pub static STDIO_READABLE_PIPE: c_int = 0x10;
81 pub static STDIO_WRITABLE_PIPE: c_int = 0x20;
82
83 // see libuv/include/uv-unix.h
84 #[cfg(unix)]
85 pub struct uv_buf_t {
86     base: *u8,
87     len: libc::size_t,
88 }
89
90 // see libuv/include/uv-win.h
91 #[cfg(windows)]
92 pub struct uv_buf_t {
93     len: u32,
94     base: *u8,
95 }
96
97 #[repr(C)]
98 pub enum uv_run_mode {
99     RUN_DEFAULT = 0,
100     RUN_ONCE,
101     RUN_NOWAIT,
102 }
103
104 pub struct uv_process_options_t {
105     exit_cb: uv_exit_cb,
106     file: *libc::c_char,
107     args: **libc::c_char,
108     env: **libc::c_char,
109     cwd: *libc::c_char,
110     flags: libc::c_uint,
111     stdio_count: libc::c_int,
112     stdio: *uv_stdio_container_t,
113     uid: uv_uid_t,
114     gid: uv_gid_t,
115 }
116
117 // These fields are private because they must be interfaced with through the
118 // functions below.
119 pub struct uv_stdio_container_t {
120     priv flags: libc::c_int,
121     priv stream: *uv_stream_t,
122 }
123
124 pub type uv_handle_t = c_void;
125 pub type uv_loop_t = c_void;
126 pub type uv_idle_t = c_void;
127 pub type uv_tcp_t = c_void;
128 pub type uv_udp_t = c_void;
129 pub type uv_connect_t = c_void;
130 pub type uv_connection_t = c_void;
131 pub type uv_write_t = c_void;
132 pub type uv_async_t = c_void;
133 pub type uv_timer_t = c_void;
134 pub type uv_stream_t = c_void;
135 pub type uv_fs_t = c_void;
136 pub type uv_udp_send_t = c_void;
137 pub type uv_getaddrinfo_t = c_void;
138 pub type uv_process_t = c_void;
139 pub type uv_pipe_t = c_void;
140 pub type uv_tty_t = c_void;
141 pub type uv_signal_t = c_void;
142
143 pub struct uv_timespec_t {
144     tv_sec: libc::c_long,
145     tv_nsec: libc::c_long
146 }
147
148 pub struct uv_stat_t {
149     st_dev: libc::uint64_t,
150     st_mode: libc::uint64_t,
151     st_nlink: libc::uint64_t,
152     st_uid: libc::uint64_t,
153     st_gid: libc::uint64_t,
154     st_rdev: libc::uint64_t,
155     st_ino: libc::uint64_t,
156     st_size: libc::uint64_t,
157     st_blksize: libc::uint64_t,
158     st_blocks: libc::uint64_t,
159     st_flags: libc::uint64_t,
160     st_gen: libc::uint64_t,
161     st_atim: uv_timespec_t,
162     st_mtim: uv_timespec_t,
163     st_ctim: uv_timespec_t,
164     st_birthtim: uv_timespec_t
165 }
166
167 impl uv_stat_t {
168     pub fn new() -> uv_stat_t {
169         uv_stat_t {
170             st_dev: 0,
171             st_mode: 0,
172             st_nlink: 0,
173             st_uid: 0,
174             st_gid: 0,
175             st_rdev: 0,
176             st_ino: 0,
177             st_size: 0,
178             st_blksize: 0,
179             st_blocks: 0,
180             st_flags: 0,
181             st_gen: 0,
182             st_atim: uv_timespec_t { tv_sec: 0, tv_nsec: 0 },
183             st_mtim: uv_timespec_t { tv_sec: 0, tv_nsec: 0 },
184             st_ctim: uv_timespec_t { tv_sec: 0, tv_nsec: 0 },
185             st_birthtim: uv_timespec_t { tv_sec: 0, tv_nsec: 0 }
186         }
187     }
188     pub fn is_file(&self) -> bool {
189         ((self.st_mode) & libc::S_IFMT as libc::uint64_t) == libc::S_IFREG as libc::uint64_t
190     }
191     pub fn is_dir(&self) -> bool {
192         ((self.st_mode) & libc::S_IFMT as libc::uint64_t) == libc::S_IFDIR as libc::uint64_t
193     }
194 }
195
196 pub type uv_idle_cb = extern "C" fn(handle: *uv_idle_t,
197                                     status: c_int);
198 pub type uv_alloc_cb = extern "C" fn(stream: *uv_stream_t,
199                                      suggested_size: size_t) -> uv_buf_t;
200 pub type uv_read_cb = extern "C" fn(stream: *uv_stream_t,
201                                     nread: ssize_t,
202                                     buf: uv_buf_t);
203 pub type uv_udp_send_cb = extern "C" fn(req: *uv_udp_send_t,
204                                         status: c_int);
205 pub type uv_udp_recv_cb = extern "C" fn(handle: *uv_udp_t,
206                                         nread: ssize_t,
207                                         buf: uv_buf_t,
208                                         addr: *sockaddr,
209                                         flags: c_uint);
210 pub type uv_close_cb = extern "C" fn(handle: *uv_handle_t);
211 pub type uv_walk_cb = extern "C" fn(handle: *uv_handle_t,
212                                     arg: *c_void);
213 pub type uv_async_cb = extern "C" fn(handle: *uv_async_t,
214                                      status: c_int);
215 pub type uv_connect_cb = extern "C" fn(handle: *uv_connect_t,
216                                        status: c_int);
217 pub type uv_connection_cb = extern "C" fn(handle: *uv_connection_t,
218                                           status: c_int);
219 pub type uv_timer_cb = extern "C" fn(handle: *uv_timer_t,
220                                      status: c_int);
221 pub type uv_write_cb = extern "C" fn(handle: *uv_write_t,
222                                      status: c_int);
223 pub type uv_getaddrinfo_cb = extern "C" fn(req: *uv_getaddrinfo_t,
224                                            status: c_int,
225                                            res: *addrinfo);
226 pub type uv_exit_cb = extern "C" fn(handle: *uv_process_t,
227                                     exit_status: c_int,
228                                     term_signal: c_int);
229 pub type uv_signal_cb = extern "C" fn(handle: *uv_signal_t,
230                                       signum: c_int);
231 pub type uv_fs_cb = extern "C" fn(req: *uv_fs_t);
232
233 pub type sockaddr = c_void;
234 pub type sockaddr_in = c_void;
235 pub type sockaddr_in6 = c_void;
236 pub type sockaddr_storage = c_void;
237
238 #[cfg(unix)]
239 pub type socklen_t = c_int;
240
241 // XXX: This is a standard C type. Could probably be defined in libc
242 #[cfg(target_os = "android")]
243 #[cfg(target_os = "linux")]
244 pub struct addrinfo {
245     ai_flags: c_int,
246     ai_family: c_int,
247     ai_socktype: c_int,
248     ai_protocol: c_int,
249     ai_addrlen: socklen_t,
250     ai_addr: *sockaddr,
251     ai_canonname: *char,
252     ai_next: *addrinfo
253 }
254
255 #[cfg(target_os = "macos")]
256 #[cfg(target_os = "freebsd")]
257 pub struct addrinfo {
258     ai_flags: c_int,
259     ai_family: c_int,
260     ai_socktype: c_int,
261     ai_protocol: c_int,
262     ai_addrlen: socklen_t,
263     ai_canonname: *char,
264     ai_addr: *sockaddr,
265     ai_next: *addrinfo
266 }
267
268 #[cfg(windows)]
269 pub struct addrinfo {
270     ai_flags: c_int,
271     ai_family: c_int,
272     ai_socktype: c_int,
273     ai_protocol: c_int,
274     ai_addrlen: size_t,
275     ai_canonname: *char,
276     ai_addr: *sockaddr,
277     ai_next: *addrinfo
278 }
279
280 #[cfg(unix)] pub type uv_uid_t = libc::types::os::arch::posix88::uid_t;
281 #[cfg(unix)] pub type uv_gid_t = libc::types::os::arch::posix88::gid_t;
282 #[cfg(windows)] pub type uv_uid_t = libc::c_uchar;
283 #[cfg(windows)] pub type uv_gid_t = libc::c_uchar;
284
285 #[repr(C)]
286 #[deriving(Eq)]
287 pub enum uv_handle_type {
288     UV_UNKNOWN_HANDLE,
289     UV_ASYNC,
290     UV_CHECK,
291     UV_FS_EVENT,
292     UV_FS_POLL,
293     UV_HANDLE,
294     UV_IDLE,
295     UV_NAMED_PIPE,
296     UV_POLL,
297     UV_PREPARE,
298     UV_PROCESS,
299     UV_STREAM,
300     UV_TCP,
301     UV_TIMER,
302     UV_TTY,
303     UV_UDP,
304     UV_SIGNAL,
305     UV_FILE,
306     UV_HANDLE_TYPE_MAX
307 }
308
309 #[repr(C)]
310 #[cfg(unix)]
311 #[deriving(Eq)]
312 pub enum uv_req_type {
313     UV_UNKNOWN_REQ,
314     UV_REQ,
315     UV_CONNECT,
316     UV_WRITE,
317     UV_SHUTDOWN,
318     UV_UDP_SEND,
319     UV_FS,
320     UV_WORK,
321     UV_GETADDRINFO,
322     UV_REQ_TYPE_MAX
323 }
324
325 // uv_req_type may have additional fields defined by UV_REQ_TYPE_PRIVATE.
326 // See UV_REQ_TYPE_PRIVATE at libuv/include/uv-win.h
327 #[repr(C)]
328 #[cfg(windows)]
329 #[deriving(Eq)]
330 pub enum uv_req_type {
331     UV_UNKNOWN_REQ,
332     UV_REQ,
333     UV_CONNECT,
334     UV_WRITE,
335     UV_SHUTDOWN,
336     UV_UDP_SEND,
337     UV_FS,
338     UV_WORK,
339     UV_GETADDRINFO,
340     UV_ACCEPT,
341     UV_FS_EVENT_REQ,
342     UV_POLL_REQ,
343     UV_PROCESS_EXIT,
344     UV_READ,
345     UV_UDP_RECV,
346     UV_WAKEUP,
347     UV_SIGNAL_REQ,
348     UV_REQ_TYPE_MAX
349 }
350
351 #[repr(C)]
352 #[deriving(Eq)]
353 pub enum uv_membership {
354     UV_LEAVE_GROUP,
355     UV_JOIN_GROUP
356 }
357
358 pub unsafe fn malloc_handle(handle: uv_handle_type) -> *c_void {
359     #[fixed_stack_segment]; #[inline(never)];
360
361     assert!(handle != UV_UNKNOWN_HANDLE && handle != UV_HANDLE_TYPE_MAX);
362     let size = uv_handle_size(handle);
363     let p = malloc(size);
364     assert!(p.is_not_null());
365     return p;
366 }
367
368 pub unsafe fn free_handle(v: *c_void) {
369     #[fixed_stack_segment]; #[inline(never)];
370
371     free(v)
372 }
373
374 pub unsafe fn malloc_req(req: uv_req_type) -> *c_void {
375     #[fixed_stack_segment]; #[inline(never)];
376
377     assert!(req != UV_UNKNOWN_REQ && req != UV_REQ_TYPE_MAX);
378     let size = uv_req_size(req);
379     let p = malloc(size);
380     assert!(p.is_not_null());
381     return p;
382 }
383
384 pub unsafe fn free_req(v: *c_void) {
385     #[fixed_stack_segment]; #[inline(never)];
386
387     free(v)
388 }
389
390 #[test]
391 fn handle_sanity_check() {
392     #[fixed_stack_segment]; #[inline(never)];
393     unsafe {
394         assert_eq!(UV_HANDLE_TYPE_MAX as uint, rust_uv_handle_type_max());
395     }
396 }
397
398 #[test]
399 fn request_sanity_check() {
400     #[fixed_stack_segment]; #[inline(never)];
401     unsafe {
402         assert_eq!(UV_REQ_TYPE_MAX as uint, rust_uv_req_type_max());
403     }
404 }
405
406 // XXX Event loops ignore SIGPIPE by default.
407 pub unsafe fn loop_new() -> *c_void {
408     #[fixed_stack_segment]; #[inline(never)];
409
410     return rust_uv_loop_new();
411 }
412
413 pub unsafe fn udp_bind(server: *uv_udp_t, addr: *sockaddr_in, flags: c_uint) -> c_int {
414     #[fixed_stack_segment]; #[inline(never)];
415
416     return rust_uv_udp_bind(server, addr, flags);
417 }
418
419 pub unsafe fn udp_bind6(server: *uv_udp_t, addr: *sockaddr_in6, flags: c_uint) -> c_int {
420     #[fixed_stack_segment]; #[inline(never)];
421
422     return rust_uv_udp_bind6(server, addr, flags);
423 }
424
425 pub unsafe fn udp_send<T>(req: *uv_udp_send_t, handle: *T, buf_in: &[uv_buf_t],
426                           addr: *sockaddr_in, cb: uv_udp_send_cb) -> c_int {
427     #[fixed_stack_segment]; #[inline(never)];
428
429     let buf_ptr = vec::raw::to_ptr(buf_in);
430     let buf_cnt = buf_in.len() as i32;
431     return rust_uv_udp_send(req, handle as *c_void, buf_ptr, buf_cnt, addr, cb);
432 }
433
434 pub unsafe fn udp_send6<T>(req: *uv_udp_send_t, handle: *T, buf_in: &[uv_buf_t],
435                           addr: *sockaddr_in6, cb: uv_udp_send_cb) -> c_int {
436     #[fixed_stack_segment]; #[inline(never)];
437
438     let buf_ptr = vec::raw::to_ptr(buf_in);
439     let buf_cnt = buf_in.len() as i32;
440     return rust_uv_udp_send6(req, handle as *c_void, buf_ptr, buf_cnt, addr, cb);
441 }
442
443 pub unsafe fn get_udp_handle_from_send_req(send_req: *uv_udp_send_t) -> *uv_udp_t {
444     #[fixed_stack_segment]; #[inline(never)];
445
446     return rust_uv_get_udp_handle_from_send_req(send_req);
447 }
448
449 pub unsafe fn udp_getsockname(handle: *uv_udp_t, name: *sockaddr_storage) -> c_int {
450     #[fixed_stack_segment]; #[inline(never)];
451
452     return rust_uv_udp_getsockname(handle, name);
453 }
454
455 pub unsafe fn tcp_connect(connect_ptr: *uv_connect_t, tcp_handle_ptr: *uv_tcp_t,
456                           addr_ptr: *sockaddr_in, after_connect_cb: uv_connect_cb) -> c_int {
457     #[fixed_stack_segment]; #[inline(never)];
458
459     return rust_uv_tcp_connect(connect_ptr, tcp_handle_ptr, after_connect_cb, addr_ptr);
460 }
461
462 pub unsafe fn tcp_connect6(connect_ptr: *uv_connect_t, tcp_handle_ptr: *uv_tcp_t,
463                            addr_ptr: *sockaddr_in6, after_connect_cb: uv_connect_cb) -> c_int {
464     #[fixed_stack_segment]; #[inline(never)];
465
466     return rust_uv_tcp_connect6(connect_ptr, tcp_handle_ptr, after_connect_cb, addr_ptr);
467 }
468
469 pub unsafe fn tcp_bind(tcp_server_ptr: *uv_tcp_t, addr_ptr: *sockaddr_in) -> c_int {
470     #[fixed_stack_segment]; #[inline(never)];
471
472     return rust_uv_tcp_bind(tcp_server_ptr, addr_ptr);
473 }
474
475 pub unsafe fn tcp_bind6(tcp_server_ptr: *uv_tcp_t, addr_ptr: *sockaddr_in6) -> c_int {
476     #[fixed_stack_segment]; #[inline(never)];
477
478     return rust_uv_tcp_bind6(tcp_server_ptr, addr_ptr);
479 }
480
481 pub unsafe fn tcp_getpeername(tcp_handle_ptr: *uv_tcp_t, name: *sockaddr_storage) -> c_int {
482     #[fixed_stack_segment]; #[inline(never)];
483
484     return rust_uv_tcp_getpeername(tcp_handle_ptr, name);
485 }
486
487 pub unsafe fn tcp_getsockname(handle: *uv_tcp_t, name: *sockaddr_storage) -> c_int {
488     #[fixed_stack_segment]; #[inline(never)];
489
490     return rust_uv_tcp_getsockname(handle, name);
491 }
492
493 pub unsafe fn uv_write(req: *uv_write_t,
494                        stream: *uv_stream_t,
495                        buf_in: &[uv_buf_t],
496                        cb: uv_write_cb) -> c_int {
497     externfn!(fn uv_write(req: *uv_write_t, stream: *uv_stream_t,
498                           buf_in: *uv_buf_t, buf_cnt: c_int,
499                           cb: uv_write_cb) -> c_int)
500
501     let buf_ptr = vec::raw::to_ptr(buf_in);
502     let buf_cnt = buf_in.len() as i32;
503     return uv_write(req, stream, buf_ptr, buf_cnt, cb);
504 }
505
506 pub unsafe fn is_ip4_addr(addr: *sockaddr) -> bool {
507     #[fixed_stack_segment]; #[inline(never)];
508
509     match rust_uv_is_ipv4_sockaddr(addr) { 0 => false, _ => true }
510 }
511
512 pub unsafe fn is_ip6_addr(addr: *sockaddr) -> bool {
513     #[fixed_stack_segment]; #[inline(never)];
514
515     match rust_uv_is_ipv6_sockaddr(addr) { 0 => false, _ => true }
516 }
517
518 pub unsafe fn malloc_ip4_addr(ip: &str, port: int) -> *sockaddr_in {
519     #[fixed_stack_segment]; #[inline(never)];
520     do ip.with_c_str |ip_buf| {
521         rust_uv_ip4_addrp(ip_buf as *u8, port as libc::c_int)
522     }
523 }
524 pub unsafe fn malloc_ip6_addr(ip: &str, port: int) -> *sockaddr_in6 {
525     #[fixed_stack_segment]; #[inline(never)];
526     do ip.with_c_str |ip_buf| {
527         rust_uv_ip6_addrp(ip_buf as *u8, port as libc::c_int)
528     }
529 }
530
531 pub unsafe fn malloc_sockaddr_storage() -> *sockaddr_storage {
532     #[fixed_stack_segment]; #[inline(never)];
533
534     rust_uv_malloc_sockaddr_storage()
535 }
536
537 pub unsafe fn free_sockaddr_storage(ss: *sockaddr_storage) {
538     #[fixed_stack_segment]; #[inline(never)];
539
540     rust_uv_free_sockaddr_storage(ss);
541 }
542
543 pub unsafe fn free_ip4_addr(addr: *sockaddr_in) {
544     #[fixed_stack_segment]; #[inline(never)];
545
546     rust_uv_free_ip4_addr(addr);
547 }
548
549 pub unsafe fn free_ip6_addr(addr: *sockaddr_in6) {
550     #[fixed_stack_segment]; #[inline(never)];
551
552     rust_uv_free_ip6_addr(addr);
553 }
554
555 pub unsafe fn ip4_port(addr: *sockaddr_in) -> c_uint {
556     #[fixed_stack_segment]; #[inline(never)];
557
558    return rust_uv_ip4_port(addr);
559 }
560
561 pub unsafe fn ip6_port(addr: *sockaddr_in6) -> c_uint {
562     #[fixed_stack_segment]; #[inline(never)];
563
564     return rust_uv_ip6_port(addr);
565 }
566
567 pub unsafe fn process_pid(p: *uv_process_t) -> c_int {
568     #[fixed_stack_segment]; #[inline(never)];
569     return rust_uv_process_pid(p);
570 }
571
572 pub unsafe fn set_stdio_container_flags(c: *uv_stdio_container_t,
573                                         flags: libc::c_int) {
574     #[fixed_stack_segment]; #[inline(never)];
575     rust_set_stdio_container_flags(c, flags);
576 }
577
578 pub unsafe fn set_stdio_container_fd(c: *uv_stdio_container_t,
579                                      fd: libc::c_int) {
580     #[fixed_stack_segment]; #[inline(never)];
581     rust_set_stdio_container_fd(c, fd);
582 }
583
584 pub unsafe fn set_stdio_container_stream(c: *uv_stdio_container_t,
585                                          stream: *uv_stream_t) {
586     #[fixed_stack_segment]; #[inline(never)];
587     rust_set_stdio_container_stream(c, stream);
588 }
589
590 // data access helpers
591 pub unsafe fn get_result_from_fs_req(req: *uv_fs_t) -> c_int {
592     #[fixed_stack_segment]; #[inline(never)];
593
594     rust_uv_get_result_from_fs_req(req)
595 }
596 pub unsafe fn get_ptr_from_fs_req(req: *uv_fs_t) -> *libc::c_void {
597     #[fixed_stack_segment]; #[inline(never)];
598
599     rust_uv_get_ptr_from_fs_req(req)
600 }
601 pub unsafe fn get_path_from_fs_req(req: *uv_fs_t) -> *c_char {
602     #[fixed_stack_segment]; #[inline(never)];
603
604     rust_uv_get_path_from_fs_req(req)
605 }
606 pub unsafe fn get_loop_from_fs_req(req: *uv_fs_t) -> *uv_loop_t {
607     #[fixed_stack_segment]; #[inline(never)];
608
609     rust_uv_get_loop_from_fs_req(req)
610 }
611 pub unsafe fn get_loop_from_getaddrinfo_req(req: *uv_getaddrinfo_t) -> *uv_loop_t {
612     #[fixed_stack_segment]; #[inline(never)];
613
614     rust_uv_get_loop_from_getaddrinfo_req(req)
615 }
616 pub unsafe fn get_loop_for_uv_handle<T>(handle: *T) -> *c_void {
617     #[fixed_stack_segment]; #[inline(never)];
618
619     return rust_uv_get_loop_for_uv_handle(handle as *c_void);
620 }
621 pub unsafe fn get_stream_handle_from_connect_req(connect: *uv_connect_t) -> *uv_stream_t {
622     #[fixed_stack_segment]; #[inline(never)];
623
624     return rust_uv_get_stream_handle_from_connect_req(connect);
625 }
626 pub unsafe fn get_stream_handle_from_write_req(write_req: *uv_write_t) -> *uv_stream_t {
627     #[fixed_stack_segment]; #[inline(never)];
628
629     return rust_uv_get_stream_handle_from_write_req(write_req);
630 }
631 pub unsafe fn get_data_for_uv_loop(loop_ptr: *c_void) -> *c_void {
632     #[fixed_stack_segment]; #[inline(never)];
633
634     rust_uv_get_data_for_uv_loop(loop_ptr)
635 }
636 pub unsafe fn set_data_for_uv_loop(loop_ptr: *c_void, data: *c_void) {
637     #[fixed_stack_segment]; #[inline(never)];
638
639     rust_uv_set_data_for_uv_loop(loop_ptr, data);
640 }
641 pub unsafe fn get_data_for_uv_handle<T>(handle: *T) -> *c_void {
642     #[fixed_stack_segment]; #[inline(never)];
643
644     return rust_uv_get_data_for_uv_handle(handle as *c_void);
645 }
646 pub unsafe fn set_data_for_uv_handle<T, U>(handle: *T, data: *U) {
647     #[fixed_stack_segment]; #[inline(never)];
648
649     rust_uv_set_data_for_uv_handle(handle as *c_void, data as *c_void);
650 }
651 pub unsafe fn get_data_for_req<T>(req: *T) -> *c_void {
652     #[fixed_stack_segment]; #[inline(never)];
653
654     return rust_uv_get_data_for_req(req as *c_void);
655 }
656 pub unsafe fn set_data_for_req<T, U>(req: *T, data: *U) {
657     #[fixed_stack_segment]; #[inline(never)];
658
659     rust_uv_set_data_for_req(req as *c_void, data as *c_void);
660 }
661 pub unsafe fn populate_stat(req_in: *uv_fs_t, stat_out: *uv_stat_t) {
662     #[fixed_stack_segment]; #[inline(never)];
663
664     rust_uv_populate_uv_stat(req_in, stat_out)
665 }
666
667
668 // uv_support is the result of compiling rust_uv.cpp
669 #[link_args = "-luv_support -luv"]
670 extern {
671     fn rust_uv_loop_new() -> *c_void;
672
673     fn rust_uv_handle_type_max() -> uintptr_t;
674     fn rust_uv_req_type_max() -> uintptr_t;
675     fn rust_uv_ip4_addrp(ip: *u8, port: c_int) -> *sockaddr_in;
676     fn rust_uv_ip6_addrp(ip: *u8, port: c_int) -> *sockaddr_in6;
677     fn rust_uv_free_ip4_addr(addr: *sockaddr_in);
678     fn rust_uv_free_ip6_addr(addr: *sockaddr_in6);
679     fn rust_uv_ip4_port(src: *sockaddr_in) -> c_uint;
680     fn rust_uv_ip6_port(src: *sockaddr_in6) -> c_uint;
681     fn rust_uv_tcp_connect(req: *uv_connect_t, handle: *uv_tcp_t,
682                            cb: uv_connect_cb,
683                            addr: *sockaddr_in) -> c_int;
684     fn rust_uv_tcp_bind(tcp_server: *uv_tcp_t, addr: *sockaddr_in) -> c_int;
685     fn rust_uv_tcp_connect6(req: *uv_connect_t, handle: *uv_tcp_t,
686                             cb: uv_connect_cb,
687                             addr: *sockaddr_in6) -> c_int;
688     fn rust_uv_tcp_bind6(tcp_server: *uv_tcp_t, addr: *sockaddr_in6) -> c_int;
689     fn rust_uv_tcp_getpeername(tcp_handle_ptr: *uv_tcp_t, name: *sockaddr_storage) -> c_int;
690     fn rust_uv_tcp_getsockname(handle: *uv_tcp_t, name: *sockaddr_storage) -> c_int;
691     fn rust_uv_udp_bind(server: *uv_udp_t, addr: *sockaddr_in, flags: c_uint) -> c_int;
692     fn rust_uv_udp_bind6(server: *uv_udp_t, addr: *sockaddr_in6, flags: c_uint) -> c_int;
693     fn rust_uv_udp_send(req: *uv_udp_send_t, handle: *uv_udp_t, buf_in: *uv_buf_t,
694                         buf_cnt: c_int, addr: *sockaddr_in, cb: uv_udp_send_cb) -> c_int;
695     fn rust_uv_udp_send6(req: *uv_udp_send_t, handle: *uv_udp_t, buf_in: *uv_buf_t,
696                          buf_cnt: c_int, addr: *sockaddr_in6, cb: uv_udp_send_cb) -> c_int;
697     fn rust_uv_get_udp_handle_from_send_req(req: *uv_udp_send_t) -> *uv_udp_t;
698     fn rust_uv_udp_getsockname(handle: *uv_udp_t, name: *sockaddr_storage) -> c_int;
699     fn rust_uv_is_ipv4_sockaddr(addr: *sockaddr) -> c_int;
700     fn rust_uv_is_ipv6_sockaddr(addr: *sockaddr) -> c_int;
701     fn rust_uv_malloc_sockaddr_storage() -> *sockaddr_storage;
702     fn rust_uv_free_sockaddr_storage(ss: *sockaddr_storage);
703     fn rust_uv_populate_uv_stat(req_in: *uv_fs_t, stat_out: *uv_stat_t);
704     fn rust_uv_get_result_from_fs_req(req: *uv_fs_t) -> c_int;
705     fn rust_uv_get_ptr_from_fs_req(req: *uv_fs_t) -> *libc::c_void;
706     fn rust_uv_get_path_from_fs_req(req: *uv_fs_t) -> *c_char;
707     fn rust_uv_get_loop_from_fs_req(req: *uv_fs_t) -> *uv_loop_t;
708     fn rust_uv_get_loop_from_getaddrinfo_req(req: *uv_fs_t) -> *uv_loop_t;
709     fn rust_uv_get_stream_handle_from_connect_req(req: *uv_connect_t) -> *uv_stream_t;
710     fn rust_uv_get_stream_handle_from_write_req(req: *uv_write_t) -> *uv_stream_t;
711     fn rust_uv_get_loop_for_uv_handle(handle: *c_void) -> *c_void;
712     fn rust_uv_get_data_for_uv_loop(loop_ptr: *c_void) -> *c_void;
713     fn rust_uv_set_data_for_uv_loop(loop_ptr: *c_void, data: *c_void);
714     fn rust_uv_get_data_for_uv_handle(handle: *c_void) -> *c_void;
715     fn rust_uv_set_data_for_uv_handle(handle: *c_void, data: *c_void);
716     fn rust_uv_get_data_for_req(req: *c_void) -> *c_void;
717     fn rust_uv_set_data_for_req(req: *c_void, data: *c_void);
718     fn rust_set_stdio_container_flags(c: *uv_stdio_container_t, flags: c_int);
719     fn rust_set_stdio_container_fd(c: *uv_stdio_container_t, fd: c_int);
720     fn rust_set_stdio_container_stream(c: *uv_stdio_container_t,
721                                        stream: *uv_stream_t);
722 }
723
724 // generic uv functions
725 externfn!(fn uv_loop_delete(l: *uv_loop_t))
726 externfn!(fn uv_handle_size(ty: uv_handle_type) -> size_t)
727 externfn!(fn uv_req_size(ty: uv_req_type) -> size_t)
728 externfn!(fn uv_run(l: *uv_loop_t, mode: uv_run_mode) -> c_int)
729 externfn!(fn uv_close(h: *uv_handle_t, cb: uv_close_cb))
730 externfn!(fn uv_walk(l: *uv_loop_t, cb: uv_walk_cb, arg: *c_void))
731 externfn!(fn uv_buf_init(base: *c_char, len: c_uint) -> uv_buf_t)
732 externfn!(fn uv_strerror(err: c_int) -> *c_char)
733 externfn!(fn uv_err_name(err: c_int) -> *c_char)
734 externfn!(fn uv_listen(s: *uv_stream_t, backlog: c_int,
735                        cb: uv_connection_cb) -> c_int)
736 externfn!(fn uv_accept(server: *uv_stream_t, client: *uv_stream_t) -> c_int)
737 externfn!(fn uv_read_start(stream: *uv_stream_t,
738                            on_alloc: uv_alloc_cb,
739                            on_read: uv_read_cb) -> c_int)
740 externfn!(fn uv_read_stop(stream: *uv_stream_t) -> c_int)
741
742 // idle bindings
743 externfn!(fn uv_idle_init(l: *uv_loop_t, i: *uv_idle_t) -> c_int)
744 externfn!(fn uv_idle_start(i: *uv_idle_t, cb: uv_idle_cb) -> c_int)
745 externfn!(fn uv_idle_stop(i: *uv_idle_t) -> c_int)
746
747 // async bindings
748 externfn!(fn uv_async_init(l: *uv_loop_t, a: *uv_async_t,
749                            cb: uv_async_cb) -> c_int)
750 externfn!(fn uv_async_send(a: *uv_async_t))
751
752 // tcp bindings
753 externfn!(fn uv_tcp_init(l: *uv_loop_t, h: *uv_tcp_t) -> c_int)
754 externfn!(fn uv_ip4_name(src: *sockaddr_in, dst: *c_char,
755                          size: size_t) -> c_int)
756 externfn!(fn uv_ip6_name(src: *sockaddr_in6, dst: *c_char,
757                          size: size_t) -> c_int)
758 externfn!(fn uv_tcp_nodelay(h: *uv_tcp_t, enable: c_int) -> c_int)
759 externfn!(fn uv_tcp_keepalive(h: *uv_tcp_t, enable: c_int,
760                               delay: c_uint) -> c_int)
761 externfn!(fn uv_tcp_simultaneous_accepts(h: *uv_tcp_t, enable: c_int) -> c_int)
762
763 // udp bindings
764 externfn!(fn uv_udp_init(l: *uv_loop_t, h: *uv_udp_t) -> c_int)
765 externfn!(fn uv_udp_recv_start(server: *uv_udp_t,
766                                on_alloc: uv_alloc_cb,
767                                on_recv: uv_udp_recv_cb) -> c_int)
768 externfn!(fn uv_udp_set_membership(handle: *uv_udp_t, multicast_addr: *c_char,
769                                    interface_addr: *c_char,
770                                    membership: uv_membership) -> c_int)
771 externfn!(fn uv_udp_recv_stop(server: *uv_udp_t) -> c_int)
772 externfn!(fn uv_udp_set_multicast_loop(handle: *uv_udp_t, on: c_int) -> c_int)
773 externfn!(fn uv_udp_set_multicast_ttl(handle: *uv_udp_t, ttl: c_int) -> c_int)
774 externfn!(fn uv_udp_set_ttl(handle: *uv_udp_t, ttl: c_int) -> c_int)
775 externfn!(fn uv_udp_set_broadcast(handle: *uv_udp_t, on: c_int) -> c_int)
776
777 // timer bindings
778 externfn!(fn uv_timer_init(l: *uv_loop_t, t: *uv_timer_t) -> c_int)
779 externfn!(fn uv_timer_start(t: *uv_timer_t, cb: uv_timer_cb,
780                             timeout: libc::uint64_t,
781                             repeat: libc::uint64_t) -> c_int)
782 externfn!(fn uv_timer_stop(handle: *uv_timer_t) -> c_int)
783
784 // fs operations
785 externfn!(fn uv_fs_open(loop_ptr: *uv_loop_t, req: *uv_fs_t, path: *c_char,
786                         flags: c_int, mode: c_int, cb: uv_fs_cb) -> c_int)
787 externfn!(fn uv_fs_unlink(loop_ptr: *uv_loop_t, req: *uv_fs_t, path: *c_char,
788                           cb: uv_fs_cb) -> c_int)
789 externfn!(fn uv_fs_write(l: *uv_loop_t, req: *uv_fs_t, fd: c_int, buf: *c_void,
790                          len: c_uint, offset: i64, cb: uv_fs_cb) -> c_int)
791 externfn!(fn uv_fs_read(l: *uv_loop_t, req: *uv_fs_t, fd: c_int, buf: *c_void,
792                         len: c_uint, offset: i64, cb: uv_fs_cb) -> c_int)
793 externfn!(fn uv_fs_close(l: *uv_loop_t, req: *uv_fs_t, fd: c_int,
794                          cb: uv_fs_cb) -> c_int)
795 externfn!(fn uv_fs_stat(l: *uv_loop_t, req: *uv_fs_t, path: *c_char,
796                         cb: uv_fs_cb) -> c_int)
797 externfn!(fn uv_fs_fstat(l: *uv_loop_t, req: *uv_fs_t, fd: c_int,
798                          cb: uv_fs_cb) -> c_int)
799 externfn!(fn uv_fs_mkdir(l: *uv_loop_t, req: *uv_fs_t, path: *c_char,
800                          mode: c_int, cb: uv_fs_cb) -> c_int)
801 externfn!(fn uv_fs_rmdir(l: *uv_loop_t, req: *uv_fs_t, path: *c_char,
802                          cb: uv_fs_cb) -> c_int)
803 externfn!(fn uv_fs_readdir(l: *uv_loop_t, req: *uv_fs_t, path: *c_char,
804                            flags: c_int, cb: uv_fs_cb) -> c_int)
805 externfn!(fn uv_fs_req_cleanup(req: *uv_fs_t))
806 externfn!(fn uv_fs_fsync(handle: *uv_loop_t, req: *uv_fs_t, file: c_int,
807                          cb: *u8) -> c_int)
808 externfn!(fn uv_fs_fdatasync(handle: *uv_loop_t, req: *uv_fs_t, file: c_int,
809                              cb: *u8) -> c_int)
810 externfn!(fn uv_fs_ftruncate(handle: *uv_loop_t, req: *uv_fs_t, file: c_int,
811                              offset: i64, cb: *u8) -> c_int)
812 externfn!(fn uv_fs_readlink(handle: *uv_loop_t, req: *uv_fs_t, file: *c_char,
813                             cb: *u8) -> c_int)
814 externfn!(fn uv_fs_symlink(handle: *uv_loop_t, req: *uv_fs_t, src: *c_char,
815                            dst: *c_char, flags: c_int, cb: *u8) -> c_int)
816 externfn!(fn uv_fs_link(handle: *uv_loop_t, req: *uv_fs_t, src: *c_char,
817                         dst: *c_char, cb: *u8) -> c_int)
818 externfn!(fn uv_fs_chown(handle: *uv_loop_t, req: *uv_fs_t, src: *c_char,
819                          uid: uv_uid_t, gid: uv_gid_t, cb: *u8) -> c_int)
820 externfn!(fn uv_fs_lstat(handle: *uv_loop_t, req: *uv_fs_t, file: *c_char,
821                          cb: *u8) -> c_int)
822
823 // getaddrinfo
824 externfn!(fn uv_getaddrinfo(loop_: *uv_loop_t, req: *uv_getaddrinfo_t,
825                             getaddrinfo_cb: uv_getaddrinfo_cb,
826                             node: *c_char, service: *c_char,
827                             hints: *addrinfo) -> c_int)
828 externfn!(fn uv_freeaddrinfo(ai: *addrinfo))
829
830 // process spawning
831 externfn!(fn uv_spawn(loop_ptr: *uv_loop_t, outptr: *uv_process_t,
832                       options: uv_process_options_t) -> c_int)
833 externfn!(fn uv_process_kill(p: *uv_process_t, signum: c_int) -> c_int)
834
835 // pipes
836 externfn!(fn uv_pipe_init(l: *uv_loop_t, p: *uv_pipe_t, ipc: c_int) -> c_int)
837 externfn!(fn uv_pipe_open(pipe: *uv_pipe_t, file: c_int) -> c_int)
838 externfn!(fn uv_pipe_bind(pipe: *uv_pipe_t, name: *c_char) -> c_int)
839 externfn!(fn uv_pipe_connect(req: *uv_connect_t, handle: *uv_pipe_t,
840                              name: *c_char, cb: uv_connect_cb))
841
842 // tty
843 externfn!(fn uv_tty_init(l: *uv_loop_t, tty: *uv_tty_t, fd: c_int,
844                          readable: c_int) -> c_int)
845 externfn!(fn uv_tty_set_mode(tty: *uv_tty_t, mode: c_int) -> c_int)
846 externfn!(fn uv_tty_get_winsize(tty: *uv_tty_t, width: *c_int,
847                                 height: *c_int) -> c_int)
848 externfn!(fn uv_guess_handle(fd: c_int) -> uv_handle_type)
849
850 // signals
851 externfn!(fn uv_signal_init(loop_: *uv_loop_t, handle: *uv_signal_t) -> c_int)
852 externfn!(fn uv_signal_start(h: *uv_signal_t, cb: uv_signal_cb,
853                              signum: c_int) -> c_int)
854 externfn!(fn uv_signal_stop(handle: *uv_signal_t) -> c_int)
855
856 // libuv requires various system libraries to successfully link on some
857 // platforms
858 #[cfg(target_os = "linux")]
859 #[link_args = "-lpthread"]
860 extern {}
861
862 #[cfg(target_os = "win32")]
863 #[link_args = "-lWs2_32 -lpsapi -liphlpapi"]
864 extern {}