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 control::ArmarXObjects::retrieve_hand
17  * @author Jianfeng Gao ( jianfeng dot gao at kit dot edu )
18  * @date 2023
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 
24 #pragma once
25 
26 
27 // #include <mutex>
28 
30 
31 // #include <ArmarXCore/libraries/ArmarXCoreComponentPlugins/DebugObserverComponentPlugin.h>
32 
33 // #include <ArmarXGui/libraries/ArmarXGuiComponentPlugins/LightweightRemoteGuiComponentPlugin.h>
34 
35 // #include <RobotAPI/libraries/RobotAPIComponentPlugins/ArVizComponentPlugin.h>
36 #include <RobotAPI/interface/units/RobotUnit/RobotUnitInterface.h>
39 
40 #include <armarx/control/components/retrieve_hand_skill_provider/ComponentInterface.h>
41 
43 {
44 
45  class Component :
46  virtual public ::armarx::Component,
47  virtual public ::armarx::control::components::retrieve_hand_skill_provider::
51 
52  // , virtual public armarx::DebugObserverComponentPluginUser
53  // , virtual public armarx::LightweightRemoteGuiComponentPluginUser
54  // , virtual public armarx::ArVizComponentPluginUser
55  {
56  public:
57  /// @see armarx::ManagedIceObject::getDefaultName()
58  std::string getDefaultName() const override;
59 
60  /// Get the component's default name.
61  static std::string GetDefaultName();
62 
63 
64  protected:
65  /// @see PropertyUser::createPropertyDefinitions()
67 
68  /// @see armarx::ManagedIceObject::onInitComponent()
69  void onInitComponent() override;
70 
71  /// @see armarx::ManagedIceObject::onConnectComponent()
72  void onConnectComponent() override;
73 
74  /// @see armarx::ManagedIceObject::onDisconnectComponent()
75  void onDisconnectComponent() override;
76 
77  /// @see armarx::ManagedIceObject::onExitComponent()
78  void onExitComponent() override;
79 
80 
81  /* (Requires armarx::LightweightRemoteGuiComponentPluginUser.)
82  /// This function should be called once in onConnect() or when you
83  /// need to re-create the Remote GUI tab.
84  void createRemoteGuiTab();
85 
86  /// After calling `RemoteGui_startRunningTask`, this function is
87  /// called periodically in a separate thread. If you update variables,
88  /// make sure to synchronize access to them.
89  void RemoteGui_update() override;
90  */
91 
92 
93  private:
94  // Private methods go here.
95 
96  // Forward declare `Properties` if you used it before its defined.
97  // struct Properties;
98 
99  /* (Requires the armarx::ArVizComponentPluginUser.)
100  /// Draw some boxes in ArViz.
101  void drawBoxes(const Properties& p, viz::Client& arviz);
102  */
103 
104 
105  private:
106  static const std::string defaultName;
107 
108  // Private member variables go here.
109 
110 
111  /// Properties shown in the Scenario GUI.
112  struct Properties
113  {
114  std::string retrieveHandSkillProviderName = "retrieveHandSkillProvider";
115  };
116 
117  Properties properties;
118 
119  struct Remote
120  {
122  };
123 
124  Remote remote;
125  /* Use a mutex if you access variables from different threads
126  * (e.g. ice functions and RemoteGui_update()).
127  std::mutex propertiesMutex;
128  */
129 
130 
131  /* (Requires the armarx::LightweightRemoteGuiComponentPluginUser.)
132  /// Tab shown in the Remote GUI.
133  struct RemoteGuiTab : armarx::RemoteGui::Client::Tab
134  {
135  armarx::RemoteGui::Client::LineEdit boxLayerName;
136  armarx::RemoteGui::Client::IntSpinBox numBoxes;
137 
138  armarx::RemoteGui::Client::Button drawBoxes;
139  };
140  RemoteGuiTab tab;
141  */
142  };
143 
144 } // namespace armarx::control::components::retrieve_hand_skill_provider
armarx::control::components::retrieve_hand_skill_provider::ComponentInterface
Definition: ComponentInterface.ice:38
armarx::control::components::retrieve_hand_skill_provider::Component::onExitComponent
void onExitComponent() override
Definition: Component.cpp:141
SkillProviderComponentPlugin.h
armarx::control::components::retrieve_hand_skill_provider::Component::onDisconnectComponent
void onDisconnectComponent() override
Definition: Component.cpp:136
armarx::control::components::retrieve_hand_skill_provider::Component::GetDefaultName
static std::string GetDefaultName()
Get the component's default name.
Definition: Component.cpp:152
armarx::armem::client::plugins::PluginUser
Adds the Memory Name System client component plugin.
Definition: PluginUser.h:27
armarx::SkillProviderComponentPluginUser
Definition: SkillProviderComponentPlugin.h:109
armarx::control::components::retrieve_hand_skill_provider
Definition: Component.cpp:36
armarx::control::components::retrieve_hand_skill_provider::Component::getDefaultName
std::string getDefaultName() const override
Definition: Component.cpp:146
armarx::control::components::retrieve_hand_skill_provider::Component
Definition: Component.h:45
Component.h
armarx::control::components::retrieve_hand_skill_provider::Component::createPropertyDefinitions
::armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: Component.cpp:42
armarx::Component
Baseclass for all ArmarX ManagedIceObjects requiring properties.
Definition: Component.h:91
IceUtil::Handle< class PropertyDefinitionContainer >
armarx::control::components::retrieve_hand_skill_provider::Component::onConnectComponent
void onConnectComponent() override
Definition: Component.cpp:80
IceInternal::ProxyHandle<::IceProxy::armarx::RobotUnitInterface >
PluginUser.h
armarx::control::components::retrieve_hand_skill_provider::Component::onInitComponent
void onInitComponent() override
Definition: Component.cpp:70