Graph.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 Rainer Kartmann ( rainer dot kartmann 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 <optional>
25 #include <string>
26 #include <vector>
27 
33 
36 #include <armarx/navigation/core/aron/Graph.aron.generated.h>
38 
39 #include <SemanticObjectRelations/RelationGraph/RelationGraph.h>
40 
42 {
43 
44  struct VertexAttribs : public semrel::ShapeVertex
45  {
46  armarx::navigation::core::arondto::Vertex aron;
47 
48  std::string getName() const;
49  bool hasName() const;
50 
51  bool hasPose() const;
52  FramedPose getPose() const;
53  void setPose(const FramedPose& pose);
54 
55  Pose requireGlobal() const;
56 
57  private:
58  std::optional<FramedPose> _pose;
59  };
60 
61  struct EdgeAttribs
62  {
63  armarx::navigation::core::arondto::Edge aron;
64 
66 
67  // client::Config config;
68  float&
69  cost()
70  {
71  return m_value;
72  }
73 
74  const float&
75  cost() const
76  {
77  return m_value;
78  }
79 
80  std::optional<core::GlobalTrajectory> trajectory = std::nullopt;
81 
82  float m_value{0.F};
83  };
84 
85  struct GraphAttribs
86  {
87  };
88 
89  class Graph : public semrel::RelationGraph<VertexAttribs, EdgeAttribs, GraphAttribs>
90  {
91  public:
92  /**
93  * @brief Get a string representation of the given vertex for usage in `str()`.
94  * By default, returns `"[<vertex descriptor> (ID <object ID>)]"`.
95  */
96  // virtual std::string strVertex(ConstVertex v) const;
97  /**
98  * @brief Get a string representation of the given edge for usage in `str()`.
99  * By default, returns
100  * `"[<source descriptor> (ID <source ID>) -> <target descriptor> (ID <target ID>)"`.
101  */
102  std::string strEdge(ConstEdge edge) const override;
103  };
104 
105  using Graphs = std::vector<Graph>;
106 
107  using GraphPath = std::vector<Graph::ConstVertex>;
108  std::vector<GraphPath> findPathsTo(Graph::ConstVertex vertex, const Graph& graph);
109 
110  Graph::ConstVertex getVertexByName(const std::string& vertexName, const Graph& graph);
111 
112  bool hasVertex(const std::string& vertexName, const Graph& graph);
113  const core::Graph& getSubgraph(const std::string& vertexName, const Graphs& graphs);
114 
115  void toAron(arondto::Graph& dto, const Graph& bo);
116  void fromAron(const arondto::Graph& dto, Graph& bo);
117 
118 
119  // Location resolution
120 
121  void resolveLocation(Graph::Vertex& vertex, const aron::data::DictPtr& locationData);
122 
123  template <class MemoryContainerT>
124  bool
125  resolveLocation(Graph::Vertex& vertex, const MemoryContainerT& locationContainer)
126  {
127  armem::MemoryID locationID;
128  fromAron(vertex.attrib().aron.locationID, locationID);
129 
130  if (const auto* instance = locationContainer.findLatestInstance(locationID))
131  {
132  resolveLocation(vertex, instance->data());
133  return true;
134  }
135 
136  return false;
137  }
138 
139  template <class MemoryContainerT>
140  void
141  resolveLocations(Graph& graph, const MemoryContainerT& locationContainer)
142  {
143  for (auto vertex : graph.vertices())
144  {
145  resolveLocation(vertex, locationContainer);
146  }
147  }
148 
149 
150 } // namespace armarx::navigation::core
armarx::navigation::core::resolveLocations
void resolveLocations(Graph &graph, const MemoryContainerT &locationContainer)
Definition: Graph.h:141
armarx::navigation::core::resolveLocation
void resolveLocation(Graph::Vertex &vertex, const aron::data::DictPtr &locationData)
Definition: Graph.cpp:250
armarx::navigation::core::VertexAttribs::requireGlobal
Pose requireGlobal() const
Definition: Graph.cpp:84
armarx::navigation::core::Pose
Eigen::Isometry3f Pose
Definition: basic_types.h:31
types.h
basic_types.h
armarx::FramedPose
The FramedPose class.
Definition: FramedPose.h:280
armarx::navigation::client::GlobalPlanningStrategy::Free
@ Free
armarx::navigation::core::GraphAttribs
Definition: Graph.h:85
armarx::navigation::core::fromAron
void fromAron(const arondto::GlobalTrajectoryPoint &dto, GlobalTrajectoryPoint &bo)
Definition: aron_conversions.cpp:31
MemoryID.h
armarx::navigation::core::VertexAttribs::getName
std::string getName() const
Definition: Graph.cpp:47
armarx::navigation::core::EdgeAttribs::cost
const float & cost() const
Definition: Graph.h:75
forward_declarations.h
semrel::RelationGraph
Definition: forward_declarations.h:27
armarx::navigation::core::Graphs
std::vector< Graph > Graphs
Definition: Graph.h:105
armarx::navigation::core
This file is part of ArmarX.
Definition: aron_conversions.cpp:19
armarx::navigation::core::toAron
void toAron(arondto::GlobalTrajectoryPoint &dto, const GlobalTrajectoryPoint &bo)
Definition: aron_conversions.cpp:24
armarx::navigation::core::hasVertex
bool hasVertex(const std::string &vertexName, const Graph &graph)
Definition: Graph.cpp:207
armarx::navigation::core::Graph::strEdge
std::string strEdge(ConstEdge edge) const override
Get a string representation of the given vertex for usage in str().
Definition: Graph.cpp:97
armarx::navigation::core::VertexAttribs::hasPose
bool hasPose() const
Definition: Graph.cpp:65
armarx::navigation::core::EdgeAttribs::strategy
client::GlobalPlanningStrategy strategy
Definition: Graph.h:65
armarx::armem::MemoryID
A memory ID.
Definition: MemoryID.h:47
FramedPose.h
armarx::navigation::core::Graph
Definition: Graph.h:89
forward_declarations.h
armarx::navigation::core::findPathsTo
std::vector< GraphPath > findPathsTo(Graph::ConstVertex vertex, const Graph &graph)
Definition: Graph.cpp:165
armarx::Graph
boost::subgraph< CloudGraph > Graph
Definition: Common.h:58
armarx::navigation::core::EdgeAttribs
Definition: Graph.h:61
armarx::navigation::core::VertexAttribs::getPose
FramedPose getPose() const
Definition: Graph.cpp:71
armarx::navigation::core::VertexAttribs::hasName
bool hasName() const
Definition: Graph.cpp:58
aron_conversions.h
armarx::navigation::core::EdgeAttribs::aron
armarx::navigation::core::arondto::Edge aron
Definition: Graph.h:63
armarx::aron::data::DictPtr
std::shared_ptr< Dict > DictPtr
Definition: Dict.h:41
armarx::navigation::core::VertexAttribs
Definition: Graph.h:44
armarx::navigation::client::GlobalPlanningStrategy
GlobalPlanningStrategy
Definition: types.h:27
armarx::navigation::core::GraphPath
std::vector< Graph::ConstVertex > GraphPath
Definition: Graph.h:107
armarx::navigation::core::EdgeAttribs::cost
float & cost()
Definition: Graph.h:69
Trajectory.h
armarx::navigation::core::EdgeAttribs::m_value
float m_value
Definition: Graph.h:82
armarx::navigation::core::VertexAttribs::aron
armarx::navigation::core::arondto::Vertex aron
Definition: Graph.h:46
armarx::navigation::core::VertexAttribs::setPose
void setPose(const FramedPose &pose)
Definition: Graph.cpp:78
armarx::aron::bo
const std::optional< BoT > & bo
Definition: aron_conversions.h:174
armarx::navigation::core::EdgeAttribs::trajectory
std::optional< core::GlobalTrajectory > trajectory
Definition: Graph.h:80
armarx::navigation::core::getSubgraph
const core::Graph & getSubgraph(const std::string &vertexName, const Graphs &graphs)
Definition: Graph.cpp:217
armarx::navigation::core::getVertexByName
Graph::ConstVertex getVertexByName(const std::string &vertexName, const Graph &graph)
Definition: Graph.cpp:192