#include <DataPath.hpp>
Public Member Functions | |
DataPath (Component *_source, Component *_target, int _oriented, int _type=SYS_SAGE_DATAPATH_TYPE_NONE) | |
DataPath (Component *_source, Component *_target, int _oriented, double _bw, double _latency) | |
DataPath (Component *_source, Component *_target, int _oriented, int _type, double _bw, double _latency) | |
Component * | GetSource () |
Component * | GetTarget () |
double | GetBandwidth () |
void | SetBandwidth (double _bandwidth) |
double | GetLatency () |
void | SetLatency (double _latency) |
void | UpdateSource (Component *_new_source) |
void | UpdateTarget (Component *_new_target) |
int | GetDataPathType () |
int | GetOrientation () |
void | Print () |
void | DeleteDataPath () |
Public Attributes | |
std::map< std::string, void * > | attrib |
Class DataPath represents Data Paths in the topology – Data Paths represent an arbitrary relation (or data movement) between two Components from the Component Tree.
Data Paths create a Data-Path graph, which is a structure orthogonal to the Component Tree.
Each Component contains a reference to all Data Paths going to or from this components (as well as parents and children in the Component Tree). Using these references, it is possible to navigate between the Components and to view the data stores in the Components or the Data Paths.
DataPath::DataPath | ( | Component * | _source, |
Component * | _target, | ||
int | _oriented, | ||
int | _type = SYS_SAGE_DATAPATH_TYPE_NONE ) |
DataPath constructor.
_source | - pointer to the source Component. (If _oriented == SYS_SAGE_DATAPATH_BIDIRECTIONAL, there is no difference between _source and _target) |
_target | - pointer to the target Component. |
_oriented | - is the Data Path oriented? (SYS_SAGE_DATAPATH_ORIENTED = oriented DP; SYS_SAGE_DATAPATH_BIDIRECTIONAL = NOT oriented DP) |
_type | - (optional parameter) Denotes type of the Data Path – helps to distinguish Data Paths carrying different type of information. The value is user-defined. If not specified, the Data Path will have type SYS_SAGE_DATAPATH_TYPE_NONE. Predefined types: SYS_SAGE_DATAPATH_TYPE_NONE, SYS_SAGE_DATAPATH_TYPE_LOGICAL, SYS_SAGE_DATAPATH_TYPE_PHYSICAL, SYS_SAGE_DATAPATH_TYPE_L3CAT. Each user can define an arbitrary type as an integer value > 1024 |
DataPath::DataPath | ( | Component * | _source, |
Component * | _target, | ||
int | _oriented, | ||
double | _bw, | ||
double | _latency ) |
DataPath constructor. DataPath type is set to SYS_SAGE_DATAPATH_TYPE_NONE.
_source | - pointer to the source Component. (If _oriented == SYS_SAGE_DATAPATH_BIDIRECTIONAL, there is no difference between _source and _target) |
_target | - pointer to the target Component. |
_oriented | - is the Data Path oriented? (SYS_SAGE_DATAPATH_ORIENTED = oriented DP; SYS_SAGE_DATAPATH_BIDIRECTIONAL = NOT oriented DP) |
_bw | - bandwidth from the source(provides the data) to the target(requests the data) |
_latency | - Data load latency from the source(provides the data) to the target(requests the data) |
DataPath::DataPath | ( | Component * | _source, |
Component * | _target, | ||
int | _oriented, | ||
int | _type, | ||
double | _bw, | ||
double | _latency ) |
DataPath constructor.
_source | - pointer to the source Component. (If _oriented == SYS_SAGE_DATAPATH_BIDIRECTIONAL, there is no difference between _source and _target) |
_target | - pointer to the target Component. |
_oriented | - is the Data Path oriented? (SYS_SAGE_DATAPATH_ORIENTED = oriented DP; SYS_SAGE_DATAPATH_BIDIRECTIONAL = NOT oriented DP) |
_type | - (optional parameter) Denotes type of the Data Path – helps to distinguish Data Paths carrying different type of information. The value is user-defined. If not specified, the Data Path will have type SYS_SAGE_DATAPATH_TYPE_NONE. Predefined types: SYS_SAGE_DATAPATH_TYPE_NONE, SYS_SAGE_DATAPATH_TYPE_LOGICAL, SYS_SAGE_DATAPATH_TYPE_PHYSICAL, SYS_SAGE_DATAPATH_TYPE_L3CAT. Each user can define an arbitrary type as an integer value > 1024 |
_bw | - Bandwidth from the source(provides the data) to the target(requests the data) |
_latency | - Data load latency from the source(provides the data) to the target(requests the data) |
void DataPath::DeleteDataPath | ( | ) |
Deletes and de-allocates the DataPath pointer from the list(std::vector) of outgoing and incoming DataPaths of source and target Components.
double DataPath::GetBandwidth | ( | ) |
int DataPath::GetDataPathType | ( | ) |
double DataPath::GetLatency | ( | ) |
int DataPath::GetOrientation | ( | ) |
Retrieves the orientation of the datapath (SYS_SAGE_DATAPATH_ORIENTED or SYS_SAGE_DATAPATH_BIDIRECTIONAL)
void DataPath::Print | ( | ) |
Prints basic information about the Data Path to stdout. Prints componentType and Id of the source and target Components, the bandwidth, load latency, and the attributes; for each attribute, the name and value are printed, however the value is only retyped to uint64_t (therefore will print nonsensical values for other data types).
void DataPath::SetBandwidth | ( | double | _bandwidth | ) |
Sets the bandwidth from the source to the target.
_bandwidth | - value for bw |
void DataPath::SetLatency | ( | double | _latency | ) |
Sets the data load latency from the source to the target.
_latency | - value for latency |
void DataPath::UpdateSource | ( | Component * | _new_source | ) |
void DataPath::UpdateTarget | ( | Component * | _new_target | ) |
std::map<std::string, void*> DataPath::attrib |
A map for storing arbitrary pieces of information or data.
key
denotes the name of the attribute.value
points to the data, stored as a void*
.This data structure is designed to store a wide variety of data types by utilizing pointers to void. Due to its flexibility, it is essential to manage the types and memory allocation/deallocation carefully to avoid issues such as memory leaks or undefined behavior.
Usage:
Note:
void*
pointers. Always ensure that dynamically allocated memory is freed when no longer needed.