-
Notifications
You must be signed in to change notification settings - Fork 316
/
Copy pathnot_composable.cpp
105 lines (92 loc) · 3.18 KB
/
not_composable.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Copyright 2018 Open Source Robotics Foundation, 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.
#include <inttypes.h>
#include <memory>
#include "example_interfaces/action/fibonacci.hpp"
#include "rclcpp/rclcpp.hpp"
// TODO(jacobperron): Remove this once it is included as part of 'rclcpp.hpp'
#include "rclcpp_action/rclcpp_action.hpp"
using Fibonacci = example_interfaces::action::Fibonacci;
using GoalHandleFibonacci = rclcpp_action::ServerGoalHandle<Fibonacci>;
rclcpp_action::GoalResponse handle_goal(
std::array<uint8_t, 16> uuid, const std::shared_ptr<Fibonacci::Goal> goal)
{
(void)uuid;
// Let's reject sequences that are over 9000
if (goal->order > 9000)
{
return rclcpp_action::GoalResponse::REJECT;
}
return rclcpp_action::GoalResponse::ACCEPT;
}
rclcpp_action::CancelResponse handle_cancel(
const std::shared_ptr<GoalHandleFibonacci> goal_handle)
{
(void)goal_handle;
return rclcpp_action::CancelResponse::ACCEPT;
}
void execute(
const std::shared_ptr<GoalHandleFibonacci> goal_handle)
{
rclcpp::Rate loop_rate(1);
const auto goal = goal_handle->get_goal();
Fibonacci::Feedback::SharedPtr feedback;
auto& sequence = feedback->sequence;
sequence.push_back(0);
sequence.push_back(1);
Fibonacci::Result::SharedPtr result_response;
for (int i = 1; (i < goal->order) && rclcpp::ok(); ++i)
{
// Check if there is a cancel request
if (goal_handle->is_cancel_request())
{
result_response->sequence = sequence;
goal_handle->set_canceled(result_response);
}
// Check if goal is done
if (i > goal->order)
{
result_response->sequence = sequence;
goal_handle->set_succeeded(result_response);
}
// Update sequence
sequence.push_back(sequence[i] + sequence[i - 1]);
// Publish feedback
goal_handle->publish_feedback(feedback);
loop_rate.sleep();
}
}
void handle_execute(const std::shared_ptr<GoalHandleFibonacci> goal_handle)
{
// handle_execute needs to return quickly to avoid blocking the executor, so spin up a new thread
std::thread{execute, goal_handle}.detach();
}
int main(int argc, char ** argv)
{
rclcpp::init(argc, argv);
auto node = rclcpp::Node::make_shared("minimal_action_server");
// Create an action server with three callbacks
// 'handle_goal' and 'handle_cancel' are called by the Executor (rclcpp::spin)
// 'execute' is called whenever 'handle_goal' returns by accepting a goal
// Calls to 'execute' are made in an available thread from a pool of four.
auto action_server = rclcpp_action::create_server<Fibonacci>(
node,
"fibonacci",
handle_goal,
handle_cancel,
handle_execute);
rclcpp::spin(node);
rclcpp::shutdown();
return 0;
}