Go to the documentation of this file.
18 #include <armarx/navigation/algorithms/aron/Room.aron.generated.h>
31 auto& coreSegmentSelector =
37 if (
query.providerName)
39 return coreSegmentSelector.providerSegments().
withName(*
query.providerName);
41 return coreSegmentSelector.providerSegments().
all();
63 return "mem.nav.rooms.";
84 ARMARX_CHECK(not entitySnapshot.empty()) <<
"No entity snapshot instances";
86 entityInstance = &entitySnapshot.getInstance(0);
92 armem::tryCast<armarx::navigation::algorithms::arondto::Room>(*entityInstance);
94 const armarx::navigation::algorithms::arondto::Room& dto = *aronDto;
113 if (not qResult.success)
115 ARMARX_WARNING <<
"Failed to query data from memory: " << qResult.errorMessage;
117 .rooms = {}, .status = Result::Status::Error, .errorMessage = qResult.errorMessage};
124 qResult.memory.forEachInstance(
127 const auto dto = algorithms::arondto::Room::FromAron(instance.
data());
131 result.
rooms.push_back(room);
134 if (result.
rooms.empty())
137 return {.rooms = {}, .status = Result::Status::NoData};
140 result.
status = Result::Status::Success;
EntitySelector & all() override
const std::string RoomsCoreSegmentName
enum armarx::navigation::memory::client::rooms::Reader::Result::Status status
EntitySelector & entities()
Start specifying entities.
Client-side working memory provider segment.
void fromAron(const arondto::Circle &dto, Circle &bo)
Client-side working entity instance.
std::vector< armarx::navigation::algorithms::Room > rooms
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
::armarx::armem::client::query::Builder buildQuery(const Query &query) const
Properties defaultProperties() const override
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
CoreSegmentSelector & coreSegments()
Start specifying core segments.
CoreSegmentSelector & withName(const std::string &name) override
const armem::client::Reader & memoryReader() const
EntitySelector & withName(const std::string &name) override
ProviderSegmentSelector & withName(const std::string &name) override
bool forEachEntity(EntityFunctionT &&func)
SnapshotSelector & beforeOrAtTime(Time timestamp)
armarx::navigation::algorithms::Room asRoom(const armem::wm::ProviderSegment &providerSegment)
The query::Builder class provides a fluent-style specification of hierarchical queries.
Client-side working memory entity.
#define ARMARX_CHECK_EQUAL(lhs, rhs)
This macro evaluates whether lhs is equal (==) rhs and if it turns out to be false it will throw an E...
const DataT & data() const
Result query(const Query &query) const
ProviderSegmentSelector & all() override
std::string propertyPrefix() const override
QueryResult query(const QueryInput &input) const
Perform a query.