SMACC2
Loading...
Searching...
No Matches
cb_ros_launch_2.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>> CbRosLaunch2::detached_futures_;
27
29: packageName_(std::nullopt),
30 launchFileName_(std::nullopt),
32 client_(nullptr)
33{
34}
35
37: packageName_(package), launchFileName_(launchfile), launchMode_(launchmode), client_(nullptr)
38{
39}
40
42
43template <typename TOrthogonal, typename TSourceObject>
45{
46 smacc2::SmaccAsyncClientBehavior::onOrthogonalAllocation<TOrthogonal, TSourceObject>();
47}
48
50{
51 RCLCPP_INFO_STREAM(getLogger(), "[CbRosLaunch2] OnEntry");
52
53 std::string packageName, launchFileName;
54 if (
57 {
58 std::function<bool()> breakfunction;
59
61
63 getLogger(), "[CbRosLaunch2] launching: " << *packageName_ << " , " << *launchFileName_
64 << "LaunchMode: " << (int)launchMode_);
65
67 // this->result_ = smacc2::client_bases::ClRosLaunch2::executeRosLaunch(
69 }
71 {
74 {
77 }
78
79 RCLCPP_INFO_STREAM(getLogger(), "[CbRosLaunch2] finding Ros Launch client");
80
81 // this->requiresClient(client_);
82 if (client_ != nullptr)
83 {
85 getLogger(), "[CbRosLaunch2] launching from client: " << client_->packageName_ << " , "
87
88 client_->launch();
89 }
90 else
91 {
93 getLogger(),
94 "[CbRosLaunch2] Inccorrect ros launch operation. No Ros Launch client specified neither "
95 "package/roslaunch file path.");
96 }
97 }
98 else
99 {
101 getLogger(),
102 "[CbRosLaunch2] Inccorrect ros launch operation. Not supported case. Invalid argument.");
103 }
104}
105
106} // namespace client_behaviors
107} // 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, ClRosLaunch2 *client=nullptr)
std::optional< std::string > launchFileName_
smacc2::client_bases::ClRosLaunch2 * client_
std::optional< std::string > packageName_
static std::vector< std::future< std::string > > detached_futures_