MemoryNameSystem.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 RobotAPI::ArmarXObjects::MemoryNameSystem
17  * @author Rainer Kartmann ( rainer dot kartmann at kit dot edu )
18  * @date 2020
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #include "MemoryNameSystem.h"
24 
25 #include <SimoxUtility/algorithm/string.h>
26 
28 
30 
31 namespace armarx::armem
32 {
33 
36  {
39 
40  return defs;
41  }
42 
43  std::string
45  {
46  return "MemoryNameSystem";
47  }
48 
49  void
51  {
52  }
53 
54  void
56  {
59  }
60 
61  void
63  {
64  }
65 
66  void
68  {
69  }
70 
71  mns::dto::RegisterServerResult
72  MemoryNameSystem::registerServer(const mns::dto::RegisterServerInput& input,
73  const Ice::Current& c)
74  {
75  mns::dto::RegisterServerResult result = PluginUser::registerServer(input, c);
76  tab.rebuild = true;
77  return result;
78  }
79 
80  mns::dto::RemoveServerResult
81  MemoryNameSystem::removeServer(const mns::dto::RemoveServerInput& input, const Ice::Current& c)
82  {
83  mns::dto::RemoveServerResult result = PluginUser::removeServer(input, c);
84  tab.rebuild = true;
85  return result;
86  }
87 
88  // REMOTE GUI
89 
90  void
92  {
93  using namespace armarx::RemoteGui::Client;
94 
95  std::scoped_lock lock(mnsMutex);
97 
98  VBoxLayout root = {grid, VSpacer()};
99  RemoteGui_createTab(getName(), root, &tab);
100  }
101 
102  void
104  {
105  if (tab.rebuild.exchange(false))
106  {
108  }
109  }
110 
111 } // namespace armarx::armem
armarx::armem::MemoryNameSystem::onInitComponent
void onInitComponent() override
Definition: MemoryNameSystem.cpp:50
armarx::RemoteGui::Client::VBoxLayout
Definition: Widgets.h:167
armarx::armem::MemoryNameSystem::RemoteGui_update
void RemoteGui_update() override
Definition: MemoryNameSystem.cpp:103
armarx::armem
Definition: LegacyRobotStateMemoryAdapter.cpp:32
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
MemoryNameSystem.h
armarx::RemoteGui::Client::VSpacer
Definition: Widgets.h:204
armarx::armem::MemoryNameSystem::createRemoteGuiTab
void createRemoteGuiTab()
Definition: MemoryNameSystem.cpp:91
armarx::armem::MemoryNameSystem::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: MemoryNameSystem.cpp:35
armarx::armem::mns::plugins::PluginUser::mns
MemoryNameSystem & mns()
Definition: PluginUser.cpp:56
armarx::RemoteGui::Client::GridLayout
Definition: Widgets.h:186
armarx::armem::MemoryNameSystem::onConnectComponent
void onConnectComponent() override
Definition: MemoryNameSystem.cpp:55
armarx::armem::MemoryNameSystem::getDefaultName
std::string getDefaultName() const override
Definition: MemoryNameSystem.cpp:44
armarx::aron::input
ReaderT::InputType & input
Definition: rw.h:12
armarx::armem::MemoryNameSystem::onExitComponent
void onExitComponent() override
Definition: MemoryNameSystem.cpp:67
error.h
armarx::armem::mns::MemoryNameSystem::RemoteGui_buildInfoGrid
armarx::RemoteGui::Client::GridLayout RemoteGui_buildInfoGrid()
Builds a RemoteGui grid containing information about registered memories.
Definition: MemoryNameSystem.cpp:65
armarx::armem::mns::plugins::PluginUser::mnsMutex
std::mutex mnsMutex
Definition: PluginUser.h:40
armarx::armem::MemoryNameSystem::registerServer
mns::dto::RegisterServerResult registerServer(const mns::dto::RegisterServerInput &input, const Ice::Current &) override
Definition: MemoryNameSystem.cpp:72
armarx::LightweightRemoteGuiComponentPluginUser::RemoteGui_startRunningTask
void RemoteGui_startRunningTask()
Definition: LightweightRemoteGuiComponentPlugin.cpp:119
ExpressionException.h
armarx::Component::getConfigIdentifier
std::string getConfigIdentifier()
Retrieve config identifier for this component as set in constructor.
Definition: Component.cpp:79
armarx::armem::MemoryNameSystem::removeServer
mns::dto::RemoveServerResult removeServer(const mns::dto::RemoveServerInput &input, const Ice::Current &) override
Definition: MemoryNameSystem.cpp:81
armarx::ComponentPropertyDefinitions
Default component property definition container.
Definition: Component.h:69
armarx::armem::MemoryNameSystem::onDisconnectComponent
void onDisconnectComponent() override
Definition: MemoryNameSystem.cpp:62
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::ManagedIceObject::getName
std::string getName() const
Retrieve name of object.
Definition: ManagedIceObject.cpp:108
armarx::RemoteGui::Client
Definition: EigenWidgets.cpp:8