mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-24 03:42:59 +01:00
system: run and return exit code on stop (#411)
Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
parent
ae28ce5377
commit
ce8ec15eaa
@ -1,7 +1,9 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
## Unreleased - 2021-xx-xx
|
## Unreleased - 2021-xx-xx
|
||||||
|
* Add `System::run_with_code` to allow retrieving the exit code on stop. [#411]
|
||||||
|
|
||||||
|
[#411]: https://github.com/actix/actix-net/pull/411
|
||||||
|
|
||||||
## 2.4.0 - 2021-11-05
|
## 2.4.0 - 2021-11-05
|
||||||
* Add `Arbiter::try_current` for situations where thread may or may not have Arbiter context. [#408]
|
* Add `Arbiter::try_current` for situations where thread may or may not have Arbiter context. [#408]
|
||||||
|
@ -175,8 +175,8 @@ impl System {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "io-uring"))]
|
|
||||||
/// Runner that keeps a [System]'s event loop alive until stop message is received.
|
/// Runner that keeps a [System]'s event loop alive until stop message is received.
|
||||||
|
#[cfg(not(feature = "io-uring"))]
|
||||||
#[must_use = "A SystemRunner does nothing unless `run` is called."]
|
#[must_use = "A SystemRunner does nothing unless `run` is called."]
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct SystemRunner {
|
pub struct SystemRunner {
|
||||||
@ -190,23 +190,24 @@ pub struct SystemRunner {
|
|||||||
impl SystemRunner {
|
impl SystemRunner {
|
||||||
/// Starts event loop and will return once [System] is [stopped](System::stop).
|
/// Starts event loop and will return once [System] is [stopped](System::stop).
|
||||||
pub fn run(self) -> io::Result<()> {
|
pub fn run(self) -> io::Result<()> {
|
||||||
|
let exit_code = self.run_with_code()?;
|
||||||
|
|
||||||
|
match exit_code {
|
||||||
|
0 => Ok(()),
|
||||||
|
nonzero => Err(io::Error::new(
|
||||||
|
io::ErrorKind::Other,
|
||||||
|
format!("Non-zero exit code: {}", nonzero),
|
||||||
|
)),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Runs the event loop until [stopped](System::stop_with_code), returning the exit code.
|
||||||
|
pub fn run_with_code(self) -> io::Result<i32> {
|
||||||
let SystemRunner { rt, stop_rx, .. } = self;
|
let SystemRunner { rt, stop_rx, .. } = self;
|
||||||
|
|
||||||
// run loop
|
// run loop
|
||||||
match rt.block_on(stop_rx) {
|
rt.block_on(stop_rx)
|
||||||
Ok(code) => {
|
.map_err(|err| io::Error::new(io::ErrorKind::Other, err))
|
||||||
if code != 0 {
|
|
||||||
Err(io::Error::new(
|
|
||||||
io::ErrorKind::Other,
|
|
||||||
format!("Non-zero exit code: {}", code),
|
|
||||||
))
|
|
||||||
} else {
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Err(e) => Err(io::Error::new(io::ErrorKind::Other, e)),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Runs the provided future, blocking the current thread until the future completes.
|
/// Runs the provided future, blocking the current thread until the future completes.
|
||||||
@ -216,8 +217,8 @@ impl SystemRunner {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "io-uring")]
|
|
||||||
/// Runner that keeps a [System]'s event loop alive until stop message is received.
|
/// Runner that keeps a [System]'s event loop alive until stop message is received.
|
||||||
|
#[cfg(feature = "io-uring")]
|
||||||
#[must_use = "A SystemRunner does nothing unless `run` is called."]
|
#[must_use = "A SystemRunner does nothing unless `run` is called."]
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct SystemRunner;
|
pub struct SystemRunner;
|
||||||
@ -226,7 +227,14 @@ pub struct SystemRunner;
|
|||||||
impl SystemRunner {
|
impl SystemRunner {
|
||||||
/// Starts event loop and will return once [System] is [stopped](System::stop).
|
/// Starts event loop and will return once [System] is [stopped](System::stop).
|
||||||
pub fn run(self) -> io::Result<()> {
|
pub fn run(self) -> io::Result<()> {
|
||||||
unimplemented!("SystemRunner::run is not implemented yet")
|
unimplemented!("SystemRunner::run is not implemented for io-uring feature yet");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Runs the event loop until [stopped](System::stop_with_code), returning the exit code.
|
||||||
|
pub fn run_with_code(self) -> io::Result<i32> {
|
||||||
|
unimplemented!(
|
||||||
|
"SystemRunner::run_with_code is not implemented for io-uring feature yet"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Runs the provided future, blocking the current thread until the future completes.
|
/// Runs the provided future, blocking the current thread until the future completes.
|
||||||
|
@ -24,6 +24,15 @@ fn await_for_timer() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(not(feature = "io-uring"))]
|
||||||
|
#[test]
|
||||||
|
fn run_with_code() {
|
||||||
|
let sys = System::new();
|
||||||
|
System::current().stop_with_code(42);
|
||||||
|
let exit_code = sys.run_with_code().expect("system stop should not error");
|
||||||
|
assert_eq!(exit_code, 42);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn join_another_arbiter() {
|
fn join_another_arbiter() {
|
||||||
let time = Duration::from_secs(1);
|
let time = Duration::from_secs(1);
|
||||||
@ -99,8 +108,8 @@ fn wait_for_spawns() {
|
|||||||
|
|
||||||
let handle = rt.spawn(async {
|
let handle = rt.spawn(async {
|
||||||
println!("running on the runtime");
|
println!("running on the runtime");
|
||||||
// assertion panic is caught at task boundary
|
// panic is caught at task boundary
|
||||||
assert_eq!(1, 2);
|
panic!("intentional test panic");
|
||||||
});
|
});
|
||||||
|
|
||||||
assert!(rt.block_on(handle).is_err());
|
assert!(rt.block_on(handle).is_err());
|
||||||
|
Loading…
Reference in New Issue
Block a user