Support for property groups in variant elements, in TDFs

This commit is contained in:
Nav
2024-10-12 16:25:11 +01:00
parent 22cca07242
commit 5c896bb2ca
7 changed files with 158 additions and 7 deletions

View File

@@ -926,11 +926,23 @@ namespace Targets::TargetDescription
}
Variant TargetDescriptionFile::variantFromXml(const QDomElement& xmlElement) {
return {
auto output = Variant{
TargetDescriptionFile::getAttribute(xmlElement, "key"),
TargetDescriptionFile::getAttribute(xmlElement, "name"),
TargetDescriptionFile::getAttribute(xmlElement, "pinout-key")
TargetDescriptionFile::getAttribute(xmlElement, "pinout-key"),
{}
};
for (
auto element = xmlElement.firstChildElement("property-groups").firstChildElement("property-group");
!element.isNull();
element = element.nextSiblingElement("property-group")
) {
auto propertyGroup = TargetDescriptionFile::propertyGroupFromXml(element);
output.propertyGroupsByKey.emplace(propertyGroup.key, std::move(propertyGroup));
}
return output;
}
TargetAddressSpaceDescriptor TargetDescriptionFile::targetAddressSpaceDescriptorFromAddressSpace(

View File

@@ -1,6 +1,13 @@
#pragma once
#include <string>
#include <map>
#include <functional>
#include "PropertyGroup.hpp"
#include "src/Services/StringService.hpp"
#include "Exceptions/InvalidTargetDescriptionDataException.hpp"
namespace Targets::TargetDescription
{
@@ -10,14 +17,67 @@ namespace Targets::TargetDescription
std::string name;
std::string pinoutKey;
std::map<std::string, PropertyGroup, std::less<void>> propertyGroupsByKey;
Variant(
const std::string& key,
const std::string& name,
const std::string& pinoutKey
const std::string& pinoutKey,
const std::map<std::string, PropertyGroup, std::less<void>>& propertyGroupsByKey
)
: key(key)
, name(name)
, pinoutKey(pinoutKey)
, propertyGroupsByKey(propertyGroupsByKey)
{}
std::optional<std::reference_wrapper<const PropertyGroup>> tryGetPropertyGroup(std::string_view keyStr) const {
const auto keys = Services::StringService::split(keyStr, '.');
const auto firstSubgroupIt = this->propertyGroupsByKey.find(*keys.begin());
return firstSubgroupIt != this->propertyGroupsByKey.end()
? keys.size() > 1
? firstSubgroupIt->second.tryGetSubgroup(keys | std::ranges::views::drop(1))
: std::optional{std::cref(firstSubgroupIt->second)}
: std::nullopt;
}
const PropertyGroup& getPropertyGroup(std::string_view keyStr) const {
const auto propertyGroup = this->tryGetPropertyGroup(keyStr);
if (!propertyGroup.has_value()) {
throw Exceptions::InvalidTargetDescriptionDataException{
"Failed to get property group \"" + std::string{keyStr} + "\" from TDF - property group not found"
};
}
return propertyGroup->get();
}
std::optional<std::reference_wrapper<const Property>> tryGetProperty(
std::string_view groupKey,
std::string_view propertyKey
) const {
const auto propertyGroup = this->tryGetPropertyGroup(groupKey);
if (!propertyGroup.has_value()) {
return std::nullopt;
}
return propertyGroup->get().tryGetProperty(propertyKey);
}
const Property& getProperty(std::string_view groupKey, std::string_view propertyKey) const {
const auto property = this->tryGetProperty(groupKey, propertyKey);
if (!property.has_value()) {
throw Exceptions::InvalidTargetDescriptionDataException{
"Failed to get property \"" + std::string{propertyKey} + "\" from group \"" + std::string{groupKey}
+ "\", from TDF - property/group not found"
};
}
return property->get();
}
};
}