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