使用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/

10-16 04:46