gpt4 book ai didi

c++ - C++ xerces 对象的序列化导致访问冲突。

转载 作者:行者123 更新时间:2023-11-28 03:37:01 26 4
gpt4 key购买 nike

我使用 Xerces C++ 从以下架构生成了典型的 C++ 代码。在序列化对象后,我遇到了访问冲突。我沿着堆栈向下逐步执行代码,直到 std::basic_string 的一些模板化插入代码,它似乎在那里发生。

我可以深入了解问题发生在生成的代码中的哪个位置。但这似乎有点过分了。我确定这是我的代码的问题。

我的代码在下面。

#include <sstream>
#include <iostream>
#include "..\XMLObjects\SomeXML.hxx"

void serializeObject(Object* mess, std::string& result);
void create();

int _tmain(int argc, _TCHAR* argv[])
{
create();
return 0;
}

void create()
{
std::string result;

objectType oType("Status");
std::auto_ptr<Object> obj( &Object(oType) );

time_t seconds=time(NULL);

Object::status_type s(seconds);
obj->status().set(s);
obj->status()->timeOfUpdate();
serializeObject(obj.get(), result);

}

void serializeObject(Object* mess, std::string& result)
{

std::ostringstream buff;
xml_schema::namespace_infomap nsm;
nsm[""].name = "";
nsm[""].schema = "SomeXML.xsd";

try
{
Object_(buff, *mess, nsm, "UTF-8", xml_schema::flags::no_xml_declaration);
}
catch (const xml_schema::exception& e)
{
std::cout << e << std::endl;
return;
}
catch(std::exception& ex)
{
std::string info(" Caught the exception ");
info+=ex.what();

}
catch(...)
{
std::string info(" Caught an exception ");

}

result=buff.str().c_str();

}

以下是我用来生成代码的架构。

    <?xml version="1.0" encoding="utf-8"?>

  <!--<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.com/SomeXML">-->

<xsd:complexType name ="Status" >
<xsd:sequence>
<xsd:element name="timeOfUpdate" type="xsd:unsignedLong" minOccurs="1" maxOccurs="1"/>
</xsd:sequence>
</xsd:complexType>


<xsd:simpleType name="objectType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Status"/>
<xsd:enumeration value="Thing A"/>
<xsd:enumeration value="Thing B"/>
</xsd:restriction>
</xsd:simpleType>

<xsd:complexType name="Object" >
<xsd:sequence>
<xsd:element name="objectType" type ="objectType" minOccurs="1" maxOccurs="1" />
<xsd:element name ="status" type ="Status" minOccurs="0" maxOccurs="1"/>
</xsd:sequence>

</xsd:complexType >


<xsd:element name="Object" type="Object" />
</xsd:schema>

最佳答案

std::auto_ptr<Object> obj( &Object(oType) );

这很可能是头痛的根源之一。看起来您正在创建一个临时文件,然后获取它的地址,并将其存储在 auto_ptr 中。

然后临时对象立即超出范围,你只剩下一个悬空指针。此外,当它到达范围的末尾时,它会尝试 delete一个最初在堆栈上的指针。

尝试将其替换为

std::auto_ptr<Object> obj( new Object(oType) );

或者,如果您使用的是 C++11 兼容编译器,请使用

std::unique_ptr<Object> obj( new Object(oType) );

因为 auto_ptr 在最新标准中已被弃用。

关于c++ - C++ xerces 对象的序列化导致访问冲突。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10589134/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com