SMACC2
Loading...
Searching...
No Matches
cb_ros_launch.cpp
Go to the documentation of this file.
1// Copyright 2021 RobosoftAI Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15/*****************************************************************************************************************
16 *
17 * Authors: Pablo Inigo Blasco, Brett Aldrich
18 *
19 ******************************************************************************************************************/
21
22namespace smacc2
23{
24namespace client_behaviors
25{
26std::vector<std::future<std::string>> CbRosLaunch::detached_futures_;
27
29: packageName_(std::nullopt),
30 launchFileName_(std::nullopt),
32{
33}
34
36: packageName_(package), launchFileName_(launchfile), launchMode_(launchmode)
37{
38}
39
41
42template <typename TOrthogonal, typename TSourceObject>
44{
45 smacc2::SmaccAsyncClientBehavior::onOrthogonalAllocation<TOrthogonal, TSourceObject>();
46}
47
49{
50 RCLCPP_INFO_STREAM(getLogger(), "[CbRosLaunch] OnEntry");
51
52 std::string packageName, launchFileName;
54 {
55 std::function<bool()> breakfunction;
56
58 {
59 breakfunction = [this]() -> bool { return this->isShutdownRequested(); };
60 }
61 else
62 {
63 breakfunction = []() -> bool { return false; };
64 }
65
67 getLogger(), "[CbRosLaunch] launching: " << *packageName_ << " , " << *launchFileName_
68 << "LaunchMode: " << (int)launchMode_);
69
72
74 detached_futures_.push_back(std::move(fut));
75 else
76 future_ = std::move(fut);
77 }
78 else
79 {
80 RCLCPP_INFO_STREAM(getLogger(), "[CbRosLaunch] finding Ros Launch client");
81
83 if (client_ != nullptr)
84 {
86 getLogger(), "[CbRosLaunch] launching from client: " << client_->packageName_ << " , "
88
89 client_->launch();
90 }
91 else
92 {
94 getLogger(),
95 "[CbRosLaunch] Inccorrect ros launch operation. No Ros Launch client specified neither "
96 "package/roslaunch file path.");
97 }
98 }
99}
100
101} // namespace client_behaviors
102} // namespace smacc2
virtual rclcpp::Logger getLogger() const
void requiresClient(SmaccClientType *&storage)
bool isShutdownRequested()
onEntry is executed in a new thread. However the current state cannot be left until the onEntry threa...
static std::future< std::string > executeRosLaunch(std::string packageName, std::string launchFilename, std::function< bool()> cancelCondition)
std::optional< std::string > launchFileName_
smacc2::client_bases::ClRosLaunch * client_
std::future< std::string > future_
std::optional< std::string > packageName_
static std::vector< std::future< std::string > > detached_futures_