Component.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  * @package navigation::ArmarXObjects::distance_to_obstacle_costmap_provider
17  * @author Fabian Reister ( fabian dot reister at kit dot edu )
18  * @date 2022
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 
24 #pragma once
25 
26 #include <mutex>
27 #include <optional>
28 #include <string>
29 #include <vector>
30 
33 
41 
44 #include <armarx/navigation/components/distance_to_obstacle_costmap_provider/ComponentInterface.h>
48 
50 {
51 
52  class Component :
53  virtual public armarx::Component,
54  virtual public ObjectPoseClientPluginUser,
58  // , virtual public armarx::DebugObserverComponentPluginUser
59  // , virtual public armarx::LightweightRemoteGuiComponentPluginUser
60  // , virtual public armarx::ArVizComponentPluginUser
61  {
62  public:
63  Component();
64 
65  /// @see armarx::ManagedIceObject::getDefaultName()
66  std::string getDefaultName() const override;
67 
68  /// Get the component's default name.
69  static std::string GetDefaultName();
70 
71 
72  protected:
73  /// @see PropertyUser::createPropertyDefinitions()
75 
76  /// @see armarx::ManagedIceObject::onInitComponent()
77  void onInitComponent() override;
78 
79  /// @see armarx::ManagedIceObject::onConnectComponent()
80  void onConnectComponent() override;
81 
82  /// @see armarx::ManagedIceObject::onDisconnectComponent()
83  void onDisconnectComponent() override;
84 
85  /// @see armarx::ManagedIceObject::onExitComponent()
86  void onExitComponent() override;
87 
88 
89  /* (Requires armarx::LightweightRemoteGuiComponentPluginUser.)
90  /// This function should be called once in onConnect() or when you
91  /// need to re-create the Remote GUI tab.
92  void createRemoteGuiTab();
93 
94  /// After calling `RemoteGui_startRunningTask`, this function is
95  /// called periodically in a separate thread. If you update variables,
96  /// make sure to synchronize access to them.
97  void RemoteGui_update() override;
98  */
99 
100  bool createAndStoreCostmap();
101 
102  void processObjectInstance(const armem::MemoryID& id,
103  const std::vector<armem::MemoryID>& snapshotIDs);
104 
105  private:
106  // Private methods go here.
107 
108  // Forward declare `Properties` if you used it before its defined.
109  // struct Properties;
110 
111  /* (Requires the armarx::ArVizComponentPluginUser.)
112  /// Draw some boxes in ArViz.
113  void drawBoxes(const Properties& p, viz::Client& arviz);
114  */
115 
116 
117  static const std::string defaultName;
118 
119  // Private member variables go here.
120 
121 
122  /// Properties shown in the Scenario GUI.
123  struct Properties
124  {
125  std::string robotName;
126  std::string primitiveModelIds =
127  "navigation,urdf_col"; // intentionally not using empty default model
128  std::string colModel = "Platform-navigation-colmodel";
129 
130  algorithms::Costmap::Parameters costmapParams;
132 
133  std::string costmapToExtend;
134  bool buildSecondCostmapWithSmallerMargins = true;
135  std::string costmapSmallerMarginsToExtend;
136  };
137 
138  Properties properties;
139  /* Use a mutex if you access variables from different threads
140  * (e.g. ice functions and RemoteGui_update()).
141  std::mutex propertiesMutex;
142  */
143 
144 
145  /* (Requires the armarx::LightweightRemoteGuiComponentPluginUser.)
146  /// Tab shown in the Remote GUI.
147  struct RemoteGuiTab : armarx::RemoteGui::Client::Tab
148  {
149  armarx::RemoteGui::Client::LineEdit boxLayerName;
150  armarx::RemoteGui::Client::IntSpinBox numBoxes;
151 
152  armarx::RemoteGui::Client::Button drawBoxes;
153  };
154  RemoteGuiTab tab;
155  */
156 
157 
158  /* (Requires the armarx::ArVizComponentPluginUser.)
159  * When used from different threads, an ArViz client needs to be synchronized.
160  /// Protects the arviz client inherited from the ArViz plugin.
161  std::mutex arvizMutex;
162  */
163  std::optional<armem::robot_state::description::RobotDescription> robotDescription;
165  virtualRobotReaderPlugin = nullptr;
166 
167 
170  articulatedObjectReaderPlugin = nullptr;
171 
172 
174  costmapReaderPlugin = nullptr;
175 
177  costmapWriterPlugin = nullptr;
178 
179 
181  roomReaderPlugin = nullptr;
182 
183 
184  std::mutex createCostmapMtx;
185  };
186 
187 } // namespace armarx::navigation::components::distance_to_obstacle_costmap_provider
armarx::armem::articulated_object::ArticulatedObjectReader
Definition: ArticulatedObjectReader.h:10
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::createAndStoreCostmap
bool createAndStoreCostmap()
Definition: Component.cpp:226
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::onDisconnectComponent
void onDisconnectComponent() override
Definition: Component.cpp:391
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::GetDefaultName
static std::string GetDefaultName()
Get the component's default name.
Definition: Component.cpp:407
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::onConnectComponent
void onConnectComponent() override
Definition: Component.cpp:119
armarx::navigation::components::distance_to_obstacle_costmap_provider::ComponentInterface
Definition: ComponentInterface.ice:38
ObjectPoseClientPlugin.h
MemoryID.h
CostmapBuilder.h
armarx::armem::client::plugins::ReaderWriterPlugin
A component plugin offering client-side access to a reader or writer and manages the lifecycle,...
Definition: ReaderWriterPlugin.h:44
Reader.h
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: Component.cpp:77
ReaderWriterPlugin.h
armarx::ObjectPoseClientPluginUser
Provides an objpose::ObjectPoseTopicPrx objectPoseTopic as member variable.
Definition: ObjectPoseClientPlugin.h:64
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::processObjectInstance
void processObjectInstance(const armem::MemoryID &id, const std::vector< armem::MemoryID > &snapshotIDs)
Definition: Component.cpp:126
Costmap.h
ArticulatedObjectReader.h
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::onInitComponent
void onInitComponent() override
Definition: Component.cpp:109
armarx::armem::MemoryID
A memory ID.
Definition: MemoryID.h:47
Reader.h
VirtualRobotReader.h
types.h
Component.h
armarx::Component
Baseclass for all ArmarX ManagedIceObjects requiring properties.
Definition: Component.h:91
armarx::navigation::algorithms::CostmapBuilder::CostmapBuilderParams
Definition: CostmapBuilder.h:43
Writer.h
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component
Definition: Component.h:52
PropertyDefinitionContainer.h
IceUtil::Handle< class PropertyDefinitionContainer >
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::onExitComponent
void onExitComponent() override
Definition: Component.cpp:396
armarx::navigation::algorithms::Costmap::Parameters
Definition: Costmap.h:24
armarx::armem::client::plugins::ListeningPluginUser
A memory name system client which listens to the memory updates topic (MemoryListenerInterface).
Definition: ListeningPluginUser.h:21
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::Component
Component()
Definition: Component.cpp:65
ListeningPluginUser.h
armarx::navigation::components::distance_to_obstacle_costmap_provider
Definition: Component.cpp:63
armarx::navigation::components::distance_to_obstacle_costmap_provider::Component::getDefaultName
std::string getDefaultName() const override
Definition: Component.cpp:401