MemoryIntrospector.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  * @author Christian R. G. Dreher ( c dot dreher at kit dot edu )
18  * @date 2021
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #pragma once
24 
25 #include <optional>
26 #include <string>
27 #include <vector>
28 
35 
37 {
38 
40  {
41  public:
43  const std::string& clientID);
44  ~MemoryIntrospector() override = default;
45 
46 
49  const std::optional<local_planning::LocalPlannerResult>& result) override;
50 
51  void
52  onRobotPose(const core::Pose& pose) override
53  {
54  }
55 
56  void onGoal(const core::Pose& goal) override;
57 
58  void success() override {};
59  void failure() override {};
60 
61  void
62  onGlobalShortestPath(const std::vector<core::Pose>& path) override
63  {
64  }
65 
66  void
67  onGlobalGraph(const core::Graph& graph) override
68  {
69  }
70 
71 
72  protected:
73  private:
75  const std::string clientID;
76  };
77 } // namespace armarx::navigation::server
armarx::navigation::server::MemoryIntrospector::onGlobalGraph
void onGlobalGraph(const core::Graph &graph) override
Definition: MemoryIntrospector.h:67
armarx::navigation::server::MemoryIntrospector::failure
void failure() override
Definition: MemoryIntrospector.h:59
armarx::navigation::core::Pose
Eigen::Isometry3f Pose
Definition: basic_types.h:31
basic_types.h
armarx::navigation::server::MemoryIntrospector::onGlobalShortestPath
void onGlobalShortestPath(const std::vector< core::Pose > &path) override
Definition: MemoryIntrospector.h:62
LocalPlanner.h
armarx::navigation::server::MemoryIntrospector
Definition: MemoryIntrospector.h:39
IntrospectorInterface.h
armarx::navigation::server
This file is part of ArmarX.
Definition: EventPublishingInterface.h:6
armarx::navigation::server::MemoryIntrospector::onLocalPlannerResult
void onLocalPlannerResult(const std::optional< local_planning::LocalPlannerResult > &result) override
Definition: MemoryIntrospector.cpp:26
armarx::navigation::server::MemoryIntrospector::~MemoryIntrospector
~MemoryIntrospector() override=default
armarx::navigation::core::Graph
Definition: Graph.h:89
GlobalPlanner.h
armarx::navigation::server::MemoryIntrospector::success
void success() override
Definition: MemoryIntrospector.h:58
armarx::navigation::global_planning::GlobalPlannerResult
Definition: GlobalPlanner.h:38
armarx::navigation::server::MemoryIntrospector::onRobotPose
void onRobotPose(const core::Pose &pose) override
Definition: MemoryIntrospector.h:52
armarx::navigation::server::IntrospectorInterface
Definition: IntrospectorInterface.h:38
armarx::navigation::memory::client::stack_result::Writer
Definition: Writer.h:37
armarx::navigation::server::MemoryIntrospector::onGlobalPlannerResult
void onGlobalPlannerResult(const global_planning::GlobalPlannerResult &result) override
Definition: MemoryIntrospector.cpp:20
Graph.h
Writer.h
armarx::navigation::server::MemoryIntrospector::MemoryIntrospector
MemoryIntrospector(memory::client::stack_result::Writer &globPlanWriter, const std::string &clientID)
Definition: MemoryIntrospector.cpp:13
armarx::navigation::server::MemoryIntrospector::onGoal
void onGoal(const core::Pose &goal) override
Definition: MemoryIntrospector.cpp:33