Go to the documentation of this file.
14 #include <armarx/navigation/core/aron/Trajectory.aron.generated.h>
24 const auto qb = buildLocalPlannerResultQuery(query);
25 const auto& providerName = query.
clientID;
30 ARMARX_DEBUG <<
"[MappingDataReader] result: " << qResult;
32 if (not qResult.success)
34 ARMARX_WARNING <<
"Failed to query data from memory: " << qResult.errorMessage;
35 return {.trajectory = {},
36 .status = LocalPlannerResult::Status::Error,
37 .errorMessage = qResult.errorMessage};
40 const auto coreSegment = qResult.memory.getCoreSegment(
properties().coreSegmentName);
42 if (not coreSegment.hasProviderSegment(providerName))
44 ARMARX_DEBUG <<
"Provider segment `" << providerName <<
"` does not exist (yet).";
45 return {.trajectory = {}, .status = LocalPlannerResult::Status::NoData};
49 coreSegment.getProviderSegment(providerName);
51 if (providerSegment.
empty())
54 return {.trajectory = {},
55 .status = LocalPlannerResult::Status::NoData,
56 .errorMessage =
"No entities"};
62 .status = LocalPlannerResult::Status::Success};
67 .status = LocalPlannerResult::Status::Error,
75 return "mem.nav.stack_result.";
91 ARMARX_CHECK(providerSegment.
size() == 1) <<
"There should be only one entity!";
99 ARMARX_CHECK(not entitySnapshot.empty()) <<
"No entity snapshot instances";
101 entityInstance = &entitySnapshot.getInstance(0);
107 navigation::core::arondto::LocalTrajectory::FromAron(entityInstance->
data());
112 return localTrajectory;
116 Reader::buildLocalPlannerResultQuery(
const Query& query)
const
const Properties & properties() const
EntitySelector & entities()
Start specifying entities.
armarx::navigation::core::LocalTrajectory trajectory
Client-side working memory provider segment.
void fromAron(const arondto::Circle &dto, Circle &bo)
Client-side working entity instance.
auto & getLatestSnapshot(int snapshotIndex=0)
Retrieve the latest entity snapshot.
SnapshotSelector & snapshots()
Start specifying entity snapshots.
#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...
const std::string NavigationMemoryName
This file is part of ArmarX.
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
std::string GetHandledExceptionString()
CoreSegmentSelector & coreSegments()
Start specifying core segments.
CoreSegmentSelector & withName(const std::string &name) override
const armem::client::Reader & memoryReader() const
Properties defaultProperties() const override
EntitySelector & withName(const std::string &name) override
ProviderSegmentSelector & withName(const std::string &name) override
bool forEachEntity(EntityFunctionT &&func)
SnapshotSelector & beforeOrAtTime(Time timestamp)
The query::Builder class provides a fluent-style specification of hierarchical queries.
ProviderSegmentSelector & providerSegments()
Start specifying provider segments.
Client-side working memory entity.
LocalPlannerResult queryLocalPlannerResult(const Query &query)
const DataT & data() const
std::string propertyPrefix() const override
const std::string LocalPlannerResultCoreSegment
std::vector< HumanGroup > HumanGroups
QueryResult query(const QueryInput &input) const
Perform a query.