]> git.lizzy.rs Git - rust.git/blob - src/libstd/sys_common/mod.rs
Auto merge of #68272 - Dylan-DPC:rollup-vrb90gu, r=Dylan-DPC
[rust.git] / src / libstd / sys_common / mod.rs
1 //! Platform-independent platform abstraction
2 //!
3 //! This is the platform-independent portion of the standard library's
4 //! platform abstraction layer, whereas `std::sys` is the
5 //! platform-specific portion.
6 //!
7 //! The relationship between `std::sys_common`, `std::sys` and the
8 //! rest of `std` is complex, with dependencies going in all
9 //! directions: `std` depending on `sys_common`, `sys_common`
10 //! depending on `sys`, and `sys` depending on `sys_common` and `std`.
11 //! Ideally `sys_common` would be split into two and the dependencies
12 //! between them all would form a dag, facilitating the extraction of
13 //! `std::sys` from the standard library.
14
15 #![allow(missing_docs)]
16 #![allow(missing_debug_implementations)]
17
18 use crate::sync::Once;
19 use crate::sys;
20
21 macro_rules! rtabort {
22     ($($t:tt)*) => (crate::sys_common::util::abort(format_args!($($t)*)))
23 }
24
25 macro_rules! rtassert {
26     ($e:expr) => {
27         if !$e {
28             rtabort!(concat!("assertion failed: ", stringify!($e)));
29         }
30     };
31 }
32
33 #[allow(unused_macros)] // not used on all platforms
34 macro_rules! rtunwrap {
35     ($ok:ident, $e:expr) => {
36         match $e {
37             $ok(v) => v,
38             ref err => {
39                 let err = err.as_ref().map(drop); // map Ok/Some which might not be Debug
40                 rtabort!(concat!("unwrap failed: ", stringify!($e), " = {:?}"), err)
41             }
42         }
43     };
44 }
45
46 pub mod alloc;
47 pub mod at_exit_imp;
48 pub mod backtrace;
49 pub mod bytestring;
50 pub mod condvar;
51 pub mod fs;
52 pub mod io;
53 pub mod mutex;
54 #[cfg(any(doc, // see `mod os`, docs are generated for multiple platforms
55           unix,
56           target_os = "redox",
57           target_os = "cloudabi",
58           target_os = "hermit",
59           target_arch = "wasm32",
60           all(target_vendor = "fortanix", target_env = "sgx")))]
61 pub mod os_str_bytes;
62 pub mod poison;
63 pub mod process;
64 pub mod remutex;
65 pub mod rwlock;
66 pub mod thread;
67 pub mod thread_info;
68 pub mod thread_local;
69 pub mod util;
70 pub mod wtf8;
71
72 cfg_if::cfg_if! {
73     if #[cfg(any(target_os = "cloudabi",
74                  target_os = "l4re",
75                  target_os = "hermit",
76                  all(target_arch = "wasm32", not(target_os = "emscripten")),
77                  all(target_vendor = "fortanix", target_env = "sgx")))] {
78         pub use crate::sys::net;
79     } else {
80         pub mod net;
81     }
82 }
83
84 // common error constructors
85
86 /// A trait for viewing representations from std types
87 #[doc(hidden)]
88 pub trait AsInner<Inner: ?Sized> {
89     fn as_inner(&self) -> &Inner;
90 }
91
92 /// A trait for viewing representations from std types
93 #[doc(hidden)]
94 pub trait AsInnerMut<Inner: ?Sized> {
95     fn as_inner_mut(&mut self) -> &mut Inner;
96 }
97
98 /// A trait for extracting representations from std types
99 #[doc(hidden)]
100 pub trait IntoInner<Inner> {
101     fn into_inner(self) -> Inner;
102 }
103
104 /// A trait for creating std types from internal representations
105 #[doc(hidden)]
106 pub trait FromInner<Inner> {
107     fn from_inner(inner: Inner) -> Self;
108 }
109
110 /// Enqueues a procedure to run when the main thread exits.
111 ///
112 /// Currently these closures are only run once the main *Rust* thread exits.
113 /// Once the `at_exit` handlers begin running, more may be enqueued, but not
114 /// infinitely so. Eventually a handler registration will be forced to fail.
115 ///
116 /// Returns `Ok` if the handler was successfully registered, meaning that the
117 /// closure will be run once the main thread exits. Returns `Err` to indicate
118 /// that the closure could not be registered, meaning that it is not scheduled
119 /// to be run.
120 pub fn at_exit<F: FnOnce() + Send + 'static>(f: F) -> Result<(), ()> {
121     if at_exit_imp::push(Box::new(f)) { Ok(()) } else { Err(()) }
122 }
123
124 /// One-time runtime cleanup.
125 pub fn cleanup() {
126     static CLEANUP: Once = Once::new();
127     CLEANUP.call_once(|| unsafe {
128         sys::args::cleanup();
129         sys::stack_overflow::cleanup();
130         at_exit_imp::cleanup();
131     });
132 }
133
134 // Computes (value*numer)/denom without overflow, as long as both
135 // (numer*denom) and the overall result fit into i64 (which is the case
136 // for our time conversions).
137 #[allow(dead_code)] // not used on all platforms
138 pub fn mul_div_u64(value: u64, numer: u64, denom: u64) -> u64 {
139     let q = value / denom;
140     let r = value % denom;
141     // Decompose value as (value/denom*denom + value%denom),
142     // substitute into (value*numer)/denom and simplify.
143     // r < denom, so (denom*numer) is the upper bound of (r*numer)
144     q * numer + r * numer / denom
145 }
146
147 #[test]
148 fn test_muldiv() {
149     assert_eq!(mul_div_u64(1_000_000_000_001, 1_000_000_000, 1_000_000), 1_000_000_000_001_000);
150 }