]> git.lizzy.rs Git - rust.git/blob - src/libnative/lib.rs
Convert most code to new inner attribute syntax.
[rust.git] / src / libnative / lib.rs
1 // Copyright 2013-2014 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 //! The native I/O and threading crate
12 //!
13 //! This crate contains an implementation of 1:1 scheduling for a "native"
14 //! runtime. In addition, all I/O provided by this crate is the thread blocking
15 //! version of I/O.
16 //!
17 //! # Starting with libnative
18 //!
19 //! ```rust
20 //! extern crate native;
21 //!
22 //! #[start]
23 //! fn start(argc: int, argv: **u8) -> int { native::start(argc, argv, main) }
24 //!
25 //! fn main() {
26 //!     // this code is running on the main OS thread
27 //! }
28 //! ```
29 //!
30 //! # Force spawning a native task
31 //!
32 //! ```rust
33 //! extern crate native;
34 //!
35 //! fn main() {
36 //!     // We're not sure whether this main function is run in 1:1 or M:N mode.
37 //!
38 //!     native::task::spawn(proc() {
39 //!         // this code is guaranteed to be run on a native thread
40 //!     });
41 //! }
42 //! ```
43
44 #![crate_id = "native#0.10-pre"]
45 #![license = "MIT/ASL2"]
46 #![crate_type = "rlib"]
47 #![crate_type = "dylib"]
48 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
49        html_favicon_url = "http://www.rust-lang.org/favicon.ico",
50        html_root_url = "http://static.rust-lang.org/doc/master")]
51 #![deny(unused_result, unused_must_use)]
52 #![allow(non_camel_case_types)]
53
54 // NB this crate explicitly does *not* allow glob imports, please seriously
55 //    consider whether they're needed before adding that feature here (the
56 //    answer is that you don't need them)
57
58 use std::os;
59 use std::rt;
60 use std::str;
61
62 pub mod io;
63 pub mod task;
64
65 #[cfg(windows)]
66 #[cfg(android)]
67 static OS_DEFAULT_STACK_ESTIMATE: uint = 1 << 20;
68 #[cfg(unix, not(android))]
69 static OS_DEFAULT_STACK_ESTIMATE: uint = 2 * (1 << 20);
70
71 #[lang = "start"]
72 #[cfg(not(test))]
73 pub fn lang_start(main: *u8, argc: int, argv: **u8) -> int {
74     use std::cast;
75     start(argc, argv, proc() {
76         let main: extern "Rust" fn() = unsafe { cast::transmute(main) };
77         main();
78     })
79 }
80
81 /// Executes the given procedure after initializing the runtime with the given
82 /// argc/argv.
83 ///
84 /// This procedure is guaranteed to run on the thread calling this function, but
85 /// the stack bounds for this rust task will *not* be set. Care must be taken
86 /// for this function to not overflow its stack.
87 ///
88 /// This function will only return once *all* native threads in the system have
89 /// exited.
90 pub fn start(argc: int, argv: **u8, main: proc()) -> int {
91     let something_around_the_top_of_the_stack = 1;
92     let addr = &something_around_the_top_of_the_stack as *int;
93     let my_stack_top = addr as uint;
94
95     // FIXME #11359 we just assume that this thread has a stack of a
96     // certain size, and estimate that there's at most 20KB of stack
97     // frames above our current position.
98     let my_stack_bottom = my_stack_top + 20000 - OS_DEFAULT_STACK_ESTIMATE;
99
100     // When using libgreen, one of the first things that we do is to turn off
101     // the SIGPIPE signal (set it to ignore). By default, some platforms will
102     // send a *signal* when a EPIPE error would otherwise be delivered. This
103     // runtime doesn't install a SIGPIPE handler, causing it to kill the
104     // program, which isn't exactly what we want!
105     //
106     // Hence, we set SIGPIPE to ignore when the program starts up in order to
107     // prevent this problem.
108     #[cfg(windows)] fn ignore_sigpipe() {}
109     #[cfg(unix)] fn ignore_sigpipe() {
110         use std::libc;
111         use std::libc::funcs::posix01::signal::signal;
112         unsafe {
113             assert!(signal(libc::SIGPIPE, libc::SIG_IGN) != -1);
114         }
115     }
116     ignore_sigpipe();
117
118     rt::init(argc, argv);
119     let mut exit_code = None;
120     let mut main = Some(main);
121     let mut task = task::new((my_stack_bottom, my_stack_top));
122     task.name = Some(str::Slice("<main>"));
123     let t = task.run(|| {
124         unsafe {
125             rt::stack::record_stack_bounds(my_stack_bottom, my_stack_top);
126         }
127         exit_code = Some(run(main.take_unwrap()));
128     });
129     drop(t);
130     unsafe { rt::cleanup(); }
131     // If the exit code wasn't set, then the task block must have failed.
132     return exit_code.unwrap_or(rt::DEFAULT_ERROR_CODE);
133 }
134
135 /// Executes a procedure on the current thread in a Rust task context.
136 ///
137 /// This function has all of the same details as `start` except for a different
138 /// number of arguments.
139 pub fn run(main: proc()) -> int {
140     main();
141     os::get_exit_status()
142 }