LightweightRemoteGuiComponentPlugin.cpp
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 ArmarXGui::ArmarXObjects::ArmarXGuiComponentPlugins
17  * @author Raphael Grimm ( raphael dot grimm at kit dot edu )
18  * @date 2019
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
24 
26 
27 // These are the headers which we try to avoid to include.
28 // It is needed here to get the actual proxy.
29 // But this is only in a source file, so only this file will compile slowly.
30 // Any user of this plugin will not need to include it.
33 
34 #include <ArmarXGui/interface/RemoteGuiInterface.h>
36 
37 namespace armarx
38 {
41 
42  namespace plugins
43  {
44  static const std::string PROPERTY_NAME = "RemoteGuiName";
45 
46  void
48  {
49  if (!remoteGuiObject)
50  {
51  parent<Component>().usingProxyFromProperty(PROPERTY_NAME);
52  }
53  }
54 
55  void
57  {
58  if (!remoteGuiObject)
59  {
61  parent<Component>().getProxyFromProperty<RemoteGuiInterfacePrx>(PROPERTY_NAME);
62  }
63  }
64 
65  void
67  {
68  }
69 
70  void
72  {
73  if (runningTask)
74  {
75  RunningTaskPtr::dynamicCast(runningTask)->stop();
76  runningTask = nullptr;
77  }
78  }
79 
80  void
82  {
83  }
84 
85  void
87  PropertyDefinitionsPtr& properties)
88  {
89  if (!properties->hasDefinition(PROPERTY_NAME))
90  {
91  properties->defineOptionalProperty<std::string>(
92  "RemoteGuiName", "RemoteGuiProvider", "Name of the remote gui provider");
93  }
94  }
95  } // namespace plugins
96 
98  {
100  }
101 
102  void
104  std::string const& name,
105  RemoteGui::Client::Widget const& rootWidget,
107  {
108  if (!plugin->remoteGuiObject)
109  {
110  throw armarx::LocalException()
111  << "You tried to create a RemoteGui tab before the component was initialized.\n"
112  << "You can start creating tabs once you have entered your onConnectComponent().";
113  }
114  tab->create(name, plugin->remoteGuiObject, rootWidget);
115  plugin->tabs[name] = &tab->impl->proxy;
116  }
117 
118  void
120  {
121  if (plugin->runningTask)
122  {
123  throw armarx::LocalException()
124  << "There is already a RunningTask which has not been stopped.";
125  }
126  RunningTaskPtr runningTask =
128  runningTask->start();
129  plugin->runningTask = runningTask;
130  }
131 
132  bool
134  {
135  if (plugin->runningTask)
136  {
137  return !RunningTaskPtr::dynamicCast(plugin->runningTask)->isStopped();
138  }
139  else
140  {
141  return false;
142  }
143  }
144 
145  void
147  {
149  while (RemoteGui_isRunning())
150  {
151  for (auto& tab : plugin->tabs)
152  {
153  tab.second->receiveUpdates();
154  }
156  for (auto& tab : plugin->tabs)
157  {
158  tab.second->sendUpdates();
159  }
160  c.waitForCycleDuration();
161  }
162  }
163 
164 } // namespace armarx
armarx::LightweightRemoteGuiComponentPluginUser::RemoteGui_isRunning
bool RemoteGui_isRunning()
Definition: LightweightRemoteGuiComponentPlugin.cpp:133
armarx::plugins::LightweightRemoteGuiComponentPlugin::tabs
std::map< std::string, RemoteGui::TabProxy * > tabs
Definition: LightweightRemoteGuiComponentPlugin.h:64
armarx::plugins::LightweightRemoteGuiComponentPlugin::preOnInitComponent
void preOnInitComponent() override
Definition: LightweightRemoteGuiComponentPlugin.cpp:47
armarx::plugins::LightweightRemoteGuiComponentPlugin::remoteGuiObject
Ice::ObjectPrx remoteGuiObject
Definition: LightweightRemoteGuiComponentPlugin.h:62
armarx::LightweightRemoteGuiComponentPluginUser::RemoteGui_run
void RemoteGui_run()
Definition: LightweightRemoteGuiComponentPlugin.cpp:146
armarx::LightweightRemoteGuiComponentPluginUser::RemoteGui_updatePeriodInMS
int RemoteGui_updatePeriodInMS
Definition: LightweightRemoteGuiComponentPlugin.h:87
armarx::LightweightRemoteGuiComponentPluginUser::plugin
plugins::LightweightRemoteGuiComponentPlugin * plugin
Definition: LightweightRemoteGuiComponentPlugin.h:88
armarx::plugins::LightweightRemoteGuiComponentPlugin::postOnConnectComponent
void postOnConnectComponent() override
Definition: LightweightRemoteGuiComponentPlugin.cpp:66
armarx::RemoteGui::Client::Tab
Definition: Tab.h:15
armarx::CycleUtil
This util class helps with keeping a cycle time during a control cycle.
Definition: CycleUtil.h:40
armarx::RemoteGui::Client::Tab::impl
std::unique_ptr< TabImpl > impl
Definition: Tab.h:33
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
armarx::ManagedIceObject::addPlugin
PluginT * addPlugin(const std::string prefix="", ParamsT &&... params)
Definition: ManagedIceObject.h:186
armarx::plugins::LightweightRemoteGuiComponentPlugin::preOnConnectComponent
void preOnConnectComponent() override
Definition: LightweightRemoteGuiComponentPlugin.cpp:56
RunningTask.h
armarx::RunningTask
Definition: ArmarXMultipleObjectsScheduler.h:36
plugins
LightweightRemoteGuiComponentPlugin.h
armarx::RemoteGui::Client::Widget
Definition: Widgets.h:21
armarx::plugins::LightweightRemoteGuiComponentPlugin::preOnDisconnectComponent
void preOnDisconnectComponent() override
Definition: LightweightRemoteGuiComponentPlugin.cpp:71
armarx::RemoteGui::Client::Tab::create
void create(std::string const &name, Ice::ObjectPrx const &remoteGuiObject, Widget const &rootWidget)
Definition: Tab.cpp:31
armarx::LightweightRemoteGuiComponentPluginUser::RemoteGui_update
virtual void RemoteGui_update()=0
Component.h
armarx::LightweightRemoteGuiComponentPluginUser::RemoteGui_startRunningTask
void RemoteGui_startRunningTask()
Definition: LightweightRemoteGuiComponentPlugin.cpp:119
CycleUtil.h
armarx::plugins::LightweightRemoteGuiComponentPlugin::postCreatePropertyDefinitions
void postCreatePropertyDefinitions(PropertyDefinitionsPtr &properties) override
Definition: LightweightRemoteGuiComponentPlugin.cpp:86
armarx::LightweightRemoteGuiComponentPluginUser::RemoteGui_createTab
void RemoteGui_createTab(std::string const &name, RemoteGui::Client::Widget const &rootWidget, RemoteGui::Client::Tab *tab)
Definition: LightweightRemoteGuiComponentPlugin.cpp:103
IceUtil::Handle
Definition: forward_declarations.h:30
armarx::RunningTaskT
RunningTask< LightweightRemoteGuiComponentPluginUser > RunningTaskT
Definition: LightweightRemoteGuiComponentPlugin.cpp:39
armarx::RunningTask::pointer_type
IceUtil::Handle< RunningTask< T > > pointer_type
Shared pointer type for convenience.
Definition: RunningTask.h:174
armarx::LightweightRemoteGuiComponentPluginUser::LightweightRemoteGuiComponentPluginUser
LightweightRemoteGuiComponentPluginUser()
Definition: LightweightRemoteGuiComponentPlugin.cpp:97
armarx::plugins::LightweightRemoteGuiComponentPlugin::postOnDisconnectComponent
void postOnDisconnectComponent() override
Definition: LightweightRemoteGuiComponentPlugin.cpp:81
armarx::plugins::LightweightRemoteGuiComponentPlugin::runningTask
IceUtil::Handle< IceUtil::Shared > runningTask
Definition: LightweightRemoteGuiComponentPlugin.h:63
Impl.h
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27