/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-09-24 * Changed: 2021-05-02 * * */ #include #include ls_std::XmlNode::XmlNode(std::string _name) : ls_std::Class("XmlNode"), name(std::move(_name)) {} bool ls_std::XmlNode::addAttributeAfter(const std::shared_ptr &_attribute, const std::string &_name) { bool added{}; auto iterator = this->attributes.begin(); if (!this->_hasAttribute(_attribute->getName())) { while (iterator != this->attributes.end()) { if ((*iterator)->getName() == _name) { iterator++; this->attributes.insert(iterator, _attribute); added = true; break; } iterator++; } } return added; } bool ls_std::XmlNode::addAttributeBefore(const std::shared_ptr &_attribute, const std::string &_name) { bool added{}; auto iterator = this->attributes.begin(); if (!this->_hasAttribute(_attribute->getName())) { while (iterator != this->attributes.end()) { if ((*iterator)->getName() == _name) { this->attributes.insert(iterator, _attribute); added = true; break; } iterator++; } } return added; } bool ls_std::XmlNode::addAttributeToBeginning(const std::shared_ptr &_attribute) { bool added{}; if (_attribute != nullptr && !_hasAttribute(_attribute->getName())) { this->attributes.push_front(_attribute); added = true; } return added; } bool ls_std::XmlNode::addAttributeToEnd(const std::shared_ptr &_attribute) { bool added{}; if (_attribute != nullptr && !_hasAttribute(_attribute->getName())) { this->attributes.push_back(_attribute); added = true; } return added; } bool ls_std::XmlNode::addChildAfter(const std::shared_ptr &_child, const std::shared_ptr &_search) { bool added{}; auto iterator = this->children.begin(); if (_child != nullptr && !this->_hasChild(_child)) { while (iterator != this->children.end()) { if (*iterator == _search) { iterator++; this->children.insert(iterator, _child); added = true; break; } iterator++; } } return added; } bool ls_std::XmlNode::addChildBefore(const std::shared_ptr &_child, const std::shared_ptr &_search) { bool added{}; auto iterator = this->children.begin(); if (_child != nullptr && !this->_hasChild(_child)) { while (iterator != this->children.end()) { if (*iterator == _search) { this->children.insert(iterator, _child); added = true; break; } iterator++; } } return added; } bool ls_std::XmlNode::addChildToBeginning(const std::shared_ptr &_child) { bool added{}; if (_child != nullptr && !this->_hasChild(_child)) { this->children.push_front(_child); added = true; } return added; } bool ls_std::XmlNode::addChildToEnd(const std::shared_ptr &_child) { bool added{}; if (_child != nullptr && !this->_hasChild(_child)) { this->children.push_back(_child); added = true; } return added; } void ls_std::XmlNode::clearValue() { this->value.clear(); } std::list> ls_std::XmlNode::getAttributes() { return this->attributes; } std::list> ls_std::XmlNode::getChildren() { return this->children; } std::list> ls_std::XmlNode::getChildren(const std::string &_name) { std::list> childrenWithName{}; for (const auto &child : this->children) { if (child->getName() == _name) { childrenWithName.push_back(child); } } return childrenWithName; } std::string ls_std::XmlNode::getName() { return this->name; } std::string ls_std::XmlNode::getValue() { return this->value; } bool ls_std::XmlNode::hasAttribute(const std::string &_name) { return this->_hasAttribute(_name); } bool ls_std::XmlNode::hasChild(const std::string &_name) { return this->_hasChild(_name); } bool ls_std::XmlNode::hasChild(const std::shared_ptr &_child) { return this->_hasChild(_child); } void ls_std::XmlNode::removeFirstAttribute() { if (!this->attributes.empty()) { this->attributes.pop_front(); } } void ls_std::XmlNode::removeLastAttribute() { if (!this->attributes.empty()) { this->attributes.pop_back(); } } void ls_std::XmlNode::removeFirstChild() { if (!this->children.empty()) { this->children.pop_front(); } } void ls_std::XmlNode::removeLastChild() { if (!this->children.empty()) { this->children.pop_back(); } } void ls_std::XmlNode::setName(std::string _name) { this->name = std::move(_name); } void ls_std::XmlNode::setValue(std::string _value) { this->value = std::move(_value); } std::string ls_std::XmlNode::toXml() { return this->_toXml_(0); } std::string ls_std::XmlNode::_toXml_(uint8_t _tabSize) { std::string xmlStream{}; xmlStream += ls_std::XmlNode::_getTab(_tabSize); xmlStream += this->_toXmlOpenTag(); xmlStream += this->_toXmlAttributes(); xmlStream += this->_toXmlOpenTagClose(); xmlStream += this->_toXmlValue(); xmlStream += this->_toXmlChildren(_tabSize + TAB_SIZE); xmlStream += this->value.empty() ? ls_std::XmlNode::_getTab(_tabSize) : ""; xmlStream += this->_toXmlCloseTag() + "\n"; return xmlStream; } std::string ls_std::XmlNode::_getTab(uint8_t _tabSize) { std::string tab{}; for (uint8_t index = 0; index < _tabSize; index++) { tab += " "; } return tab; } bool ls_std::XmlNode::_hasAttribute(const std::string &_name) { bool exists{}; for (const auto &attribute : this->attributes) { if (attribute->getName() == _name) { exists = true; break; } } return exists; } bool ls_std::XmlNode::_hasChild(const std::shared_ptr &_child) { return ls_std::STLUtils::contains(this->children, _child); } bool ls_std::XmlNode::_hasChild(const std::string &_name) { bool exists{}; for (const auto &attribute : this->children) { if (attribute->getName() == _name) { exists = true; break; } } return exists; } std::string ls_std::XmlNode::_toXmlAttributes() { std::string stream{}; for (const auto &_attribute : this->attributes) { stream += " " + _attribute->toXml(); } return stream; } std::string ls_std::XmlNode::_toXmlChildren(uint8_t _tabSize) { std::string stream{}; if (this->value.empty()) { for (const auto &_child : this->children) { stream += _child->_toXml_(_tabSize); } } return stream; } std::string ls_std::XmlNode::_toXmlCloseTag() { std::string stream{}; if (!this->children.empty() || !this->value.empty()) { stream = "name + ">"; } return stream; } std::string ls_std::XmlNode::_toXmlOpenTag() { return "<" + this->name; } std::string ls_std::XmlNode::_toXmlOpenTagClose() { std::string stream{}; if (this->children.empty() && this->value.empty()) { stream = "/>"; } else { stream = ">"; } return stream; } std::string ls_std::XmlNode::_toXmlValue() { return this->value.empty() ? "\n" : this->value; }