Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
210910794
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2021
210910794
Commits
d141ffdf
Unverified
Commit
d141ffdf
authored
5 years ago
by
Michael Jeronimo
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Revert back to CoroActionNodes instead of AsyncActionNodes (#836)
parent
6be3a082
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nav2_tasks/include/nav2_tasks/bt_action_node.hpp
+13
-23
13 additions, 23 deletions
nav2_tasks/include/nav2_tasks/bt_action_node.hpp
with
13 additions
and
23 deletions
nav2_tasks/include/nav2_tasks/bt_action_node.hpp
+
13
−
23
View file @
d141ffdf
...
...
@@ -16,7 +16,6 @@
#define NAV2_TASKS__BT_ACTION_NODE_HPP_
#include
<memory>
#include
<mutex>
#include
<string>
#include
"behaviortree_cpp/action_node.h"
...
...
@@ -27,16 +26,16 @@ namespace nav2_tasks
{
template
<
class
ActionT
>
class
BtActionNode
:
public
BT
::
Async
ActionNode
class
BtActionNode
:
public
BT
::
Coro
ActionNode
{
public:
explicit
BtActionNode
(
const
std
::
string
&
action_name
)
:
BT
::
Async
ActionNode
(
action_name
),
action_name_
(
action_name
)
:
BT
::
Coro
ActionNode
(
action_name
),
action_name_
(
action_name
)
{
}
BtActionNode
(
const
std
::
string
&
action_name
,
const
BT
::
NodeParameters
&
params
)
:
BT
::
Async
ActionNode
(
action_name
,
params
),
action_name_
(
action_name
)
:
BT
::
Coro
ActionNode
(
action_name
,
params
),
action_name_
(
action_name
)
{
}
...
...
@@ -52,7 +51,7 @@ public:
// but override on_init instead.
void
onInit
()
final
{
node_
=
nav2_util
::
generate_internal_node
(
action_name_
);
node_
=
blackboard
()
->
template
get
<
rclcpp
::
Node
::
SharedPtr
>(
"node"
);
// Initialize the input and output messages
goal_
=
typename
ActionT
::
Goal
();
...
...
@@ -124,13 +123,7 @@ new_goal_received:
auto
future_result
=
goal_handle_
->
async_result
();
rclcpp
::
executor
::
FutureReturnCode
rc
;
do
{
{
// Can only have one spin_until_future_complete at a time. Otherwise we get
// the "already on a executor" error
std
::
lock_guard
<
std
::
mutex
>
guard
(
spin_mutex_
);
rc
=
rclcpp
::
spin_until_future_complete
(
node_
,
future_result
,
node_loop_timeout_
);
}
rc
=
rclcpp
::
spin_until_future_complete
(
node_
,
future_result
,
node_loop_timeout_
);
if
(
rc
==
rclcpp
::
executor
::
FutureReturnCode
::
TIMEOUT
)
{
on_loop_timeout
();
...
...
@@ -140,6 +133,9 @@ new_goal_received:
goal_updated_
=
false
;
goto
new_goal_received
;
}
// Yield to any other CoroActionNodes (coroutines)
setStatusRunningAndYield
();
}
}
while
(
rc
!=
rclcpp
::
executor
::
FutureReturnCode
::
SUCCESS
);
...
...
@@ -171,18 +167,15 @@ new_goal_received:
if
(
status
()
==
BT
::
NodeStatus
::
RUNNING
)
{
action_client_
->
async_cancel_goal
(
goal_handle_
);
auto
future_cancel
=
action_client_
->
async_cancel_goal
(
goal_handle_
);
{
std
::
lock_guard
<
std
::
mutex
>
guard
(
spin_mutex_
);
if
(
rclcpp
::
spin_until_future_complete
(
node_
,
future_cancel
)
!=
rclcpp
::
executor
::
FutureReturnCode
::
SUCCESS
)
{
RCLCPP_ERROR
(
node_
->
get_logger
(),
"Failed to cancel action server for %s"
,
action_name_
.
c_str
());
}
if
(
rclcpp
::
spin_until_future_complete
(
node_
,
future_cancel
)
!=
rclcpp
::
executor
::
FutureReturnCode
::
SUCCESS
)
{
RCLCPP_ERROR
(
node_
->
get_logger
(),
"Failed to cancel action server for %s"
,
action_name_
.
c_str
());
}
}
setStatus
(
BT
::
NodeStatus
::
IDLE
);
CoroActionNode
::
halt
();
}
protected
:
...
...
@@ -201,9 +194,6 @@ protected:
// The timeout value while to use in the tick loop while waiting for
// a result from the server
std
::
chrono
::
milliseconds
node_loop_timeout_
;
// A mutex to allow only one spin_until_future_complete at a time
std
::
mutex
spin_mutex_
;
};
}
// namespace nav2_tasks
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment