Reader.cpp
Go to the documentation of this file.
1 #include "Reader.h"
2 
3 #include <string>
4 
10 
17 
18 #include <armarx/navigation/human/aron/Human.aron.generated.h>
22 
24 {
25  Reader::~Reader() = default;
26 
28  Reader::buildHumansQuery(const Query& query) const
29  {
31 
32  // clang-format off
33  qb
34  .coreSegments().withName(properties().coreSegmentName)
36  .entities().withName("humans")
38  // clang-format on
39 
40  return qb;
41  }
42 
45  {
47 
48  // clang-format off
49  qb
50  .coreSegments().withName(properties().coreSegmentName)
52  .entities().withName("groups")
54  // clang-format on
55 
56  return qb;
57  }
58 
59  std::string
61  {
62  return "mem.nav.human.";
63  }
64 
67  {
69  .coreSegmentName = memory::constants::HumanCoreSegmentName};
70  }
71 
73  asHumans(const armem::wm::ProviderSegment& providerSegment,
74  const DateTime& timestamp,
75  const Duration& maxAge)
76  {
78 
79  ARMARX_CHECK(not providerSegment.empty()) << "No entities";
80  ARMARX_CHECK(providerSegment.size() == 1) << "There should be only one entity!";
81 
82  providerSegment.forEachEntity(
83  [&humans, &timestamp, &maxAge](const armem::wm::Entity& entity)
84  {
85  const auto& entitySnapshot = entity.getLatestSnapshot();
86  //ARMARX_CHECK(not entitySnapshot.empty()) << "No entity snapshot instances";
87  if (entitySnapshot.empty())
88  {
89  ARMARX_INFO << "No entity snapshot instances";
90  return;
91  }
92 
93  entitySnapshot.forEachInstance(
94  [&](const armem::wm::EntityInstance& entityInstance)
95  {
96  const Duration dtToNow =
97  timestamp - entityInstance.metadata().referencedTime;
98 
99  if (dtToNow < maxAge and dtToNow.isPositive())
100  {
101  const auto dto =
102  navigation::human::arondto::Human::FromAron(entityInstance.data());
103 
104  navigation::human::Human human;
105  fromAron(dto, human);
106  humans.push_back(human);
107  }
108  });
109  });
110 
111  return humans;
112  }
113 
115  asGroups(const armem::wm::ProviderSegment& providerSegment,
116  const DateTime& timestamp,
117  const Duration& maxAge)
118  {
120 
121  ARMARX_CHECK(not providerSegment.empty()) << "No entities";
122  ARMARX_CHECK(providerSegment.size() == 1) << "There should be only one entity!";
123 
124  providerSegment.forEachEntity(
125  [&humans, &timestamp, &maxAge](const armem::wm::Entity& entity)
126  {
127  const auto& entitySnapshot = entity.getLatestSnapshot();
128  ARMARX_CHECK(not entitySnapshot.empty()) << "No entity snapshot instances";
129 
130  entitySnapshot.forEachInstance(
131  [&](const armem::wm::EntityInstance& entityInstance)
132  {
133  const Duration dtToNow =
134  timestamp - entityInstance.metadata().referencedTime;
135 
136  if (dtToNow < maxAge and dtToNow.isPositive())
137  {
138  const auto dto = navigation::human::arondto::HumanGroup::FromAron(
139  entityInstance.data());
140 
141  navigation::human::HumanGroup human;
142  fromAron(dto, human);
143  humans.push_back(human);
144  }
145  });
146  });
147 
148  return humans;
149  }
150 
151  Reader::HumanGroupResult
152  Reader::queryHumanGroups(const Query& query) const
153  {
154  const auto qb = buildHumansQuery(query);
155 
156  ARMARX_DEBUG << "[MappingDataReader] query ... ";
157 
158  const armem::client::QueryResult qResult = memoryReader().query(qb.buildQueryInput());
159 
160  ARMARX_DEBUG << "[MappingDataReader] result: " << qResult;
161 
162  if (not qResult.success)
163  {
164  ARMARX_WARNING << "Failed to query data from memory: " << qResult.errorMessage;
165  return {.groups = {},
166  .status = HumanGroupResult::Status::Error,
167  .errorMessage = qResult.errorMessage};
168  }
169 
170  const auto coreSegment = qResult.memory.getCoreSegment(properties().coreSegmentName);
171 
172  if (not coreSegment.hasProviderSegment(query.providerName))
173  {
174  ARMARX_DEBUG << "Provider segment `" << query.providerName << "` does not exist (yet).";
175  return {.groups = {}, .status = HumanGroupResult::Status::NoData};
176  }
177 
178  const armem::wm::ProviderSegment& providerSegment =
179  coreSegment.getProviderSegment(query.providerName);
180 
181  if (providerSegment.empty())
182  {
183  ARMARX_DEBUG << "No entities.";
184  return {.groups = {},
185  .status = HumanGroupResult::Status::NoData,
186  .errorMessage = "No entities"};
187  }
188 
189  try
190  {
191  return HumanGroupResult{.groups =
192  asGroups(providerSegment, query.timestamp, query.maxAge),
193  .status = HumanGroupResult::Status::Success};
194  }
195  catch (...)
196  {
197  return HumanGroupResult{.groups = {},
198  .status = HumanGroupResult::Status::Error,
199  .errorMessage = GetHandledExceptionString()};
200  }
201  }
202 
204  Reader::queryHumans(const Query& query) const
205  {
206  const auto qb = buildHumansQuery(query);
207 
208  ARMARX_DEBUG << "[MappingDataReader] query ... ";
209 
210  const armem::client::QueryResult qResult = memoryReader().query(qb.buildQueryInput());
211 
212  ARMARX_DEBUG << "[MappingDataReader] result: " << qResult;
213 
214  if (not qResult.success)
215  {
216  ARMARX_WARNING << "Failed to query data from memory: " << qResult.errorMessage;
217  return {.humans = {},
218  .status = HumanResult::Status::Error,
219  .errorMessage = qResult.errorMessage};
220  }
221 
222  const auto coreSegment = qResult.memory.getCoreSegment(properties().coreSegmentName);
223 
224  if (not coreSegment.hasProviderSegment(query.providerName))
225  {
226  ARMARX_DEBUG << "Provider segment `" << query.providerName << "` does not exist (yet).";
227  return {.humans = {}, .status = HumanResult::Status::NoData};
228  }
229 
230  const armem::wm::ProviderSegment& providerSegment =
231  coreSegment.getProviderSegment(query.providerName);
232 
233  if (providerSegment.empty())
234  {
235  ARMARX_VERBOSE << "No entities.";
236  return {
237  .humans = {}, .status = HumanResult::Status::NoData, .errorMessage = "No entities"};
238  }
239 
240  try
241  {
242  return HumanResult{.humans = asHumans(providerSegment, query.timestamp, query.maxAge),
243  .status = HumanResult::Status::Success};
244  }
245  catch (...)
246  {
247  return HumanResult{.humans = {},
248  .status = HumanResult::Status::Error,
249  .errorMessage = GetHandledExceptionString()};
250  }
251  }
252 
253 } // namespace armarx::navigation::memory::client::human
armarx::navigation::memory::client::human::Reader::propertyPrefix
std::string propertyPrefix() const override
Definition: Reader.cpp:60
armarx::armem::base::detail::MemoryContainerBase::empty
bool empty() const
Definition: MemoryContainerBase.h:41
ARMARX_VERBOSE
#define ARMARX_VERBOSE
Definition: Logging.h:187
armarx::armem::client::util::SimpleReaderBase::properties
const Properties & properties() const
Definition: SimpleReaderBase.cpp:55
armarx::armem::client::query::ProviderSegmentSelector::entities
EntitySelector & entities()
Start specifying entities.
Definition: selectors.cpp:135
Reader.h
armarx::navigation::memory::client::human::Reader::Query
Definition: Reader.h:43
LocalException.h
armarx::armem::wm::ProviderSegment
Client-side working memory provider segment.
Definition: memory_definitions.h:105
armarx::armem::wm::EntityInstance
Client-side working entity instance.
Definition: memory_definitions.h:32
armarx::armem::base::detail::GetLatestSnapshotMixin::getLatestSnapshot
auto & getLatestSnapshot(int snapshotIndex=0)
Retrieve the latest entity snapshot.
Definition: lookup_mixins.h:199
armarx::armem::client::query::EntitySelector::snapshots
SnapshotSelector & snapshots()
Start specifying entity snapshots.
Definition: selectors.cpp:92
DateTime.h
armarx::navigation::memory::client::human
Definition: Reader.cpp:23
armarx::navigation::memory::client::human::Reader::Query::providerName
std::string providerName
Definition: Reader.h:45
armarx::navigation::memory::client::human::Reader::HumanResult
Definition: Reader.h:50
Duration.h
armarx::navigation::memory::client::human::Reader::HumanGroupResult
Definition: Reader.h:69
types.h
armarx::navigation::memory::constants::NavigationMemoryName
const std::string NavigationMemoryName
Definition: constants.h:29
armarx::armem::client::QueryResult
Result of a QueryInput.
Definition: Query.h:50
Query.h
armarx::navigation::memory::client::human::Reader::defaultProperties
Properties defaultProperties() const override
Definition: Reader.cpp:66
armarx::armem::client::util::SimpleReaderBase::Properties::memoryName
std::string memoryName
Definition: SimpleReaderBase.h:45
armarx::navigation::human::Humans
std::vector< Human > Humans
Definition: types.h:48
ARMARX_CHECK
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
Definition: ExpressionException.h:82
armarx::navigation::memory::client::human::asHumans
navigation::human::Humans asHumans(const armem::wm::ProviderSegment &providerSegment, const DateTime &timestamp, const Duration &maxAge)
Definition: Reader.cpp:73
armarx::core::time::Duration::isPositive
bool isPositive() const
Tests whether the duration is positive (value in µs > 0).
Definition: Duration.cpp:168
armarx::armem::base::detail::MemoryContainerBase::size
std::size_t size() const
Definition: MemoryContainerBase.h:47
armarx::GetHandledExceptionString
std::string GetHandledExceptionString()
Definition: Exception.cpp:165
armarx::armem::client::query::Builder::coreSegments
CoreSegmentSelector & coreSegments()
Start specifying core segments.
Definition: Builder.cpp:42
armarx::navigation::memory::client::human::asGroups
navigation::human::HumanGroups asGroups(const armem::wm::ProviderSegment &providerSegment, const DateTime &timestamp, const Duration &maxAge)
Definition: Reader.cpp:115
ARMARX_DEBUG
#define ARMARX_DEBUG
Definition: Logging.h:184
selectors.h
armarx::armem::client::query::CoreSegmentSelector::withName
CoreSegmentSelector & withName(const std::string &name) override
Definition: selectors.cpp:198
aron_conversions.h
armarx::navigation::memory::constants::HumanCoreSegmentName
const std::string HumanCoreSegmentName
Definition: constants.h:37
memory_definitions.h
armarx::navigation::memory::client::human::Reader::HumanGroupResult::groups
armarx::navigation::human::HumanGroups groups
Definition: Reader.h:71
ExpressionException.h
armarx::core::time::DateTime
Represents a point in time.
Definition: DateTime.h:24
armarx::navigation::memory::client::human::Reader::HumanResult::humans
armarx::navigation::human::Humans humans
Definition: Reader.h:52
armarx::armem::client::util::SimpleReaderBase::Properties
Definition: SimpleReaderBase.h:43
armarx::armem::client::query::EntitySelector::withName
EntitySelector & withName(const std::string &name) override
Definition: selectors.cpp:112
armarx::armem::client::query::ProviderSegmentSelector::withName
ProviderSegmentSelector & withName(const std::string &name) override
Definition: selectors.cpp:155
armarx::navigation::memory::client::human::Reader::buildHumanGroupsQuery
::armarx::armem::client::query::Builder buildHumanGroupsQuery(const Query &query) const
Definition: Reader.cpp:44
armarx::armem::base::ProviderSegmentBase::forEachEntity
bool forEachEntity(EntityFunctionT &&func)
Definition: ProviderSegmentBase.h:189
armarx::armem::client::query::SnapshotSelector::beforeOrAtTime
SnapshotSelector & beforeOrAtTime(Time timestamp)
Definition: selectors.cpp:73
armarx::core::time::Duration
Represents a duration.
Definition: Duration.h:16
Builder.h
constants.h
armarx::navigation::memory::client::human::Reader::~Reader
~Reader() override
armarx::armem::client::query::Builder
The query::Builder class provides a fluent-style specification of hierarchical queries.
Definition: Builder.h:21
armarx::armem::client::query::CoreSegmentSelector::providerSegments
ProviderSegmentSelector & providerSegments()
Start specifying provider segments.
Definition: selectors.cpp:178
armarx::armem::wm::Entity
Client-side working memory entity.
Definition: memory_definitions.h:93
Logging.h
armarx::armem::base::EntityInstanceBase::metadata
MetadataT & metadata()
Definition: EntityInstanceBase.h:117
ARMARX_WARNING
#define ARMARX_WARNING
Definition: Logging.h:193
armarx::navigation::memory::client::human::Reader::buildHumansQuery
::armarx::armem::client::query::Builder buildHumansQuery(const Query &query) const
Definition: Reader.cpp:28
SimpleReaderBase.h
armarx::navigation::human::HumanGroups
std::vector< HumanGroup > HumanGroups
Definition: types.h:60
armarx::navigation::memory::client::human::Reader::Query::timestamp
armem::Time timestamp
Definition: Reader.h:46
armarx::navigation::memory::client::human::Reader::Query::maxAge
Duration maxAge
Definition: Reader.h:47