Skip to content
Snippets Groups Projects
Commit afe4852a authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Let the MemoryListener use the respective topic when subscribing a memory ID

parent 6204102f
No related branches found
No related tags found
2 merge requests!237Resolve "Replace global MemoryUpdates topic by memory-specific ones",!235armem/dev
......@@ -20,6 +20,7 @@ namespace armarx::armem::client
MemoryNameSystem::MemoryNameSystem(mns::MemoryNameSystemInterfacePrx mns, ManagedIceObject* component) :
util::MemoryListener(component),
mns(mns), component(component)
{
}
......@@ -28,7 +29,7 @@ namespace armarx::armem::client
void MemoryNameSystem::initialize(mns::MemoryNameSystemInterfacePrx mns, ManagedIceObject* component)
{
this->mns = mns;
this->component = component;
setComponent(component);
}
......@@ -402,8 +403,10 @@ namespace armarx::armem::client
this->mns = mns;
}
void MemoryNameSystem::setComponent(ManagedIceObject* component)
{
util::MemoryListener::setComponent(component);
this->component = component;
}
......
......@@ -5,6 +5,7 @@
#include <ArmarXCore/core/exceptions/LocalException.h>
#include <ArmarXCore/core/logging/Logging.h>
#include <ArmarXCore/core/ice_conversions/ice_conversions_templates.h>
#include <ArmarXCore/core/ManagedIceObject.h>
#include <RobotAPI/libraries/armem/core/ice_conversions.h>
#include <RobotAPI/libraries/armem/core/error.h>
......@@ -13,8 +14,21 @@
namespace armarx::armem::client::util
{
MemoryListener::MemoryListener()
std::string MemoryListener::MakeMemoryTopicName(const MemoryID& memoryID)
{
return "MemoryUpdates." + memoryID.memoryName;
}
MemoryListener::MemoryListener(ManagedIceObject* component) :
component(component)
{
}
void MemoryListener::setComponent(ManagedIceObject* component)
{
this->component = component;
}
......@@ -109,6 +123,10 @@ namespace armarx::armem::client::util
MemoryListener::subscribe(const MemoryID& id, Callback callback)
{
callbacks[id].push_back(callback);
if (component)
{
component->usingTopic(MakeMemoryTopicName(id));
}
}
......
......@@ -11,6 +11,12 @@
#include <RobotAPI/libraries/armem/core/MemoryID.h>
namespace armarx
{
class ManagedIceObject;
}
namespace armarx::armem::client::util
{
......@@ -20,6 +26,7 @@ namespace armarx::armem::client::util
*/
class MemoryListener
{
public:
using Callback = std::function<void(const MemoryID& subscriptionID, const std::vector<MemoryID>& updatedSnapshotIDs)>;
using CallbackUpdatedOnly = std::function<void(const std::vector<MemoryID>& updatedSnapshotIDs)>;
......@@ -29,11 +36,14 @@ namespace armarx::armem::client::util
template <class CalleeT>
using MemberCallbackUpdatedOnly = void(CalleeT::*)(const std::vector<MemoryID>& updatedSnapshotIDs);
static std::string MakeMemoryTopicName(const MemoryID& memoryID);
public:
MemoryListener();
MemoryListener(ManagedIceObject* component = nullptr);
void setComponent(ManagedIceObject* component);
void subscribe(const MemoryID& subscriptionID, Callback Callback);
void subscribe(const MemoryID& subscriptionID, CallbackUpdatedOnly Callback);
......@@ -73,6 +83,10 @@ namespace armarx::armem::client::util
std::unordered_map<MemoryID, std::vector<Callback>> callbacks;
private:
armarx::ManagedIceObject* component;
};
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment