Reader.h
Go to the documentation of this file.
1 #pragma once
2 
3 
4 // STD/STL
5 #include <optional>
6 #include <vector>
7 
8 // RobotAPI
9 #include <RobotAPI/interface/armem/server/ReadingMemoryInterface.h>
10 #include <RobotAPI/interface/armem/server/RecordingMemoryInterface.h>
14 
15 #include "Query.h"
16 
17 namespace armarx::armem::client
18 {
19 
20  /**
21  * @brief Reads data from a memory server.
22  */
23  class Reader
24  {
25 
26  public:
27  /**
28  * @brief Construct a memory reader.
29  * @param memory The memory proxy.
30  */
31  Reader(const Reader&) = default;
32  Reader(server::ReadingMemoryInterfacePrx readingMemory = nullptr,
33  server::PredictingMemoryInterfacePrx predictingMemory = nullptr);
34 
35  void setReadingMemory(server::ReadingMemoryInterfacePrx readingMemory);
36  void setPredictingMemory(server::PredictingMemoryInterfacePrx predictingMemory);
37 
38  /// Perform a query.
39  QueryResult query(const QueryInput& input) const;
40  armem::query::data::Result query(const armem::query::data::Input& input) const;
41 
42  QueryResult query(armem::query::data::MemoryQueryPtr query,
44  QueryResult query(const armem::query::data::MemoryQuerySeq& queries,
46 
47  QueryResult query(const QueryBuilder& queryBuilder) const;
48 
49  /** Perform a query with recursive memory link resolution.
50  *
51  * Resolves the links in the query result using the given MemoryNameSystem
52  * and inserts the data into the MemoryLink objects' data fields.
53  * If the inserted data also contains links, those will be resolved as well
54  * up to and including the given recursion depth. Link cycles are detected;
55  * the first repeated memory ID will not be inserted into the data.
56  * Setting the recursion depth to `-1` is equivalent to an infinite
57  * recursion depth.
58  *
59  * Standalone `MemoryID` subobjects are ignored; only MemoryIDs inside of
60  * MemoryLink subobjects are resolved. Empty or unresolvable MemoryIDs
61  * are ignored - this includes MemoryIDs whose Entity fields are not set.
62  * If the data associated with a MemoryID could not be retrieved or
63  * its type does not match the template type of the MemoryLink,
64  * it is ignored.
65  *
66  * @param input the query to perform
67  * @param mns the MemoryNameSystem to use when resolving MemoryLinks
68  * @param recursionDepth how many layers of MemoryLinks to resolve
69  */
72  int recursionDepth = -1) const;
73  /**
74  * @sa Reader::query(const QueryInput&, armem::client::MemoryNameSystem, int)
75  */
76  armem::query::data::Result query(const armem::query::data::Input& input,
78  int recursionDepth = -1) const;
79 
80  /**
81  * @sa Reader::query(const QueryInput&, armem::client::MemoryNameSystem, int)
82  */
83  QueryResult query(armem::query::data::MemoryQueryPtr query,
85  int recursionDepth = -1) const;
86  /**
87  * @sa Reader::query(const QueryInput&, armem::client::MemoryNameSystem, int)
88  */
89  QueryResult query(const armem::query::data::MemoryQuerySeq& queries,
91  int recursionDepth = -1) const;
92 
93  /**
94  * @sa Reader::query(const QueryInput&, armem::client::MemoryNameSystem, int)
95  */
96  QueryResult query(const QueryBuilder& queryBuilder,
98  int recursionDepth = -1) const;
99 
100 
101  /**
102  * @brief Query a specific set of memory IDs.
103  *
104  * Each ID can refer to an entity, a snapshot or an instance. When not
105  * referring to an entity instance, the latest snapshot and first
106  * instance will be queried, respectively.
107  *
108  * All memory IDs must refer to the memory this reader is reading from.
109  * If an ID refers to another memory, the query will not find it and it
110  * will not be part of the result.
111  *
112  * @param ids The entity, snapshot or instance IDs.
113  * @param dataMode Whether to include instance data or just meta data.
114  * @return The query result.
115  */
117  queryMemoryIDs(const std::vector<MemoryID>& ids,
119 
120 
121  /**
122  * @brief Query the given snapshot and return the latest existing snapshot.
123  * @param snapshotIDs The snapshot (or entity) IDs.
124  * @return The latest snapshot contained in the query result, if any.
125  */
126  std::optional<wm::EntitySnapshot>
127  getLatestSnapshotOf(const std::vector<MemoryID>& snapshotIDs) const;
128 
129 
130  /**
131  * @brief Get the latest snapshots under the given memory ID.
132  * @param id A memory, core segment, provider segment or entity ID.
133  * @param dataMode With or without data.
134  * @return The query result.
135  */
137  const MemoryID& id,
139 
140  /**
141  * @brief Get the latest snapshot under the given memory ID.
142  * @param id A memory, core segment, provider segment or entity ID.
143  * @param dataMode With or without data.
144  * @return The latest contained snapshot, if any.
145  */
146  std::optional<wm::EntitySnapshot> getLatestSnapshotIn(
147  const MemoryID& id,
149 
150 
151  /**
152  * @brief Get all latest snapshots in the memory.
153  * @param dataMode With or without data.
154  * @return The query result.
155  */
158 
159 
160  /**
161  * @brief Get the whole memory content.
162  * @param dataMode With or without data.
163  * @return The query result.
164  */
167 
168 
169  server::dto::DirectlyStoreResult
170  directlyStore(const server::dto::DirectlyStoreInput& input) const;
171  void startRecording() const;
172  void stopRecording() const;
173 
174  /**
175  * @brief Get a prediction for the state of multiple entity instances in the future.
176  *
177  * The timestamp to predict the entities' state at is given via the snapshot
178  * given in the MemoryID.
179  *
180  * The `predictionPrx` must not be null when calling this function.
181  *
182  * @param requests a list of requests for entity instance predictions
183  * @return the vector of prediction results
184  */
185  std::vector<PredictionResult> predict(const std::vector<PredictionRequest>& requests) const;
186 
187  /**
188  * @brief Get the list of prediction engines supported by the memory.
189  *
190  * The `predictionPrx` must not be null when calling this function.
191  *
192  * @return a map from memory containers to their supported engines
193  */
194  std::map<MemoryID, std::vector<PredictionEngine>> getAvailablePredictionEngines() const;
195 
196  inline
197  operator bool() const
198  {
199  return bool(readingPrx);
200  }
201 
202  private:
203  static void resolveMemoryLinks(armem::wm::EntityInstance& instance,
206  int recursionDepth);
207 
208  public:
209  server::ReadingMemoryInterfacePrx readingPrx;
210  server::PredictingMemoryInterfacePrx predictionPrx;
211  };
212 
213 } // namespace armarx::armem::client
armarx::armem::client::Reader
Reads data from a memory server.
Definition: Reader.h:23
armarx::armem::client::Reader::getLatestSnapshotsIn
QueryResult getLatestSnapshotsIn(const MemoryID &id, armem::query::DataMode dataMode=armem::query::DataMode::WithData) const
Get the latest snapshots under the given memory ID.
Definition: Reader.cpp:340
armarx::armem::wm::EntityInstance
Client-side working entity instance.
Definition: memory_definitions.h:32
armarx::armem::client::Reader::setPredictingMemory
void setPredictingMemory(server::PredictingMemoryInterfacePrx predictingMemory)
Definition: Reader.cpp:476
armarx::armem::client::Reader::stopRecording
void stopRecording() const
Definition: Reader.cpp:453
armarx::armem::query::DataMode::WithData
@ WithData
Get structure and ARON data.
Prediction.h
armarx::armem::client::Reader::Reader
Reader(const Reader &)=default
Construct a memory reader.
armarx::armem::client
This file is part of ArmarX.
Definition: forward_declarations.h:6
armarx::armem::client::Reader::predictionPrx
server::PredictingMemoryInterfacePrx predictionPrx
Definition: Reader.h:210
armarx::armem::client::QueryResult
Result of a QueryInput.
Definition: Query.h:50
Query.h
armarx::armem::client::Reader::getAllLatestSnapshots
QueryResult getAllLatestSnapshots(armem::query::DataMode dataMode=armem::query::DataMode::WithData) const
Get all latest snapshots in the memory.
Definition: Reader.cpp:391
armarx::armem::client::Reader::queryMemoryIDs
QueryResult queryMemoryIDs(const std::vector< MemoryID > &ids, armem::query::DataMode dataMode=armem::query::DataMode::WithData) const
Query a specific set of memory IDs.
Definition: Reader.cpp:287
armarx::armem::client::Reader::predict
std::vector< PredictionResult > predict(const std::vector< PredictionRequest > &requests) const
Get a prediction for the state of multiple entity instances in the future.
Definition: Reader.cpp:482
armarx::armem::MemoryID
A memory ID.
Definition: MemoryID.h:47
armarx::armem::query::DataMode
DataMode
Definition: DataMode.h:6
armarx::armem::client::Reader::directlyStore
server::dto::DirectlyStoreResult directlyStore(const server::dto::DirectlyStoreInput &input) const
Definition: Reader.cpp:413
armarx::armem::client::QueryInput
A query for parts of a memory.
Definition: Query.h:23
armarx::aron::input
ReaderT::InputType & input
Definition: rw.h:12
armarx::armem::client::Reader::getAll
QueryResult getAll(armem::query::DataMode dataMode=armem::query::DataMode::WithData) const
Get the whole memory content.
Definition: Reader.cpp:402
armarx::armem::wm::Memory
Client-side working memory.
Definition: memory_definitions.h:133
armarx::armem::client::Reader::startRecording
void startRecording() const
Definition: Reader.cpp:430
armarx::armem::client::Reader::getAvailablePredictionEngines
std::map< MemoryID, std::vector< PredictionEngine > > getAvailablePredictionEngines() const
Get the list of prediction engines supported by the memory.
Definition: Reader.cpp:526
memory_definitions.h
armarx::armem::client::Reader::setReadingMemory
void setReadingMemory(server::ReadingMemoryInterfacePrx readingMemory)
Definition: Reader.cpp:470
armarx::armem::client::MemoryNameSystem
The memory name system (MNS) client.
Definition: MemoryNameSystem.h:68
armarx::armem::client::query::Builder
The query::Builder class provides a fluent-style specification of hierarchical queries.
Definition: Builder.h:21
MemoryNameSystem.h
armarx::armem::client::Reader::readingPrx
server::ReadingMemoryInterfacePrx readingPrx
Definition: Reader.h:209
armarx::armem::client::Reader::getLatestSnapshotIn
std::optional< wm::EntitySnapshot > getLatestSnapshotIn(const MemoryID &id, armem::query::DataMode dataMode=armem::query::DataMode::WithData) const
Get the latest snapshot under the given memory ID.
Definition: Reader.cpp:362
armarx::armem::client::Reader::query
QueryResult query(const QueryInput &input) const
Perform a query.
Definition: Reader.cpp:32
armarx::armem::client::Reader::getLatestSnapshotOf
std::optional< wm::EntitySnapshot > getLatestSnapshotOf(const std::vector< MemoryID > &snapshotIDs) const
Query the given snapshot and return the latest existing snapshot.
Definition: Reader.cpp:310