123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-09-24
- * Changed: 2020-11-26
- *
- * */
- #include <ls_std/io/xml/XMLNode.hpp>
- #include <ls_std/utils/STLUtils.hpp>
- ls_std::XMLNode::XMLNode(std::string _name) : ls_std::Class("XMLNode"),
- name(std::move(_name))
- {}
- bool ls_std::XMLNode::addAttributeAfter(const std::shared_ptr<ls_std::XMLAttribute> &_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<ls_std::XMLAttribute> &_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<ls_std::XMLAttribute> &_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<ls_std::XMLAttribute> &_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<ls_std::XMLNode>& _child, const std::shared_ptr<ls_std::XMLNode>& _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<ls_std::XMLNode>& _child, const std::shared_ptr<ls_std::XMLNode>& _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<ls_std::XMLNode> &_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<ls_std::XMLNode>& _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<std::shared_ptr<ls_std::XMLAttribute>> ls_std::XMLNode::getAttributes()
- {
- return this->attributes;
- }
- std::list<std::shared_ptr<ls_std::XMLNode>> ls_std::XMLNode::getChildren()
- {
- return this->children;
- }
- std::list<std::shared_ptr<ls_std::XMLNode>> ls_std::XMLNode::getChildren(const std::string &_name)
- {
- std::list<std::shared_ptr<ls_std::XMLNode>> 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<ls_std::XMLNode> &_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<ls_std::XMLNode> &_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 = "</" + this->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;
- }
|