ice_conversions.h
Go to the documentation of this file.
1 /**
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @author Fabian Reister ( fabian dot reister at kit dot edu )
17  * @date 2021
18  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19  * GNU General Public License
20  */
21 
22 #pragma once
23 
24 #include <iosfwd>
25 #include <optional>
26 #include <string>
27 #include <vector>
28 
30 
31 #include <armarx/navigation/client/ice/NavigatorInterface.h>
34 
36 {
37 
38  // TODO move type out of this header (e.g. to types.h)
40  {
41  std::optional<std::string> locationId = std::nullopt;
42  std::optional<core::Pose> pose = std::nullopt;
43 
45 
46  //client::Config config;
47  };
48 
49  inline std::ostream&
50  operator<<(std::ostream& str, const WaypointTarget& res)
51  {
52  str << "WaypointTarget { ";
53 
54  if (res.locationId.has_value() and not res.locationId->empty())
55  {
56  str << "location: " << res.locationId.value();
57  }
58  else if (res.pose.has_value())
59  {
60  str << "pose :" << res.pose->matrix();
61  }
62 
63  str << "}";
64 
65  return str;
66  }
67 
68  // TODO move to util file
69  inline void
70  validate(const std::vector<WaypointTarget>& path)
71  {
72  std::for_each(path.begin(),
73  path.end(),
74  [](const WaypointTarget& wpTarget)
75  {
76  ARMARX_CHECK(wpTarget.locationId.has_value() or wpTarget.pose.has_value())
77  << "Either `locationId` or `pose` has to be provided.";
78  });
79  }
80 
81  using WaypointTargets = std::vector<WaypointTarget>;
82 
86 
90 
91 } // namespace armarx::navigation::client
armarx::navigation::client::detail::GlobalPlanningStrategy
GlobalPlanningStrategy
Definition: NavigatorInterface.ice:42
str
std::string str(const T &t)
Definition: UserAssistedSegmenterGuiWidgetController.cpp:43
types.h
basic_types.h
armarx::navigation::client::GlobalPlanningStrategy::Free
@ Free
armarx::navigation::client::freeze
client::detail::GlobalPlanningStrategy freeze(const client::GlobalPlanningStrategy &strategy)
Definition: ice_conversions.cpp:84
armarx::navigation::client::WaypointTarget::strategy
client::GlobalPlanningStrategy strategy
Definition: ice_conversions.h:44
boost::target
Vertex target(const detail::edge_base< Directed, Vertex > &e, const PCG &)
Definition: point_cloud_graph.h:668
armarx::navigation::client
This file is part of ArmarX.
Definition: ComponentPlugin.cpp:21
armarx::navigation::client::WaypointTarget::pose
std::optional< core::Pose > pose
Definition: ice_conversions.h:42
armarx::navigation::client::WaypointTarget::locationId
std::optional< std::string > locationId
Definition: ice_conversions.h:41
armarx::navigation::client::defrost
client::GlobalPlanningStrategy defrost(const client::detail::GlobalPlanningStrategy &strategy)
Definition: ice_conversions.cpp:21
armarx::navigation::client::detail::Waypoints
sequence< Waypoint > Waypoints
Definition: NavigatorInterface.ice:57
armarx::navigation::client::operator<<
std::ostream & operator<<(std::ostream &str, const WaypointTarget &res)
Definition: ice_conversions.h:50
armarx::navigation::client::WaypointTarget
Definition: ice_conversions.h:39
ExpressionException.h
armarx::navigation::client::validate
void validate(const std::vector< WaypointTarget > &path)
Definition: ice_conversions.h:70
armarx::navigation::client::GlobalPlanningStrategy
GlobalPlanningStrategy
Definition: types.h:27
armarx::navigation::client::WaypointTargets
std::vector< WaypointTarget > WaypointTargets
Definition: ice_conversions.h:81
armarx::navigation::client::detail::Waypoint
Definition: NavigatorInterface.ice:49