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;
136 for (
auto& [name, link] : linkMap )
152 void addSelfPort(
const std::string& name) { selfPorts.push_back(name); }
154 bool isSelfPort(
const std::string& name)
const
156 for ( std::vector<std::string>::const_iterator i = selfPorts.begin(); i != selfPorts.end(); ++i ) {
167 void insertLink(
const std::string& name,
Link* link) { linkMap.insert(std::pair<std::string, Link*>(name, link)); }
169 void removeLink(
const std::string& name) { linkMap.erase(name); }
180 std::map<std::string, Link*>::iterator it = linkMap.find(name);
181 if ( it == linkMap.end() )
191 bool empty() {
return linkMap.empty(); }
196 std::map<std::string, Link*>&
getLinkMap() {
return linkMap; }
This class is basically a wrapper for objects to declare the order in which their members should be s...
Definition serializer.h:43
void addSelfPort(const std::string &name)
Set the list of allowed port names from the ElementInfoPort.
Definition linkMap.h:152
std::map< std::string, Link * > & getLinkMap()
Return a reference to the internal map.
Definition linkMap.h:196
Link * getLink(const std::string &name)
Returns a Link pointer for a given name.
Definition linkMap.h:172
void insertLink(const std::string &name, Link *link)
Inserts a new pair of name and link into the map.
Definition linkMap.h:167
bool empty()
Checks to see if LinkMap is empty.
Definition linkMap.h:191
Link between two components.
Definition link.h:57