40 #include "debug/ProbeVerbose.hh" 41 #include "params/ProbeListenerObject.hh" 53 manager(params->manager->getProbeManager())
77 ProbeListenerObjectParams::create()
85 DPRINTFR(ProbeVerbose,
"Probes: Call to addListener to \"%s\" on %s.\n", pointName, object->name());
87 for (
auto p = points.begin();
p != points.end(); ++
p) {
88 if ((*p)->getName() == pointName) {
89 (*p)->addListener(&listener);
94 DPRINTFR(ProbeVerbose,
"Probes: Call to addListener to \"%s\" on %s failed, no such point.\n", pointName, object->name());
102 DPRINTFR(ProbeVerbose,
"Probes: Call to removeListener from \"%s\" on %s.\n", pointName, object->name());
103 bool removed =
false;
104 for (
auto p = points.begin();
p != points.end(); ++
p) {
105 if ((*p)->getName() == pointName) {
106 (*p)->removeListener(&listener);
111 DPRINTFR(ProbeVerbose,
"Probes: Call to removeListener from \"%s\" on %s failed, no such point.\n", pointName, object->name());
119 DPRINTFR(ProbeVerbose,
"Probes: Call to addPoint \"%s\" to %s.\n", point.
getName(),
object->name());
121 for (
auto p = points.begin();
p != points.end(); ++
p) {
122 if ((*p)->getName() == point.
getName()) {
123 DPRINTFR(ProbeVerbose,
"Probes: Call to addPoint \"%s\" to %s failed, already added.\n", point.
getName(),
object->name());
127 points.push_back(&point);
bool removeListener(std::string pointName, ProbeListener &listener)
Remove a ProbeListener from the ProbePoint named by pointName.
virtual ~ProbeListenerObject()
const std::string & name()
ProbeListener base class; again used to simplify use of ProbePoints in containers and used as to defi...
ProbePoint(ProbeManager *manager, const std::string &name)
ProbeManager is a conduit class that lives on each SimObject, and is used to match up probe listeners...
bool addListener(std::string pointName, ProbeListener &listener)
Add a ProbeListener to the ProbePoint named by pointName.
ProbeListenerObject(const ProbeListenerObjectParams *params)
void addPoint(ProbePoint &point)
Add a ProbePoint to this SimObject ProbeManager.
std::string getName() const
This class is a minimal wrapper around SimObject.
std::vector< ProbeListener * > listeners
virtual const std::string name() const
ProbeListener base class; here to simplify things like containers containing multiple types of ProbeL...
ProbeManager *const manager
ProbeListener(ProbeManager *manager, const std::string &name)
Abstract superclass for simulation objects.