mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
rXml: fix broken things (#1669)
Not sure if it works completely now but at least it doesn't crash in Metal Slug 3 now.
This commit is contained in:
parent
fe1e7a1bdb
commit
85d0fff233
2 changed files with 17 additions and 68 deletions
|
@ -1,52 +1,24 @@
|
|||
#include "stdafx.h"
|
||||
#include "Utilities/rXml.h"
|
||||
|
||||
rXmlNode::rXmlNode()
|
||||
rXmlNode::rXmlNode() : handle()
|
||||
{
|
||||
ownPtr = true;
|
||||
handle = new pugi::xml_node;
|
||||
}
|
||||
|
||||
rXmlNode::rXmlNode(pugi::xml_node *ptr)
|
||||
rXmlNode::rXmlNode(const pugi::xml_node &node)
|
||||
{
|
||||
ownPtr = false;
|
||||
handle = ptr;
|
||||
}
|
||||
|
||||
rXmlNode::~rXmlNode()
|
||||
{
|
||||
if (ownPtr)
|
||||
{
|
||||
delete handle;
|
||||
}
|
||||
}
|
||||
|
||||
rXmlNode::rXmlNode(const rXmlNode& other)
|
||||
{
|
||||
ownPtr = true;
|
||||
handle = new pugi::xml_node(*other.handle);
|
||||
}
|
||||
|
||||
rXmlNode &rXmlNode::operator=(const rXmlNode& other)
|
||||
{
|
||||
if (ownPtr)
|
||||
{
|
||||
delete handle;
|
||||
}
|
||||
handle = new pugi::xml_node(*other.handle);
|
||||
ownPtr = true;
|
||||
return *this;
|
||||
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_object_range<pugi::xml_node_iterator> it = handle.children();
|
||||
pugi::xml_node begin = *it.begin();
|
||||
|
||||
if (begin)
|
||||
{
|
||||
return std::make_shared<rXmlNode>(&begin);
|
||||
return std::make_shared<rXmlNode>(begin);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -56,10 +28,10 @@ std::shared_ptr<rXmlNode> rXmlNode::GetChildren()
|
|||
|
||||
std::shared_ptr<rXmlNode> rXmlNode::GetNext()
|
||||
{
|
||||
pugi::xml_node result = handle->next_sibling();
|
||||
pugi::xml_node result = handle.next_sibling();
|
||||
if (result)
|
||||
{
|
||||
return std::make_shared<rXmlNode>(&result);
|
||||
return std::make_shared<rXmlNode>(result);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -69,48 +41,32 @@ std::shared_ptr<rXmlNode> rXmlNode::GetNext()
|
|||
|
||||
std::string rXmlNode::GetName()
|
||||
{
|
||||
return handle->name();
|
||||
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();
|
||||
return handle.find_attribute(pred).value();
|
||||
}
|
||||
|
||||
std::string rXmlNode::GetNodeContent()
|
||||
{
|
||||
return handle->text().get();
|
||||
return handle.text().get();
|
||||
}
|
||||
|
||||
void *rXmlNode::AsVoidPtr()
|
||||
rXmlDocument::rXmlDocument() : handle()
|
||||
{
|
||||
return static_cast<void*>(handle);
|
||||
}
|
||||
|
||||
rXmlDocument::rXmlDocument()
|
||||
{
|
||||
handle = new pugi::xml_document;
|
||||
}
|
||||
|
||||
rXmlDocument::~rXmlDocument()
|
||||
{
|
||||
delete handle;
|
||||
}
|
||||
|
||||
void rXmlDocument::Load(const std::string & path)
|
||||
{
|
||||
// TODO: Unsure of use of c_str.
|
||||
handle->load_string(path.c_str());
|
||||
handle.load_file(path.c_str());
|
||||
}
|
||||
|
||||
std::shared_ptr<rXmlNode> rXmlDocument::GetRoot()
|
||||
{
|
||||
pugi::xml_node root = handle->root();
|
||||
return std::make_shared<rXmlNode>(&root);
|
||||
return std::make_shared<rXmlNode>(handle.root());
|
||||
}
|
||||
|
||||
void *rXmlDocument::AsVoidPtr()
|
||||
{
|
||||
return static_cast<void*>(handle);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue