-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: make TerminatableTask
terminate itself when dropped
#1151
feat: make TerminatableTask
terminate itself when dropped
#1151
Conversation
@wyfo could you please review this? Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see why you changed the receiver type, but I think you should not try to reuse terminate
in drop
.
Instead, you can use some intermediate function:
async fn terminate_inner(handle: JoinHandle<()>, timeout: Duration) -> bool {
if tokio::time::timeout(timeout, handle).await.is_err() {
tracing::error!("Failed to terminate the task");
return false;
}
true
}
And use it like
fn drop(&mut self) {
if let Some(handle) = self.handle.take() {
ResolveFuture::new(terminate_inner(handle, std::time::Duration::from_secs(10))).res_sync();
}
}
fn terminate(mut self, timeout: Duration) -> bool {
ResolveFuture::new(terminate_inner(self.handle.take().unwrap(), timeout)).res_sync();
}
fn terminate_async(mut self, timeout: Duration) -> bool {
terminate_inner(self.handle.take().unwrap(), timeout).await
}
token, | ||
} | ||
} | ||
|
||
/// Attempts to terminate the task. | ||
/// Returns true if task completed / aborted within timeout duration, false otherwise. | ||
pub fn terminate(self, timeout: Duration) -> bool { | ||
pub fn terminate(&mut self, timeout: Duration) -> bool { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you should change the receiver type of the method
ResolveFuture::new(async move { self.terminate_async(timeout).await }).res_sync() | ||
} | ||
|
||
/// Async version of [`TerminatableTask::terminate()`]. | ||
pub async fn terminate_async(self, timeout: Duration) -> bool { | ||
pub async fn terminate_async(&mut self, timeout: Duration) -> bool { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Idem about the receiver type
If I'm not mistaken, to take out the value inside an In conclusion, I suggest splitting the termination and the deconstruction of the task. @wyfo what do you think? |
Just use
This is not the same thing here, as
There is no issue to coexist with drop and having |
Hi @wyfo , thanks for you feedback. Yes. That's what I mean we need to make some change in any way. Since I saw you wrote this in your first version, I thought you want to avoid any modification on fn terminate(self, timeout: Duration) -> bool {
ResolveFuture::new(terminate_inner(self.handle.take().unwrap(), timeout)).res_sync();
} And I'm fine with the change of The remaining issue is do we want to enforce a descrtuction here? This is related to the potential conflict with Originally, we define our pub struct TerminatableTask {
handle: JoinHandle<()>,
token: CancellationToken,
} This forbids us from implementing async fn terminate_inner(handle: JoinHandle<()>, timeout: Duration) -> bool {
if tokio::time::timeout(timeout, handle).await.is_err() {
tracing::error!("Failed to terminate the task");
return false;
}
true
}
impl TerminatableTask {
pub async fn terminate_async(self, timeout: Duration) -> bool {
terminate_inner(self.handle, timeout).await // ERROR: cannot move out of type `TerminatableTask`, which implements the `Drop` trait
}
} Passing impl<R> Drop for Subscriber<'_, R> {
fn drop(&mut self) {
todo!()
}
} (You can check this does cause lots of "cannot move out ..." errors) So that's why I need to wrap the Back to this PR, either using Moreover, it can avoid any conflict with impl TerminatableTask {
pub async fn terminate_async(mut self, timeout: Duration) -> bool {
let Self { token, mut handle } = self; // ERROR: cannot move out of type `TerminatableTask`, which implements the `Drop` trait
token.cancel();
if let Some(handle) = handle.take() {
if tokio::time::timeout(timeout, handle).await.is_err() {
tracing::error!("Failed to terminate the task");
return false;
};
}
true
}
} BTW, I'm little bit confused with your point "should not try to reuse terminate in drop". TBH, I don't care about the return boolean especially it would report an error once it failed. And it seems that your example don't process the boolean result in |
I give way to your arguments, it's good to me. |
* Add NOTE for LowLatency transport. (#1088) Signed-off-by: ChenYing Kuo <[email protected]> * fix: Improve debug messages in `zenoh-transport` (#1090) * fix: Improve debug messages for failing RX/TX tasks * fix: Improve debug message for `accept_link` timeout * chore: Fix `clippy::redundant_pattern_matching` error * Improve pipeline backoff (#1097) * Yield task for backoff * Improve comments and error handling in backoff * Simplify pipeline pull * Consider backoff configuration * Add typos check to CI (#1065) * Fix typos * Add typos check to CI * Start link tx_task before notifying router (#1098) * Fix typos (#1110) * bump quinn & rustls (#1086) * bump quinn & rustls * fix ci windows check * add comments * Fix interface name scanning when listening on IP unspecified for TCP/TLS/QUIC/WS (#1123) Co-authored-by: Julien Enoch <[email protected]> * Enable releasing from any branch (#1136) * Fix cargo clippy (#1145) * Release tables locks before propagating subscribers and queryables declarations to void dead locks (#1150) * Send simple sub and qabl declarations using a given function * Send simple sub and qabl declarations after releasing tables lock * Send simple sub and qabl declarations after releasing tables lock (missing places) * feat: make `TerminatableTask` terminate itself when dropped (#1151) * Fix bug in keyexpr::includes leading to call get_unchecked on empty array UB (#1208) * REST plugin uses unbounded flume channels for queries (#1213) * fix: typo in selector.rs (#1228) * fix: zenohd --cfg (#1263) * fix: zenohd --cfg * ci: trigger * Update zenohd/src/main.rs --------- Co-authored-by: Luca Cominardi <[email protected]> * Fix failover brokering bug reacting to linkstate changes (#1272) * Change missleading log * Fix failover brokering bug reacting to linkstate changes * Retrigger CI --------- Co-authored-by: Luca Cominardi <[email protected]> * Code format * Fix clippy warnings * Code format * Fix Clippy errors from Rust 1.80 (#1273) * Allow unexpected `doc_auto_cfg` flag * Keep never-constructed logger interceptor * Ignore interior mutability of `Resource` * Fix typo * Resolve `clippy::doc-lazy-continuation` errors * Upgrade `[email protected]` to `[email protected]` See time-rs/time#693 * Update Cargo.toml (#1277) Updated description to be aligned with what we use everywhere else * Merge ci.yaml --------- Signed-off-by: ChenYing Kuo <[email protected]> Co-authored-by: ChenYing Kuo (CY) <[email protected]> Co-authored-by: Mahmoud Mazouz <[email protected]> Co-authored-by: Tavo Annus <[email protected]> Co-authored-by: JLer <[email protected]> Co-authored-by: Julien Enoch <[email protected]> Co-authored-by: OlivierHecart <[email protected]> Co-authored-by: Yuyuan Yuan <[email protected]> Co-authored-by: Diogo Matsubara <[email protected]> Co-authored-by: OlivierHecart <[email protected]> Co-authored-by: kydos <[email protected]>
* Add NOTE for LowLatency transport. (#1088) Signed-off-by: ChenYing Kuo <[email protected]> * fix: Improve debug messages in `zenoh-transport` (#1090) * fix: Improve debug messages for failing RX/TX tasks * fix: Improve debug message for `accept_link` timeout * chore: Fix `clippy::redundant_pattern_matching` error * Improve pipeline backoff (#1097) * Yield task for backoff * Improve comments and error handling in backoff * Simplify pipeline pull * Consider backoff configuration * Add typos check to CI (#1065) * Fix typos * Add typos check to CI * Start link tx_task before notifying router (#1098) * Fix typos (#1110) * bump quinn & rustls (#1086) * bump quinn & rustls * fix ci windows check * add comments * Fix interface name scanning when listening on IP unspecified for TCP/TLS/QUIC/WS (#1123) Co-authored-by: Julien Enoch <[email protected]> * Enable releasing from any branch (#1136) * Fix cargo clippy (#1145) * Release tables locks before propagating subscribers and queryables declarations to void dead locks (#1150) * Send simple sub and qabl declarations using a given function * Send simple sub and qabl declarations after releasing tables lock * Send simple sub and qabl declarations after releasing tables lock (missing places) * feat: make `TerminatableTask` terminate itself when dropped (#1151) * Fix bug in keyexpr::includes leading to call get_unchecked on empty array UB (#1208) * REST plugin uses unbounded flume channels for queries (#1213) * fix: typo in selector.rs (#1228) * fix: zenohd --cfg (#1263) * fix: zenohd --cfg * ci: trigger * Update zenohd/src/main.rs --------- Co-authored-by: Luca Cominardi <[email protected]> * Fix failover brokering bug reacting to linkstate changes (#1272) * Change missleading log * Fix failover brokering bug reacting to linkstate changes * Retrigger CI --------- Co-authored-by: Luca Cominardi <[email protected]> * Code format * Fix clippy warnings * Code format * Fix Clippy errors from Rust 1.80 (#1273) * Allow unexpected `doc_auto_cfg` flag * Keep never-constructed logger interceptor * Ignore interior mutability of `Resource` * Fix typo * Resolve `clippy::doc-lazy-continuation` errors * Upgrade `[email protected]` to `[email protected]` See time-rs/time#693 * Update Cargo.toml (#1277) Updated description to be aligned with what we use everywhere else * fix: typos (#1297) * Replace trees computation tasks with a worker (#1303) * Replace trees computation tasks with a worker * Address review comments * Remove review comments * zenohd-default config error #1292 (#1298) * Zenohd panic when tring load file When zenohd trying load file, if it have a problem it crash cause another treat was "unwrap", and it return to a type config. So, it crash and cause painic. * zenohd default config error #1292 When tring load config file defined by -c option. With haver any problema "unwrap" has been to Config type. I treat it return a Default Config whe it happen * If file fail when try load configs If file fail when try load configs * Update main.rs * Resolve typos at comment Resolve typos at comment * fix: typos (#1297) * zenohd-default config error #1292 (#1298) * Zenohd panic when tring load file When zenohd trying load file, if it have a problem it crash cause another treat was "unwrap", and it return to a type config. So, it crash and cause painic. * zenohd default config error #1292 When tring load config file defined by -c option. With haver any problema "unwrap" has been to Config type. I treat it return a Default Config whe it happen * If file fail when try load configs If file fail when try load configs * Update main.rs * Resolve typos at comment Resolve typos at comment * Replace trees computation tasks with a worker (#1303) * Replace trees computation tasks with a worker * Address review comments * Remove review comments * revering fix #1298 --------- Signed-off-by: ChenYing Kuo <[email protected]> Co-authored-by: ChenYing Kuo (CY) <[email protected]> Co-authored-by: Mahmoud Mazouz <[email protected]> Co-authored-by: Luca Cominardi <[email protected]> Co-authored-by: Tavo Annus <[email protected]> Co-authored-by: JLer <[email protected]> Co-authored-by: Julien Enoch <[email protected]> Co-authored-by: OlivierHecart <[email protected]> Co-authored-by: Yuyuan Yuan <[email protected]> Co-authored-by: Diogo Matsubara <[email protected]> Co-authored-by: OlivierHecart <[email protected]> Co-authored-by: kydos <[email protected]> Co-authored-by: brianPA <[email protected]> Co-authored-by: Tiago Neves <[email protected]>
This PR introduces an auto termination when dropped and resolves the bug in #1054.