18 #include <armarx/navigation/human/aron/Human.aron.generated.h>
62 return "mem.nav.human.";
80 ARMARX_CHECK(providerSegment.
size() == 1) <<
"There should be only one entity!";
87 if (entitySnapshot.empty())
89 ARMARX_INFO <<
"No entity snapshot instances";
93 entitySnapshot.forEachInstance(
96 const Duration dtToNow =
97 timestamp - entityInstance.metadata().referencedTime;
99 if (dtToNow < maxAge and dtToNow.isPositive())
102 navigation::human::arondto::Human::FromAron(entityInstance.data());
104 navigation::human::Human human;
105 fromAron(dto, human);
106 humans.push_back(human);
122 ARMARX_CHECK(providerSegment.
size() == 1) <<
"There should be only one entity!";
128 ARMARX_CHECK(not entitySnapshot.empty()) <<
"No entity snapshot instances";
130 entitySnapshot.forEachInstance(
134 timestamp - entityInstance.
metadata().referencedTime;
136 if (dtToNow < maxAge and dtToNow.
isPositive())
138 const auto dto = navigation::human::arondto::HumanGroup::FromAron(
139 entityInstance.data());
141 navigation::human::HumanGroup human;
142 fromAron(dto, human);
143 humans.push_back(human);
151 Reader::HumanGroupResult
152 Reader::queryHumanGroups(
const Query& query)
const
154 const auto qb = buildHumansQuery(query);
160 ARMARX_DEBUG <<
"[MappingDataReader] result: " << qResult;
162 if (not qResult.success)
164 ARMARX_WARNING <<
"Failed to query data from memory: " << qResult.errorMessage;
165 return {.groups = {},
166 .status = HumanGroupResult::Status::Error,
167 .errorMessage = qResult.errorMessage};
170 const auto coreSegment = qResult.memory.getCoreSegment(properties().coreSegmentName);
172 if (not coreSegment.hasProviderSegment(query.
providerName))
175 return {.groups = {}, .status = HumanGroupResult::Status::NoData};
181 if (providerSegment.
empty())
184 return {.groups = {},
185 .status = HumanGroupResult::Status::NoData,
186 .errorMessage =
"No entities"};
193 .status = HumanGroupResult::Status::Success};
198 .status = HumanGroupResult::Status::Error,
204 Reader::queryHumans(
const Query& query)
const
206 const auto qb = buildHumansQuery(query);
212 ARMARX_DEBUG <<
"[MappingDataReader] result: " << qResult;
214 if (not qResult.success)
216 ARMARX_WARNING <<
"Failed to query data from memory: " << qResult.errorMessage;
217 return {.humans = {},
218 .status = HumanResult::Status::Error,
219 .errorMessage = qResult.errorMessage};
222 const auto coreSegment = qResult.memory.getCoreSegment(properties().coreSegmentName);
224 if (not coreSegment.hasProviderSegment(query.
providerName))
227 return {.humans = {}, .status = HumanResult::Status::NoData};
233 if (providerSegment.
empty())
237 .humans = {}, .status = HumanResult::Status::NoData, .errorMessage =
"No entities"};
243 .status = HumanResult::Status::Success};
248 .status = HumanResult::Status::Error,