0

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

1 回答 1

2

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 在最新标准中已被弃用。

于 2012-05-14T18:45:03.103 回答