ExampleMemoryClient.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 RobotAPI::ArmarXObjects::ExampleClient
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 
24 #pragma once
25 
27 #include <ArmarXCore/interface/observers/ObserverInterface.h>
28 #include <ArmarXCore/util/tasks.h>
29 
31 
32 #include <RobotAPI/interface/armem/mns/MemoryNameSystemInterface.h>
37 
38 namespace armarx
39 {
40 
41  /**
42  * @defgroup Component-ExampleClient ExampleClient
43  * @ingroup RobotAPI-Components
44  *
45  * An example for an ArMem Memory Client.
46  *
47  * @class ExampleClient
48  * @ingroup Component-ExampleClient
49  * @brief Brief description of class ExampleClient.
50  *
51  * Connects to the example memory, and commits and queries example data.
52  */
54  virtual public armarx::Component,
57  {
58  public:
59  /// @see armarx::ManagedIceObject::getDefaultName()
60  std::string getDefaultName() const override;
61 
62 
63  // LightweightRemoteGuiComponentPluginUser interface
64  public:
65  void createRemoteGuiTab();
66  void RemoteGui_update() override;
67 
68 
69  protected:
71 
72  void onInitComponent() override;
73  void onConnectComponent() override;
74  void onDisconnectComponent() override;
75  void onExitComponent() override;
76 
77  void run();
78 
79 
80  private:
81  // Callback for updates on `example_entity`.
82  void processExampleEntityUpdate(const armem::MemoryID& id,
83  const std::vector<armem::MemoryID>& snapshotIDs);
84 
85  // Examples
86  void waitForMemory();
87  armem::MemoryID addProviderSegment();
88 
89  armem::MemoryID commitSingleSnapshot(const armem::MemoryID& exampleEntityID);
90  void commitMultipleSnapshots(const armem::MemoryID& exampleEntityID, int num = 3);
91 
92  void queryLatestSnapshot(const armem::MemoryID& exampleEntityID);
93  void queryExactSnapshot(const armem::MemoryID& snapshotID);
94 
95  void commitExampleData();
96  void queryExampleData();
97 
98  void commitExamplesWithIDs();
99  void commitExamplesWithLinks();
100 
101  void commitExampleImages();
102  void commitExamplesWithUntypedData();
103 
104  void queryPredictionEngines();
105 
106 
107  private:
108  struct Properties
109  {
110  std::string usedMemoryName = "Example";
111  float commitFrequency = 10;
112  };
113 
114  Properties p;
115 
116  armem::client::Reader memoryReader;
117  armem::client::Writer memoryWriter;
118 
119  armem::MemoryID exampleProviderID;
120  armem::MemoryID exampleEntityID;
121 
122  armem::MemoryID exampleDataProviderID;
123  armem::MemoryID theAnswerSnapshotID;
124  armem::MemoryID linkedDataProviderID;
125  armem::MemoryID yetMoreDataSnapshotID;
126 
127 
128  armem::Time runStarted;
129  unsigned int imageCounter = 0;
130 
132 
133  armarx::DebugObserverInterfacePrx debugObserver;
134 
135  struct RemoteGuiTab : RemoteGui::Client::Tab
136  {
137  std::atomic_bool rebuild = false;
138 
139  std::optional<armem::wm::Memory> queryResult;
140  RemoteGui::Client::GroupBox queryResultGroup;
141  };
142 
143  RemoteGuiTab tab;
144  };
145 } // namespace armarx
armarx::armem::client::Reader
Reads data from a memory server.
Definition: Reader.h:23
Reader.h
Writer.h
armarx::RemoteGui::Client::Tab
Definition: Tab.h:15
armarx::ExampleMemoryClient::onConnectComponent
void onConnectComponent() override
Pure virtual hook for the subclass.
Definition: ExampleMemoryClient.cpp:85
armarx::ExampleMemoryClient::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: ExampleMemoryClient.cpp:58
armarx::ExampleMemoryClient::onInitComponent
void onInitComponent() override
Pure virtual hook for the subclass.
Definition: ExampleMemoryClient.cpp:80
LightweightRemoteGuiComponentPlugin.h
armarx::ExampleMemoryClient
Definition: ExampleMemoryClient.h:53
armarx::armem::MemoryID
A memory ID.
Definition: MemoryID.h:47
armarx::ExampleMemoryClient::createRemoteGuiTab
void createRemoteGuiTab()
Definition: ExampleMemoryClient.cpp:789
armarx::ExampleMemoryClient::onDisconnectComponent
void onDisconnectComponent() override
Hook for subclass.
Definition: ExampleMemoryClient.cpp:131
armarx::RemoteGui::Client::GroupBox
Definition: Widgets.h:193
armarx::armem::client::Writer
Helps a memory client sending data to a memory.
Definition: Writer.h:22
armarx::LightweightRemoteGuiComponentPluginUser
Definition: LightweightRemoteGuiComponentPlugin.h:72
tasks.h
Component.h
memory_definitions.h
armarx::Component
Baseclass for all ArmarX ManagedIceObjects requiring properties.
Definition: Component.h:91
armarx::core::time::DateTime
Represents a point in time.
Definition: DateTime.h:24
armarx::ExampleMemoryClient::onExitComponent
void onExitComponent() override
Hook for subclass.
Definition: ExampleMemoryClient.cpp:137
IceUtil::Handle< class PropertyDefinitionContainer >
IceInternal::ProxyHandle<::IceProxy::armarx::DebugObserverInterface >
armarx::ExampleMemoryClient::getDefaultName
std::string getDefaultName() const override
Definition: ExampleMemoryClient.cpp:74
armarx::armem::client::plugins::ListeningPluginUser
A memory name system client which listens to the memory updates topic (MemoryListenerInterface).
Definition: ListeningPluginUser.h:21
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::ExampleMemoryClient::run
void run()
Definition: ExampleMemoryClient.cpp:142
ListeningPluginUser.h
armarx::ExampleMemoryClient::RemoteGui_update
void RemoteGui_update() override
Definition: ExampleMemoryClient.cpp:802