mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
ee98f577e2
And prevent some possible segfaults
71 lines
1.2 KiB
C++
71 lines
1.2 KiB
C++
#include "stdafx.h"
|
|
#include "Utilities/rXml.h"
|
|
|
|
rXmlNode::rXmlNode()
|
|
{
|
|
}
|
|
|
|
rXmlNode::rXmlNode(const pugi::xml_node &node)
|
|
{
|
|
handle = node;
|
|
}
|
|
|
|
std::shared_ptr<rXmlNode> rXmlNode::GetChildren()
|
|
{
|
|
// it.begin() returns node_iterator*, *it.begin() return node*.
|
|
pugi::xml_object_range<pugi::xml_node_iterator> it = handle.children();
|
|
pugi::xml_node begin = *it.begin();
|
|
|
|
if (begin)
|
|
{
|
|
return std::make_shared<rXmlNode>(begin);
|
|
}
|
|
else
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
std::shared_ptr<rXmlNode> rXmlNode::GetNext()
|
|
{
|
|
pugi::xml_node result = handle.next_sibling();
|
|
if (result)
|
|
{
|
|
return std::make_shared<rXmlNode>(result);
|
|
}
|
|
else
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
std::string rXmlNode::GetName()
|
|
{
|
|
return handle.name();
|
|
}
|
|
|
|
std::string rXmlNode::GetAttribute(const std::string &name)
|
|
{
|
|
auto pred = [&name](pugi::xml_attribute attr) { return (name == attr.name()); };
|
|
return handle.find_attribute(pred).value();
|
|
}
|
|
|
|
std::string rXmlNode::GetNodeContent()
|
|
{
|
|
return handle.text().get();
|
|
}
|
|
|
|
rXmlDocument::rXmlDocument()
|
|
{
|
|
}
|
|
|
|
pugi::xml_parse_result rXmlDocument::Read(const std::string& data)
|
|
{
|
|
return handle.load_buffer(data.data(), data.size());
|
|
}
|
|
|
|
std::shared_ptr<rXmlNode> rXmlDocument::GetRoot()
|
|
{
|
|
return std::make_shared<rXmlNode>(handle.root());
|
|
}
|