|
SimGrid
3.13
Versatile Simulation of Distributed Systems
|
#include <network_ns3.hpp>
Public Member Functions | |
| LinkNS3 (NetworkNS3Model *model, const char *name, xbt_dict_t props, double bandwidth, double latency) | |
| ~LinkNS3 () | |
| void | apply_event (tmgr_trace_iterator_t event, double value) override |
| Apply an event of external load event to that resource. More... | |
| void | updateBandwidth (double value) override |
| Update the bandwidth in bytes per second of current Link. More... | |
| void | updateLatency (double value) override |
| Update the latency in seconds of current Link. More... | |
| void | setBandwidthTrace (tmgr_trace_t trace) override |
| void | setLatencyTrace (tmgr_trace_t trace) override |
Public Member Functions inherited from simgrid::surf::Link | |
| Link (simgrid::surf::NetworkModel *model, const char *name, xbt_dict_t props) | |
| Constructor of non-LMM links. More... | |
| Link (simgrid::surf::NetworkModel *model, const char *name, xbt_dict_t props, lmm_constraint_t constraint) | |
| Constructor of LMM links. More... | |
| void | destroy () |
| Fire the require callbacks and destroy the object. More... | |
| virtual double | getBandwidth () |
| Get the bandwidth in bytes per second of current Link. More... | |
| virtual double | getLatency () |
| Get the latency in seconds of current Link. More... | |
| virtual int | sharingPolicy () |
| The sharing policy is alink e_surf_link_sharing_policy_t::EType} (0: FATPIPE, 1: SHARED, 2: FULLDUPLEX) More... | |
| bool | isUsed () override |
| Check if the Link is used. More... | |
| void | turnOn () override |
| Turn on the current Resource. More... | |
| void | turnOff () override |
| Turn off the current Resource. More... | |
| virtual void | setStateTrace (tmgr_trace_t trace) |
| void * | getData () |
| void | setData (void *d) |
Public Member Functions inherited from simgrid::surf::Resource | |
| Resource (Model *model, const char *name) | |
| Constructor of non-LMM Resources. More... | |
| Resource (Model *model, const char *name, lmm_constraint_t constraint) | |
| Constructor of LMM Resources. More... | |
| virtual | ~Resource () |
| Model * | getModel () const |
| Get the Model of the current Resource. More... | |
| const char * | getName () const |
| Get the name of the current Resource. More... | |
| bool | operator== (const Resource &other) const |
| virtual bool | isOn () const |
| Check if the current Resource is active. More... | |
| virtual bool | isOff () const |
| Check if the current Resource is shut down. More... | |
| lmm_constraint_t | getConstraint () const |
| Get the lmm constraint associated to this Resource if it is part of a LMM component (or null if none) More... | |
Public Member Functions inherited from simgrid::surf::PropertyHolder | |
| PropertyHolder (xbt_dict_t props) | |
| ~PropertyHolder () | |
| const char * | getProperty (const char *id) |
| Return the property associated to the provided key (or NULL if not existing) More... | |
| void | setProperty (const char *id, const char *value) |
| Change the value of a given key in the property set. More... | |
| xbt_dict_t | getProperties () |
| Return the whole set of properties. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from simgrid::surf::Link | |
| static Link * | byName (const char *name) |
| static int | linksCount () |
| Returns the amount of links in the platform. More... | |
| static Link ** | linksList () |
| Returns a list of all existing links. More... | |
| static void | linksExit () |
| destructor of the static data More... | |
Public Attributes inherited from simgrid::surf::Link | |
| tmgr_trace_iterator_t | m_stateEvent = NULL |
| s_surf_metric_t | m_latency = {1.0,0,NULL} |
| s_surf_metric_t | m_bandwidth = {1.0,0,NULL} |
Static Public Attributes inherited from simgrid::surf::Link | |
| static simgrid::xbt::signal< void(simgrid::surf::Link *)> | onCreation |
| Callback signal fired when a new Link is created. More... | |
| static simgrid::xbt::signal< void(simgrid::surf::Link *)> | onDestruction |
| Callback signal fired when a Link is destroyed. More... | |
| static simgrid::xbt::signal< void(simgrid::surf::Link *)> | onStateChange |
Callback signal fired when the state of a Link changes (when it is turned on or off) Signature: void(Link*) More... | |
| static simgrid::xbt::signal< void(simgrid::surf::NetworkAction *, simgrid::surf::NetCard *src, simgrid::surf::NetCard *dst)> | onCommunicate |
Callback signal fired when a communication starts Signature: void(NetworkAction *action, RoutingEdge *src, RoutingEdge *dst) More... | |
Protected Member Functions inherited from simgrid::surf::Link | |
| ~Link () | |
| use destroy() instead of this destructor More... | |
Protected Attributes inherited from simgrid::surf::Resource | |
| lmm_constraint_t | constraint_ = nullptr |
| simgrid::surf::LinkNS3::LinkNS3 | ( | NetworkNS3Model * | model, |
| const char * | name, | ||
| xbt_dict_t | props, | ||
| double | bandwidth, | ||
| double | latency | ||
| ) |
| simgrid::surf::LinkNS3::~LinkNS3 | ( | ) |
|
overridevirtual |
Apply an event of external load event to that resource.
| event | What happened |
| value | [TODO] |
Implements simgrid::surf::Resource.
|
inlineoverridevirtual |
Update the bandwidth in bytes per second of current Link.
Implements simgrid::surf::Link.
|
inlineoverridevirtual |
Update the latency in seconds of current Link.
Implements simgrid::surf::Link.
|
overridevirtual |
Reimplemented from simgrid::surf::Link.
|
overridevirtual |
Reimplemented from simgrid::surf::Link.