ExampleMemory.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::ExampleMemory
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 #pragma once
24 
25 
27 #include <ArmarXCore/interface/observers/ObserverInterface.h>
28 
30 
33 
34 namespace armarx
35 {
36  /**
37  * @defgroup Component-ExampleMemory ExampleMemory
38  * @ingroup RobotAPI-Components
39  * A description of the component ExampleMemory.
40  *
41  * @class ExampleMemory
42  * @ingroup Component-ExampleMemory
43  * @brief Brief description of class ExampleMemory.
44  *
45  * Detailed description of class ExampleMemory.
46  */
47  class ExampleMemory :
48  virtual public armarx::Component,
51  {
52  public:
53  /// @see armarx::ManagedIceObject::getDefaultName()
54  std::string getDefaultName() const override;
55 
56 
57  // WritingInterface interface
58  public:
59  armem::data::AddSegmentsResult addSegments(const armem::data::AddSegmentsInput& input,
60  const Ice::Current&) override;
61  armem::data::CommitResult commit(const armem::data::Commit& commit,
62  const Ice::Current& = Ice::emptyCurrent) override;
63 
64 
65  // LightweightRemoteGuiComponentPluginUser interface
66  public:
67  void createRemoteGuiTab();
68  void RemoteGui_update() override;
69 
70  // ActionsInterface interface
71  public:
72  armem::actions::GetActionsOutputSeq
73  getActions(const armem::actions::GetActionsInputSeq& input) override;
74  armem::actions::ExecuteActionOutputSeq
75  executeActions(const armem::actions::ExecuteActionInputSeq& input) override;
76 
77 
78  protected:
80 
81  void onInitComponent() override;
82  void onConnectComponent() override;
83  void onDisconnectComponent() override;
84  void onExitComponent() override;
85 
86 
87  private:
88  armem::PredictionResult predictLatest(const armem::PredictionRequest& request);
89 
91 
92  struct Properties
93  {
94  struct CoreSegments
95  {
96  std::vector<std::string> defaultCoreSegments = {"ExampleModality",
97  "ExampleConcept"};
98  std::string _defaultSegmentsStr;
99  bool addOnUsage = false;
100  };
101 
102  CoreSegments core;
103 
104  bool enableRemoteGui = false;
105  };
106 
107  Properties p;
108 
109  struct RemoteGuiTab : RemoteGui::Client::Tab
110  {
111  std::atomic_bool rebuild = false;
112 
113  RemoteGui::Client::GroupBox memoryGroup;
114  };
115 
116  RemoteGuiTab tab;
117  };
118 } // namespace armarx
armarx::armem::PredictionRequest
Definition: Prediction.h:48
armarx::ExampleMemory::Properties::CoreSegments::defaultCoreSegments
std::vector< std::string > defaultCoreSegments
Definition: ExampleMemory.h:96
armarx::ExampleMemory::RemoteGui_update
void RemoteGui_update() override
Definition: ExampleMemory.cpp:279
ReadWritePluginUser.h
Prediction.h
armarx::RemoteGui::Client::Tab
Definition: Tab.h:15
armarx::armem::PredictionResult
Definition: Prediction.h:57
armarx::ExampleMemory::commit
armem::data::CommitResult commit(const armem::data::Commit &commit, const Ice::Current &=Ice::emptyCurrent) override
Definition: ExampleMemory.cpp:129
armarx::ExampleMemory::onInitComponent
void onInitComponent() override
Pure virtual hook for the subclass.
Definition: ExampleMemory.cpp:73
armarx::ExampleMemory::Properties::CoreSegments::addOnUsage
bool addOnUsage
Definition: ExampleMemory.h:99
LightweightRemoteGuiComponentPlugin.h
armarx::ExampleMemory::onDisconnectComponent
void onDisconnectComponent() override
Hook for subclass.
Definition: ExampleMemory.cpp:107
armarx::ExampleMemory::onConnectComponent
void onConnectComponent() override
Pure virtual hook for the subclass.
Definition: ExampleMemory.cpp:97
armarx::ExampleMemory
Brief description of class ExampleMemory.
Definition: ExampleMemory.h:47
armarx::aron::input
ReaderT::InputType & input
Definition: rw.h:12
armarx::ExampleMemory::createPropertyDefinitions
armarx::PropertyDefinitionsPtr createPropertyDefinitions() override
Definition: ExampleMemory.cpp:40
armarx::armem::server::plugins::ReadWritePluginUser
Base class of memory server components.
Definition: ReadWritePluginUser.h:20
armarx::RemoteGui::Client::GroupBox
Definition: Widgets.h:193
armarx::ExampleMemory::addSegments
armem::data::AddSegmentsResult addSegments(const armem::data::AddSegmentsInput &input, const Ice::Current &) override
Definition: ExampleMemory.cpp:119
armarx::ExampleMemory::createRemoteGuiTab
void createRemoteGuiTab()
Definition: ExampleMemory.cpp:265
armarx::LightweightRemoteGuiComponentPluginUser
Definition: LightweightRemoteGuiComponentPlugin.h:72
Component.h
armarx::Component
Baseclass for all ArmarX ManagedIceObjects requiring properties.
Definition: Component.h:91
armarx::ExampleMemory::onExitComponent
void onExitComponent() override
Hook for subclass.
Definition: ExampleMemory.cpp:112
armarx::ExampleMemory::getActions
armem::actions::GetActionsOutputSeq getActions(const armem::actions::GetActionsInputSeq &input) override
Definition: ExampleMemory.cpp:144
armarx::ExampleMemory::getDefaultName
std::string getDefaultName() const override
Definition: ExampleMemory.cpp:67
IceUtil::Handle< class PropertyDefinitionContainer >
IceInternal::ProxyHandle<::IceProxy::armarx::DebugObserverInterface >
armarx::ExampleMemory::Properties::CoreSegments::_defaultSegmentsStr
std::string _defaultSegmentsStr
Definition: ExampleMemory.h:98
armarx::ExampleMemory::executeActions
armem::actions::ExecuteActionOutputSeq executeActions(const armem::actions::ExecuteActionInputSeq &input) override
Definition: ExampleMemory.cpp:165
armarx::ExampleMemory::Properties::CoreSegments
Definition: ExampleMemory.h:94
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27