]> git.lizzy.rs Git - rust.git/blob - src/libstd/sys/unix/mod.rs
Remove licenses
[rust.git] / src / libstd / sys / unix / mod.rs
1 #![allow(missing_docs, nonstandard_style)]
2
3 use io::{self, ErrorKind};
4 use libc;
5
6 #[cfg(any(rustdoc, target_os = "linux"))] pub use os::linux as platform;
7
8 #[cfg(all(not(rustdoc), target_os = "android"))]   pub use os::android as platform;
9 #[cfg(all(not(rustdoc), target_os = "bitrig"))]    pub use os::bitrig as platform;
10 #[cfg(all(not(rustdoc), target_os = "dragonfly"))] pub use os::dragonfly as platform;
11 #[cfg(all(not(rustdoc), target_os = "freebsd"))]   pub use os::freebsd as platform;
12 #[cfg(all(not(rustdoc), target_os = "haiku"))]     pub use os::haiku as platform;
13 #[cfg(all(not(rustdoc), target_os = "ios"))]       pub use os::ios as platform;
14 #[cfg(all(not(rustdoc), target_os = "macos"))]     pub use os::macos as platform;
15 #[cfg(all(not(rustdoc), target_os = "netbsd"))]    pub use os::netbsd as platform;
16 #[cfg(all(not(rustdoc), target_os = "openbsd"))]   pub use os::openbsd as platform;
17 #[cfg(all(not(rustdoc), target_os = "solaris"))]   pub use os::solaris as platform;
18 #[cfg(all(not(rustdoc), target_os = "emscripten"))] pub use os::emscripten as platform;
19 #[cfg(all(not(rustdoc), target_os = "fuchsia"))]   pub use os::fuchsia as platform;
20 #[cfg(all(not(rustdoc), target_os = "l4re"))]      pub use os::linux as platform;
21 #[cfg(all(not(rustdoc), target_os = "hermit"))]    pub use os::hermit as platform;
22
23 pub use self::rand::hashmap_random_keys;
24 pub use libc::strlen;
25
26 #[macro_use]
27 pub mod weak;
28
29 pub mod alloc;
30 pub mod args;
31 pub mod android;
32 #[cfg(feature = "backtrace")]
33 pub mod backtrace;
34 pub mod cmath;
35 pub mod condvar;
36 pub mod env;
37 pub mod ext;
38 pub mod fast_thread_local;
39 pub mod fd;
40 pub mod fs;
41 pub mod memchr;
42 pub mod mutex;
43 #[cfg(not(target_os = "l4re"))]
44 pub mod net;
45 #[cfg(target_os = "l4re")]
46 mod l4re;
47 #[cfg(target_os = "l4re")]
48 pub use self::l4re::net;
49 pub mod os;
50 pub mod os_str;
51 pub mod path;
52 pub mod pipe;
53 pub mod process;
54 pub mod rand;
55 pub mod rwlock;
56 pub mod stack_overflow;
57 pub mod thread;
58 pub mod thread_local;
59 pub mod time;
60 pub mod stdio;
61
62 #[cfg(not(test))]
63 pub fn init() {
64     // By default, some platforms will send a *signal* when an EPIPE error
65     // would otherwise be delivered. This runtime doesn't install a SIGPIPE
66     // handler, causing it to kill the program, which isn't exactly what we
67     // want!
68     //
69     // Hence, we set SIGPIPE to ignore when the program starts up in order
70     // to prevent this problem.
71     unsafe {
72         reset_sigpipe();
73     }
74
75     #[cfg(not(any(target_os = "emscripten", target_os = "fuchsia")))]
76     unsafe fn reset_sigpipe() {
77         assert!(signal(libc::SIGPIPE, libc::SIG_IGN) != libc::SIG_ERR);
78     }
79     #[cfg(any(target_os = "emscripten", target_os = "fuchsia"))]
80     unsafe fn reset_sigpipe() {}
81 }
82
83 #[cfg(target_os = "android")]
84 pub use sys::android::signal;
85 #[cfg(not(target_os = "android"))]
86 pub use libc::signal;
87
88 pub fn decode_error_kind(errno: i32) -> ErrorKind {
89     match errno as libc::c_int {
90         libc::ECONNREFUSED => ErrorKind::ConnectionRefused,
91         libc::ECONNRESET => ErrorKind::ConnectionReset,
92         libc::EPERM | libc::EACCES => ErrorKind::PermissionDenied,
93         libc::EPIPE => ErrorKind::BrokenPipe,
94         libc::ENOTCONN => ErrorKind::NotConnected,
95         libc::ECONNABORTED => ErrorKind::ConnectionAborted,
96         libc::EADDRNOTAVAIL => ErrorKind::AddrNotAvailable,
97         libc::EADDRINUSE => ErrorKind::AddrInUse,
98         libc::ENOENT => ErrorKind::NotFound,
99         libc::EINTR => ErrorKind::Interrupted,
100         libc::EINVAL => ErrorKind::InvalidInput,
101         libc::ETIMEDOUT => ErrorKind::TimedOut,
102         libc::EEXIST => ErrorKind::AlreadyExists,
103
104         // These two constants can have the same value on some systems,
105         // but different values on others, so we can't use a match
106         // clause
107         x if x == libc::EAGAIN || x == libc::EWOULDBLOCK =>
108             ErrorKind::WouldBlock,
109
110         _ => ErrorKind::Other,
111     }
112 }
113
114 #[doc(hidden)]
115 pub trait IsMinusOne {
116     fn is_minus_one(&self) -> bool;
117 }
118
119 macro_rules! impl_is_minus_one {
120     ($($t:ident)*) => ($(impl IsMinusOne for $t {
121         fn is_minus_one(&self) -> bool {
122             *self == -1
123         }
124     })*)
125 }
126
127 impl_is_minus_one! { i8 i16 i32 i64 isize }
128
129 pub fn cvt<T: IsMinusOne>(t: T) -> io::Result<T> {
130     if t.is_minus_one() {
131         Err(io::Error::last_os_error())
132     } else {
133         Ok(t)
134     }
135 }
136
137 pub fn cvt_r<T, F>(mut f: F) -> io::Result<T>
138     where T: IsMinusOne,
139           F: FnMut() -> T
140 {
141     loop {
142         match cvt(f()) {
143             Err(ref e) if e.kind() == ErrorKind::Interrupted => {}
144             other => return other,
145         }
146     }
147 }
148
149 // On Unix-like platforms, libc::abort will unregister signal handlers
150 // including the SIGABRT handler, preventing the abort from being blocked, and
151 // fclose streams, with the side effect of flushing them so libc bufferred
152 // output will be printed.  Additionally the shell will generally print a more
153 // understandable error message like "Abort trap" rather than "Illegal
154 // instruction" that intrinsics::abort would cause, as intrinsics::abort is
155 // implemented as an illegal instruction.
156 pub unsafe fn abort_internal() -> ! {
157     ::libc::abort()
158 }