12 #ifndef SST_CORE_LINKMAP_H
13 #define SST_CORE_LINKMAP_H
15 #include "sst/core/component.h"
16 #include "sst/core/link.h"
17 #include "sst/core/sst_types.h"
31 std::map<std::string, Link*> linkMap;
33 std::vector<std::string> selfPorts;
129 for ( std::map<std::string, Link*>::iterator it = linkMap.begin(); it != linkMap.end(); ++it ) {
147 void addSelfPort(
const std::string& name) { selfPorts.push_back(name); }
149 bool isSelfPort(
const std::string& name)
const
151 for ( std::vector<std::string>::const_iterator i = selfPorts.begin(); i != selfPorts.end(); ++i ) {
154 if ( name == *i ) {
return true; }
160 void insertLink(
const std::string& name,
Link* link) { linkMap.insert(std::pair<std::string, Link*>(name, link)); }
162 void removeLink(
const std::string& name) { linkMap.erase(name); }
173 std::map<std::string, Link*>::iterator it = linkMap.find(name);
174 if ( it == linkMap.end() )
184 bool empty() {
return linkMap.empty(); }
189 std::map<std::string, Link*>&
getLinkMap() {
return linkMap; }
Maps port names to the Links that are connected to it.
Definition: linkMap.h:28
void addSelfPort(const std::string &name)
Add a port name to the list of allowed ports.
Definition: linkMap.h:147
std::map< std::string, Link * > & getLinkMap()
Return a reference to the internal map.
Definition: linkMap.h:189
void insertLink(const std::string &name, Link *link)
Inserts a new pair of name and link into the map.
Definition: linkMap.h:160
Link * getLink(const std::string &name)
Returns a Link pointer for a given name.
Definition: linkMap.h:165
bool empty()
Checks to see if LinkMap is empty.
Definition: linkMap.h:184
Link between two components.
Definition: link.h:38