59 #ifndef __SIM_PROBE_PROBE_HH__ 60 #define __SIM_PROBE_PROBE_HH__ 72 class ProbeListenerObjectParams;
171 bool addListener(std::string pointName,
ProbeListener &listener);
181 bool removeListener(std::string pointName,
ProbeListener &listener);
204 virtual void notify(
const Arg &
val) = 0;
214 template <
class T,
class Arg>
219 void (T::*
function)(
const Arg &);
238 virtual void notify(
const Arg &
val) { (
object->*
function)(val); }
248 template <
typename Arg>
267 if (std::find(listeners.begin(), listeners.end(),
l) == listeners.end()) {
278 listeners.erase(std::remove(listeners.begin(), listeners.end(),
l),
288 for (
auto l = listeners.begin();
l != listeners.end(); ++
l) {
293 #endif//__SIM_PROBE_PROBE_HH__
#define M5_CLASS_VAR_USED
const std::string & name()
ProbeListener base class; again used to simplify use of ProbePoints in containers and used as to defi...
void notify(const Arg &arg)
called at the ProbePoint call site, passes arg to each listener.
virtual void notify(const Arg &val)
called when the ProbePoint calls notify.
ProbeManager is a conduit class that lives on each SimObject, and is used to match up probe listeners...
Name space containing shared probe point declarations.
ProbePointArg(ProbeManager *manager, std::string name)
ProbeManager * getProbeManager()
ProbeListenerArgBase is used to define the base interface to a ProbeListenerArg (i.e the notify method on specific type).
std::vector< ProbePoint * > points
Vector for name look-up.
std::string getName() const
This class is a minimal wrapper around SimObject.
void addListener(ProbeListener *l)
adds a ProbeListener to this ProbePoints notify list.
ProbeListenerArg(T *obj, const std::string &name, void(T::*func)(const Arg &))
const M5_CLASS_VAR_USED SimObject * object
Required for sensible debug messages.
std::vector< ProbeListener * > listeners
ProbeListenerArgBase(ProbeManager *pm, const std::string &name)
ProbePointArg generates a point for the class of Arg.
ProbeManager(SimObject *obj)
std::vector< ProbeListenerArgBase< Arg > * > listeners
The attached listeners.
ProbeListenerArg generates a listener for the class of Arg and the class type T which is the class co...
ProbeListener base class; here to simplify things like containers containing multiple types of ProbeL...
ProbeManager *const manager
Abstract superclass for simulation objects.
void removeListener(ProbeListener *l)
remove a ProbeListener from this ProbePoints notify list.