dingusppc/machines/machinebase.cpp

107 lines
2.3 KiB
C++
Raw Normal View History

#include <memory>
#include <string>
#include <thirdparty/loguru/loguru.hpp>
#include "machinebase.h"
2020-03-14 13:23:46 +00:00
#include "devices/hwcomponent.h"
std::unique_ptr<MachineBase> gMachineObj = 0;
MachineBase::MachineBase(std::string name)
{
this->name = name;
/* initialize internal maps */
this->comp_map.clear();
2020-03-14 14:39:34 +00:00
this->subdev_map.clear();
this->aliases.clear();
}
MachineBase::~MachineBase()
{
for(auto it = this->comp_map.begin(); it != this->comp_map.end(); it++) {
delete it->second;
}
this->comp_map.clear();
2020-03-14 14:39:34 +00:00
this->aliases.clear();
this->subdev_map.clear();
}
2020-03-14 14:39:34 +00:00
bool MachineBase::add_component(std::string name, HWComponent *dev_obj)
{
if (this->comp_map.count(name)) {
LOG_F(ERROR, "Component %s already exists!", name.c_str());
return false;
}
this->comp_map[name] = dev_obj;
return true;
}
2020-03-14 14:39:34 +00:00
bool MachineBase::add_subdevice(std::string name, HWComponent *dev_obj)
{
if (this->subdev_map.count(name)) {
LOG_F(ERROR, "Subdevice %s already exists!", name.c_str());
return false;
}
this->subdev_map[name] = dev_obj;
return true;
}
void MachineBase::add_alias(std::string name, std::string alias)
{
2020-03-14 14:39:34 +00:00
this->aliases[alias] = name;
}
2020-03-14 13:23:46 +00:00
HWComponent *MachineBase::get_comp_by_name(std::string name)
{
if (this->aliases.count(name)) {
name = this->aliases[name];
}
if (this->comp_map.count(name)) {
return this->comp_map[name];
2020-03-14 14:39:34 +00:00
}
if (this->subdev_map.count(name)) {
return this->subdev_map[name];
} else {
return NULL;
}
}
2020-03-14 13:23:46 +00:00
HWComponent *MachineBase::get_comp_by_type(HWCompType type)
{
std::string comp_name;
bool found = false;
2020-03-14 13:23:46 +00:00
for(auto it = this->comp_map.begin(); it != this->comp_map.end(); it++) {
if (it->second->supports_type(type)) {
comp_name = it->first;
found = true;
break;
}
}
2020-03-14 14:39:34 +00:00
if (found) {
return this->get_comp_by_name(comp_name);
}
2020-03-14 14:39:34 +00:00
for(auto it = this->subdev_map.begin(); it != this->subdev_map.end(); it++) {
if (it->second->supports_type(type)) {
comp_name = it->first;
found = true;
break;
}
}
if (found) {
return this->get_comp_by_name(comp_name);
} else {
return NULL;
}
}