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::example_component_plugin_user
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 
27 // #include <mutex>
28 
30 
33 
34 // #include <ArmarXCore/libraries/ArmarXCoreComponentPlugins/DebugObserverComponentPlugin.h>
35 
36 // #include <ArmarXGui/libraries/ArmarXGuiComponentPlugins/LightweightRemoteGuiComponentPlugin.h>
37 
38 // #include <RobotAPI/libraries/RobotAPIComponentPlugins/ArVizComponentPlugin.h>
39 
41 #include <armarx/control/components/example_component_plugin_user/ComponentInterface.h>
42 
44 {
45 
46  class Component :
47  virtual public armarx::Component,
50  // , virtual public armarx::DebugObserverComponentPluginUser
51  // , virtual public armarx::LightweightRemoteGuiComponentPluginUser
52  // , virtual public armarx::ArVizComponentPluginUser
54  virtual public armem::ClientPluginUser // TODO check if needed...
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  };
115 
116  Properties properties;
117  /* Use a mutex if you access variables from different threads
118  * (e.g. ice functions and RemoteGui_update()).
119  std::mutex propertiesMutex;
120  */
121 
122 
123  /* (Requires the armarx::LightweightRemoteGuiComponentPluginUser.)
124  /// Tab shown in the Remote GUI.
125  struct RemoteGuiTab : armarx::RemoteGui::Client::Tab
126  {
127  armarx::RemoteGui::Client::LineEdit boxLayerName;
128  armarx::RemoteGui::Client::IntSpinBox numBoxes;
129 
130  armarx::RemoteGui::Client::Button drawBoxes;
131  };
132  RemoteGuiTab tab;
133  */
134 
135 
136  /* (Requires the armarx::ArVizComponentPluginUser.)
137  * When used from different threads, an ArViz client needs to be synchronized.
138  /// Protects the arviz client inherited from the ArViz plugin.
139  std::mutex arvizMutex;
140  */
141  };
142 
143 } // namespace armarx::control::components::example_component_plugin_user
armarx::control::components::example_component_plugin_user::Component::getDefaultName
std::string getDefaultName() const override
Definition: Component.cpp:281
armarx::control::components::example_component_plugin_user::Component::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: Component.cpp:45
armarx::control::components::example_component_plugin_user::Component::GetDefaultName
static std::string GetDefaultName()
Get the component's default name.
Definition: Component.cpp:287
armarx::armem::client::plugins::PluginUser
Adds the Memory Name System client component plugin.
Definition: PluginUser.h:27
armarx::control::client::ComponentPluginUser
Definition: ComponentPlugin.h:146
forward_declarations.h
armarx::control::components::example_component_plugin_user::Component::onDisconnectComponent
void onDisconnectComponent() override
Definition: Component.cpp:271
armarx::control::components::example_component_plugin_user::Component::onExitComponent
void onExitComponent() override
Definition: Component.cpp:276
armarx::control::components::example_component_plugin_user
Definition: Component.cpp:39
Component.h
armarx::Component
Baseclass for all ArmarX ManagedIceObjects requiring properties.
Definition: Component.h:91
armarx::control::components::example_component_plugin_user::Component::onConnectComponent
void onConnectComponent() override
Definition: Component.cpp:82
IceUtil::Handle< class PropertyDefinitionContainer >
PluginUser.h
ComponentPlugin.h
armarx::control::components::example_component_plugin_user::Component
Definition: Component.h:46
armarx::control::components::example_component_plugin_user::ComponentInterface
Definition: ComponentInterface.ice:36
armarx::control::components::example_component_plugin_user::Component::onInitComponent
void onInitComponent() override
Definition: Component.cpp:72