1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-09-24
- * Changed: 2021-05-01
- *
- * */
- #ifndef LS_STD_XML_NODE_HPP
- #define LS_STD_XML_NODE_HPP
- #include <list>
- #include <memory>
- #include <ls_std/base/Class.hpp>
- #include "XMLAttribute.hpp"
- namespace ls_std
- {
- class XMLNode : public ls_std::Class
- {
- public:
- explicit XMLNode(std::string _name);
- ~XMLNode() override = default;
- bool addAttributeAfter(const std::shared_ptr<ls_std::XMLAttribute> &_attribute, const std::string &_name);
- bool addAttributeBefore(const std::shared_ptr<ls_std::XMLAttribute> &_attribute, const std::string &_name);
- bool addAttributeToBeginning(const std::shared_ptr<ls_std::XMLAttribute> &_attribute);
- bool addAttributeToEnd(const std::shared_ptr<ls_std::XMLAttribute> &_attribute);
- bool addChildAfter(const std::shared_ptr<ls_std::XMLNode> &_child, const std::shared_ptr<ls_std::XMLNode> &_search);
- bool addChildBefore(const std::shared_ptr<ls_std::XMLNode> &_child, const std::shared_ptr<ls_std::XMLNode> &_search);
- bool addChildToBeginning(const std::shared_ptr<ls_std::XMLNode> &_child);
- bool addChildToEnd(const std::shared_ptr<ls_std::XMLNode> &_child);
- void clearValue();
- std::list<std::shared_ptr<ls_std::XMLAttribute>> getAttributes();
- std::list<std::shared_ptr<ls_std::XMLNode>> getChildren();
- std::list<std::shared_ptr<ls_std::XMLNode>> getChildren(const std::string &_name);
- std::string getName();
- std::string getValue();
- bool hasAttribute(const std::string &_name);
- bool hasChild(const std::string &_name);
- bool hasChild(const std::shared_ptr<ls_std::XMLNode> &_child);
- void removeFirstAttribute();
- void removeLastAttribute();
- void removeFirstChild();
- void removeLastChild();
- void setName(std::string _name);
- void setValue(std::string _value);
- std::string toXML();
- protected:
- std::string _toXML_(uint8_t _tabSize);
- private:
- std::list<std::shared_ptr<ls_std::XMLAttribute>> attributes{};
- std::list<std::shared_ptr<ls_std::XMLNode>> children{};
- std::string name{};
- const static uint8_t TAB_SIZE{4};
- std::string value{};
- static std::string _getTab(uint8_t _tabSize);
- bool _hasAttribute(const std::string &_name);
- bool _hasChild(const std::shared_ptr<ls_std::XMLNode> &_child);
- bool _hasChild(const std::string &_name);
- std::string _toXMLAttributes();
- std::string _toXMLChildren(uint8_t _tabSize);
- std::string _toXMLCloseTag();
- std::string _toXMLOpenTag();
- std::string _toXMLOpenTagClose();
- std::string _toXMLValue();
- };
- }
- #endif
|