Skip to content
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

Check if Task(Future) is canceled. #1377

Open
wants to merge 3 commits into
base: rolling
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions rclpy/rclpy/executors.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,14 +321,24 @@ def spin_until_future_complete(
future.add_done_callback(lambda x: self.wake())

if timeout_sec is None or timeout_sec < 0:
while self._context.ok() and not future.done() and not self._is_shutdown:
while (
self._context.ok() and
not future.done() and
not future.cancelled()
and not self._is_shutdown
):
self._spin_once_until_future_complete(future, timeout_sec)
else:
start = time.monotonic()
end = start + timeout_sec
timeout_left = TimeoutObject(timeout_sec)

while self._context.ok() and not future.done() and not self._is_shutdown:
while (
self._context.ok() and
not future.done() and
not future.cancelled()
and not self._is_shutdown
):
self._spin_once_until_future_complete(future, timeout_left)
now = time.monotonic()

Expand Down Expand Up @@ -610,6 +620,8 @@ def _wait_for_ready_callbacks(
with self._tasks_lock:
# Get rid of any tasks that are done
self._tasks = list(filter(lambda t_e_n: not t_e_n[0].done(), self._tasks))
# Get rid of any tasks that are cancelled
self._tasks = list(filter(lambda t_e_n: not t_e_n[0].cancelled(), self._tasks))
Comment on lines +623 to +624
Copy link

@nadavelkabets nadavelkabets Jan 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missed this line in my PR, not needed anymore since done() now returns true if cancelled.
There are some other duplicate checks for done and cancelled, I'll review the code again to look for them.


# Gather entities that can be waited on
subscriptions: List[Subscription] = []
Expand Down
51 changes: 33 additions & 18 deletions rclpy/rclpy/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from enum import auto, StrEnum
import inspect
import sys
import threading
Expand All @@ -31,14 +32,19 @@ def _fake_weakref() -> None:
return None


class FutureState(StrEnum):
"""States defining the lifecycle of a future."""

PENDING = auto()
CANCELLED = auto()
FINISHED = auto()


class Future(Generic[T]):
"""Represent the outcome of a task in the future."""

def __init__(self, *, executor: Optional['Executor'] = None) -> None:
# true if the task is done or cancelled
self._done = False
# true if the task is cancelled
self._cancelled = False
self._state = FutureState.PENDING
# the final return value of the handler
self._result: Optional[T] = None
# An exception raised by the handler when called
Expand All @@ -61,15 +67,16 @@ def __del__(self) -> None:

def __await__(self) -> Generator[None, None, Optional[T]]:
# Yield if the task is not finished
while not self._done:
while not self.done():
yield
return self.result()

def cancel(self) -> None:
"""Request cancellation of the running task if it is not done already."""
with self._lock:
if not self._done:
self._cancelled = True
if not self.done():
self._state = FutureState.CANCELLED

self._schedule_or_invoke_done_callbacks()

def cancelled(self) -> bool:
Expand All @@ -78,15 +85,15 @@ def cancelled(self) -> bool:
:return: True if the task was cancelled
"""
return self._cancelled
return self._state == FutureState.CANCELLED

def done(self) -> bool:
"""
Indicate if the task has finished executing.
Indicate if the task has finished or cancelled executing.
:return: True if the task is finished or raised while it was executing
:return: True if the task is finished, cancelled or raised while it was executing
"""
return self._done
return self._state != FutureState.PENDING

def result(self) -> Optional[T]:
"""
Expand Down Expand Up @@ -118,8 +125,7 @@ def set_result(self, result: T) -> None:
"""
with self._lock:
self._result = result
self._done = True
self._cancelled = False
self._state = FutureState.FINISHED
self._schedule_or_invoke_done_callbacks()

def set_exception(self, exception: Exception) -> None:
Expand All @@ -131,8 +137,7 @@ def set_exception(self, exception: Exception) -> None:
with self._lock:
self._exception = exception
self._exception_fetched = False
self._done = True
self._cancelled = False
self._state = FutureState.FINISHED
self._schedule_or_invoke_done_callbacks()

def _schedule_or_invoke_done_callbacks(self) -> None:
Expand Down Expand Up @@ -181,7 +186,7 @@ def add_done_callback(self, callback: Callable[['Future[T]'], None]) -> None:
"""
invoke = False
with self._lock:
if self._done:
if self.done():
assert self._executor is not None
executor = self._executor()
if executor is not None:
Expand Down Expand Up @@ -239,10 +244,14 @@ def __call__(self) -> None:
The return value of the handler is stored as the task result.
"""
if self._done or self._executing or not self._task_lock.acquire(blocking=False):
if (
self.done() or
self._executing or
not self._task_lock.acquire(blocking=False)
):
return
try:
if self._done:
if self.done():
return
self._executing = True

Expand Down Expand Up @@ -285,3 +294,9 @@ def executing(self) -> bool:
:return: True if the task is currently executing.
"""
return self._executing

def cancel(self) -> None:
if not self.done() and inspect.iscoroutine(self._handler):
self._handler.close()

super().cancel()
20 changes: 20 additions & 0 deletions rclpy/test/test_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,26 @@ async def coroutine():
self.assertTrue(future.done())
self.assertEqual('Sentinel Result', future.result())

def test_create_task_coroutine_cancel(self) -> None:
fujitatomoya marked this conversation as resolved.
Show resolved Hide resolved
self.assertIsNotNone(self.node.handle)
executor = SingleThreadedExecutor(context=self.context)
executor.add_node(self.node)

async def coroutine():
return 'Sentinel Result'

future = executor.create_task(coroutine)
self.assertFalse(future.done())
self.assertFalse(future.cancelled())

future.cancel()
self.assertTrue(future.cancelled())

executor.spin_until_future_complete(future)
self.assertTrue(future.done())
self.assertTrue(future.cancelled())
self.assertEqual(None, future.result())

def test_create_task_normal_function(self) -> None:
self.assertIsNotNone(self.node.handle)
executor = SingleThreadedExecutor(context=self.context)
Expand Down