Reader.cpp
Go to the documentation of this file.
1 #include "Reader.h"
2 
3 #include <string>
4 
8 
12 
14 #include <armarx/navigation/core/aron/Trajectory.aron.generated.h>
18 
20 {
23  {
24  const auto qb = buildLocalPlannerResultQuery(query);
25  const auto& providerName = query.clientID;
26 
27  ARMARX_DEBUG << "[MappingDataReader] query ... ";
28 
29  const armem::client::QueryResult qResult = memoryReader().query(qb.buildQueryInput());
30  ARMARX_DEBUG << "[MappingDataReader] result: " << qResult;
31 
32  if (not qResult.success)
33  {
34  ARMARX_WARNING << "Failed to query data from memory: " << qResult.errorMessage;
35  return {.trajectory = {},
36  .status = LocalPlannerResult::Status::Error,
37  .errorMessage = qResult.errorMessage};
38  }
39 
40  const auto coreSegment = qResult.memory.getCoreSegment(properties().coreSegmentName);
41 
42  if (not coreSegment.hasProviderSegment(providerName))
43  {
44  ARMARX_DEBUG << "Provider segment `" << providerName << "` does not exist (yet).";
45  return {.trajectory = {}, .status = LocalPlannerResult::Status::NoData};
46  }
47 
48  const armem::wm::ProviderSegment& providerSegment =
49  coreSegment.getProviderSegment(providerName);
50 
51  if (providerSegment.empty())
52  {
53  ARMARX_DEBUG << "No entities.";
54  return {.trajectory = {},
55  .status = LocalPlannerResult::Status::NoData,
56  .errorMessage = "No entities"};
57  }
58 
59  try
60  {
61  return LocalPlannerResult{.trajectory = asLocalPlannerResult(providerSegment),
62  .status = LocalPlannerResult::Status::Success};
63  }
64  catch (...)
65  {
66  return LocalPlannerResult{.trajectory = {},
67  .status = LocalPlannerResult::Status::Error,
68  .errorMessage = GetHandledExceptionString()};
69  }
70  }
71 
72  std::string
74  {
75  return "mem.nav.stack_result.";
76  }
77 
80  {
83  }
84 
86  Reader::asLocalPlannerResult(const armem::wm::ProviderSegment& providerSegment)
87  {
89 
90  ARMARX_CHECK(not providerSegment.empty()) << "No entities";
91  ARMARX_CHECK(providerSegment.size() == 1) << "There should be only one entity!";
92 
93  const armem::wm::EntityInstance* entityInstance = nullptr;
94 
95  providerSegment.forEachEntity(
96  [&entityInstance](const armem::wm::Entity& entity)
97  {
98  const auto& entitySnapshot = entity.getLatestSnapshot();
99  ARMARX_CHECK(not entitySnapshot.empty()) << "No entity snapshot instances";
100 
101  entityInstance = &entitySnapshot.getInstance(0);
102  });
103 
104  ARMARX_CHECK_NOT_NULL(entityInstance);
105 
106  const auto dto =
107  navigation::core::arondto::LocalTrajectory::FromAron(entityInstance->data());
108 
110  fromAron(dto, localTrajectory);
111 
112  return localTrajectory;
113  }
114 
116  Reader::buildLocalPlannerResultQuery(const Query& query) const
117  {
119 
120  // clang-format off
121  qb
122  .coreSegments().withName(properties().coreSegmentName)
123  .providerSegments().withName(query.clientID)
124  .entities().withName("trajectory")
125  .snapshots().beforeOrAtTime(query.timestamp);
126  // clang-format on
127 
128  return qb;
129  }
130 
131 } // namespace armarx::navigation::memory::client::stack_result
armarx::armem::base::detail::MemoryContainerBase::empty
bool empty() const
Definition: MemoryContainerBase.h:41
armarx::navigation::memory::client::stack_result::Reader::Query::clientID
std::string clientID
Definition: Reader.h:45
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
armarx::navigation::memory::client::stack_result::Reader::LocalPlannerResult::trajectory
armarx::navigation::core::LocalTrajectory trajectory
Definition: Reader.h:50
LocalException.h
armarx::armem::wm::ProviderSegment
Client-side working memory provider segment.
Definition: memory_definitions.h:105
armarx::navigation::memory::fromAron
void fromAron(const arondto::Circle &dto, Circle &bo)
Definition: aron_conversions.cpp:56
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
ARMARX_CHECK_NOT_NULL
#define ARMARX_CHECK_NOT_NULL(ptr)
This macro evaluates whether ptr is not null and if it turns out to be false it will throw an Express...
Definition: ExpressionException.h:206
Reader.h
types.h
armarx::navigation::memory::constants::NavigationMemoryName
const std::string NavigationMemoryName
Definition: constants.h:29
armarx::navigation::memory::client::stack_result
This file is part of ArmarX.
Definition: Reader.cpp:19
armarx::armem::client::QueryResult
Result of a QueryInput.
Definition: Query.h:50
Query.h
armarx::armem::client::util::SimpleReaderBase::Properties::memoryName
std::string memoryName
Definition: SimpleReaderBase.h:45
ARMARX_CHECK
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
Definition: ExpressionException.h:82
armarx::armem::base::detail::MemoryContainerBase::size
std::size_t size() const
Definition: MemoryContainerBase.h:47
armarx::navigation::memory::client::stack_result::Reader::Query
Definition: Reader.h:42
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_DEBUG
#define ARMARX_DEBUG
Definition: Logging.h:184
armarx::armem::client::query::CoreSegmentSelector::withName
CoreSegmentSelector & withName(const std::string &name) override
Definition: selectors.cpp:198
armarx::navigation::core::LocalTrajectory
Definition: Trajectory.h:170
armarx::armem::client::util::SimpleReaderBase::memoryReader
const armem::client::Reader & memoryReader() const
Definition: SimpleReaderBase.cpp:49
memory_definitions.h
armarx::navigation::memory::client::stack_result::Reader::defaultProperties
Properties defaultProperties() const override
Definition: Reader.cpp:79
ExpressionException.h
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
aron_conversions.h
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
Builder.h
constants.h
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::navigation::memory::client::stack_result::Reader::LocalPlannerResult
Definition: Reader.h:48
armarx::armem::wm::Entity
Client-side working memory entity.
Definition: memory_definitions.h:93
Logging.h
ARMARX_WARNING
#define ARMARX_WARNING
Definition: Logging.h:193
armarx::navigation::memory::client::stack_result::Reader::queryLocalPlannerResult
LocalPlannerResult queryLocalPlannerResult(const Query &query)
Definition: Reader.cpp:22
Trajectory.h
armarx::armem::base::EntityInstanceBase::data
const DataT & data() const
Definition: EntityInstanceBase.h:129
armarx::navigation::memory::client::stack_result::Reader::propertyPrefix
std::string propertyPrefix() const override
Definition: Reader.cpp:73
armarx::navigation::memory::constants::LocalPlannerResultCoreSegment
const std::string LocalPlannerResultCoreSegment
Definition: constants.h:42
armarx::navigation::human::HumanGroups
std::vector< HumanGroup > HumanGroups
Definition: types.h:60
armarx::armem::client::Reader::query
QueryResult query(const QueryInput &input) const
Perform a query.
Definition: Reader.cpp:32