forked from ros2/rclpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce EventsExecutor implementation (ros2#1389)
Signed-off-by: Brad Martin <[email protected]>
- Loading branch information
Brad Martin
committed
Jan 4, 2025
1 parent
ba72a01
commit 45f7f5f
Showing
14 changed files
with
2,494 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Copyright 2024 Brad Martin | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from .events_executor import EventsExecutor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright 2024 Brad Martin | ||
# Copyright 2024 Merlin Labs, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
import faulthandler | ||
import typing | ||
|
||
import rclpy.executors | ||
import rclpy.node | ||
from rclpy.impl.implementation_singleton import rclpy_implementation as _rclpy | ||
|
||
|
||
# Try to look like we inherit from the rclpy Executor for type checking purposes without | ||
# getting any of the code from the base class. | ||
def EventsExecutor(*, context: rclpy.Context | None = None) -> rclpy.executors.Executor: | ||
if context is None: | ||
context = rclpy.get_default_context() | ||
|
||
# For debugging purposes, if anything goes wrong in C++ make sure we also get a | ||
# Python backtrace dumped with the crash. | ||
faulthandler.enable() | ||
|
||
ex = typing.cast(rclpy.executors.Executor, _rclpy.EventsExecutor(context)) | ||
|
||
# rclpy.Executor does this too. Note, the context itself is smart enough to check | ||
# for bound methods, and check whether the instances they're bound to still exist at | ||
# callback time, so we don't have to worry about tearing down this stale callback at | ||
# destruction time. | ||
# TODO(bmartin427) This should really be done inside of the EventsExecutor | ||
# implementation itself, but I'm unable to figure out a pybind11 incantation that | ||
# allows me to pass this bound method call from C++. | ||
context.on_shutdown(ex.wake) | ||
|
||
return ex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.