4

尽管在 xml 解析领域完全是新手,但我能够成功xsd创建有效c++并编译和链接,但编译器优化(?)远离实例化。因此,从第一步开始,我在 CodeSynthesis尝试hello world xml 示例。但这失败了:

[wally@lenovotower xml]$ make hello
xsdcxx cxx-tree hello.xsd
g++ -c -o helloschema.o hello.cxx
g++ -g -o hello -lxerces-c helloschema.o hello.c++
[wally@lenovotower xml]$ ./hello
hello.xml:2:8 error: no declaration found for element 'hello'
hello.xml:4:13 error: no declaration found for element 'greeting'
hello.xml:6:9 error: no declaration found for element 'name'
hello.xml:7:9 error: no declaration found for element 'name'
hello.xml:8:9 error: no declaration found for element 'name'

你好.c++:

#include <iostream>
#include <stdio.h>
#include "hello.hxx"
using namespace std;
int main (void)
{
        try {
                auto_ptr<hello_t> h (hello ("hello.xml"));

                for (hello_t::name_const_iterator i (h->name ().begin()); 
                        i != h->name().end();
                        ++i)
                        cout << h->greeting () << ", " << *i << "!" << endl;    
        }
        catch (const xml_schema::exception& e)
        {
                cerr << e << endl;
                return 1;
        }
        return 0;
}

你好.xml:

<?xml version="1.0"?>
<hello>

  <greeting>Hello</greeting>

  <name>sun</name>
  <name>moon</name>
  <name>world</name>

</hello>

你好.xsd:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

 <xs:complexType name="hello_t">
  <xs:sequence> 
   <xs:element name="greeting" type="xs:string"/>
   <xs:element name="name" type="xs:string" maxOccurs="unbounded"/>
  </xs:sequence>
 </xs:complexType>

 <xs:element name="hello" type="hello_t"/> 

</xs:schema> 

我认为这正是它所说的,但这些命令并不像记录的那样工作。我发现xsdcxx似乎做正确的事(不像xsd生成 C# 或 vb.net 输出)。

[wally@lenovotower xml]$ xsdcxx --version
CodeSynthesis XSD XML Schema to C++ compiler 3.3.0
Copyright (C) 2005-2010 Code Synthesis Tools CC

此外,我不包含-I(dir) 并且它编译愉快。它会以某种方式使用错误的包含文件吗?

我究竟做错了什么?也许xsd不是正确的工具?

4

3 回答 3

3

有一些选择。模式位置可以在文件hello.xml中提供:

<?xml version="1.0"?>
<hello xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:noNamespaceSchemaLocation="hello.xsd">

  <greeting>Hello</greeting>

  <name>sun</name>
  <name>moon</name>
  <name>world</name>

</hello>

另一种选择是在文件hello.c++中提供模式位置

如果我们假设架构文件位于文件路径/some/file/path/hello.xsd

我们应该代替写作

auto_ptr<hello_t> h (hello ("hello.xml"));

xml_schema::properties properties;
properties.no_namespace_schema_location("file:///some/file/path/hello.xsd");
auto_ptr<hello_t> h (hello ("hello.xml", 0, properties));

您可以在 Codesynthesis 常见问题解答中了解更多信息:

当我尝试解析有效​​的 XML 文档时,为什么会收到“错误:找不到元素‘根元素’的声明”?

于 2012-06-29T19:19:23.947 回答
2

就我个人而言,我发现 Python 和 lxml 的组合非常宝贵。您的 XML 文档和相应的 XML 模式可以正常工作:

from lxml import etree

xsddoc = etree.parse('hello.xsd')
xsd = etree.XMLSchema(xsddoc)
xml_parser = etree.XMLParser(schema=xsd)
xmldoc = etree.parse('hello.xml', parser=xml_parser)

我没有从中得到任何错误。然而,我会说,即使 lxml 不需要您使用 xsi:noNamespaceSchemaLocation 因为它加载了您指定的模式,但只要您不使用名称空间,您仍然应该使用它。仅仅因为一个 XML 解析器是灵活的,而其他的可能不是,事实上您似乎已经找到了一个艰难的方法。如果确实使用命名空间,请使用 xsi:schemaLocation 而不是 xsi:noNamespaceSchemaLocation。另请注意,您必须通过 xmlns:xsi 属性声明 xsi 命名空间才能使用 xsi:* 属性。

使用 xsi:noNamespaceSchemaLocation 的示例:

<hello xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:noNamespaceSchemaLocation="hello.xsd">
  ...
</hello>
于 2011-06-18T05:23:23.750 回答
1

编辑:忽略这个答案。我将其保留,因为评论值得保存。 你的 XSD 说:

 <xs:complexType name="hello_t">

但你的 XML 说:

<hello>
...
</hello>

也许 XSD 应该是:

 <xs:complexType name="hello">

此外,XML 缺少xsi:schemaLocation声明。拥有一个可能会有所帮助。

于 2011-06-18T04:50:53.153 回答