Go to the documentation of this file.
20 #include <armarx/navigation/core/aron/Events.aron.generated.h>
29 callerId(callerId), memoryNameSystem(mns), lastMemoryPoll(
armem::
Time::Now())
36 ARMARX_INFO <<
"MemorySubscriber: will handle all events newer than " << lastMemoryPoll
51 ARMARX_VERBOSE <<
"Received " << snapshotIDs.size() <<
" events from memory";
64 template <
typename AronEventT,
typename EventT>
75 const auto dto = AronEventT::FromAron(dataDict);
87 std::lock_guard g{eventHandlingMtx};
98 fromAron<core::arondto::GlobalPlanningFailedEvent>(memoryEntity, evt);
105 fromAron<core::arondto::LocalPlanningFailedEvent>(memoryEntity, evt);
112 fromAron<core::arondto::MovementStartedEvent>(memoryEntity, evt);
119 fromAron<core::arondto::GoalReachedEvent>(memoryEntity, evt);
126 fromAron<core::arondto::WaypointReachedEvent>(memoryEntity, evt);
133 fromAron<core::arondto::SafetyThrottlingTriggeredEvent>(memoryEntity, evt);
140 fromAron<core::arondto::SafetyStopTriggeredEvent>(memoryEntity, evt);
147 fromAron<core::arondto::UserAbortTriggeredEvent>(memoryEntity, evt);
154 fromAron<core::arondto::InternalErrorEvent>(memoryEntity, evt);
161 fromAron<core::arondto::GlobalTrajectoryUpdatedEvent>(memoryEntity, evt);
168 fromAron<core::arondto::LocalTrajectoryUpdatedEvent>(memoryEntity, evt);
195 .getCoreSegment(
"Events");
198 std::vector<armem::wm::EntityInstance> events;
201 { events.push_back(instance); });
209 return a.id().timestamp < b.id().timestamp;
212 std::sort(events.begin(), events.end(), sortByTimestampAsc);
214 std::for_each(events.begin(), events.end(), [&](
const auto& event) { handleEvent(event); });
~MemorySubscriber() override
wm::Memory memory
The slice of the memory that matched the query.
void safetyStopTriggered(const core::SafetyStopTriggeredEvent &event) override
Will be called whenever a safety stop is triggered.
const std::string MovementStarted
std::string providerSegmentName
void movementStarted(const core::MovementStartedEvent &event) override
Client-side working entity instance.
void safetyThrottlingTriggered(const core::SafetyThrottlingTriggeredEvent &event) override
Will be called whenever safety throttling is triggered to a certain degree (configurable).
void fromAron(const arondto::GlobalTrajectoryPoint &dto, GlobalTrajectoryPoint &bo)
#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...
void handleEvent(const armem::wm::EntityInstance &memoryEntity)
Event describing the occurance of an internal unhandled error.
Event desciribing that a significant safety throttling factor was reached.
const std::string UserAbortTriggered
void globalPlanningFailed(const core::GlobalPlanningFailedEvent &event) override
MemorySubscriber(const std::string &callerId, armem::client::MemoryNameSystem &mns)
void internalError(const core::InternalErrorEvent &event) override
Will be called whenever an internal error occurs.
const std::string WaypointReached
const std::string GlobalTrajectoryUpdated
This file is part of ArmarX.
void localTrajectoryUpdated(const core::LocalTrajectoryUpdatedEvent &event) override
static PointerType DynamicCastAndCheck(const VariantPtr &n)
Brief description of class memory.
std::string coreSegmentName
auto fromAron(const armem::wm::EntityInstance &entity, EventT &bo)
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
const std::string SafetyStopTriggered
QueryResult queryMemoryIDs(const std::vector< MemoryID > &ids, armem::query::DataMode dataMode=armem::query::DataMode::WithData) const
Query a specific set of memory IDs.
SpamFilterDataPtr deactivateSpam(SpamFilterDataPtr const &spamFilter, float deactivationDurationSec, const std::string &identifier, bool deactivate)
const std::string SafetyThrottlingTriggered
void localPlanningFailed(const core::LocalPlanningFailedEvent &event) override
double a(double t, double a0, double j)
std::shared_ptr< Value > value()
const std::string GlobalPlanningFailed
void userAbortTriggered(const core::UserAbortTriggeredEvent &event) override
Will be called whenever the user aborts the current navigation.
void onEntityUpdate(const std::vector< armem::MemoryID > &snapshotIDs)
Event describing that for security reasons, the robot was stopped completely.
Client-side working memory core segment.
Client-side working memory.
Event describing that the user aborted the current execution.
SubscriptionHandle subscribe(const MemoryID &subscriptionID, Callback Callback)
Event describing that the local trajectory was updated.
armarx::core::time::DateTime Time
Event describing that the targeted goal was successfully reached.
const std::string GoalReached
const std::string InternalError
bool hasEntityName() const
void goalReached(const core::GoalReachedEvent &event) override
Will be called whenever the navigator reached the goal.
const std::string memoryName
Event describing that the global trajectory was updated.
bool forEachInstance(InstanceFunctionT &&func)
void waypointReached(const core::WaypointReachedEvent &event) override
Will be called whenever the navigator reached a user-defined waypoint.
void globalTrajectoryUpdated(const core::GlobalTrajectoryUpdatedEvent &event) override
The memory name system (MNS) client.
Event describing that a user-defined waypoint was successfully reached.
void handleEvents(const armem::wm::Memory &memory)
Reader getReader(const MemoryID &memoryID)
Get a reader to the given memory name.
const DataT & data() const
const std::optional< BoT > & bo
const std::string LocalPlanningFailed
const std::string LocalTrajectoryUpdated