1

我有一个 xsd 文件,我想在属于它的 xml 上迭代抛出一个特殊属性(这是我的 xsd)。通过代码合成创建我的类后,如下所示:

xsdcxx cxx-tree --root-element percolator_output --generate-polymorphic --namespace-map http://per-colator.com/percolator_out/14=xsd pout.xsd

我写了我的主要内容:

int main (int argc, char* argv[])
{
  try
  {
   auto_ptr<percolator_output> h (percolator_output_ (argv[1]));
   //-----percolator_output::peptides_optional& pep (h->peptides ());
   for (peptides::peptide_const_iterator i (h->peptides ().begin ()); i != h->peptides ().end (); ++i)
   {
     cerr << *i << endl;
    }
  }
  catch (const xml_schema::exception& e)
  {
   cerr << e << endl;
   return 1;
  }
}

我想在我的 xml 文件中迭代 throw 属性“peptides”,但它的输出h->peptides ()percolator_output::peptides_optional并且它不是可迭代的。

4

1 回答 1

1

可选元素的存在首先需要使用函数来确认present()。如果元素存在,则该函数get()可用于返回对该元素的引用。我尽可能少地修改了您的代码以使其编译。

#include <iostream>
#include <pout.hxx>

using namespace std;
using namespace xsd;

int main (int argc, char* argv[])
{
  try
  {
    auto_ptr<percolator_output> h (percolator_output_ (argv[1]));
    if (h->peptides().present())
    {
      for (peptides::peptide_const_iterator i (h->peptides ().get().peptide().begin ()); i != h->peptides ().get().peptide().end (); ++i)
      {
        cerr << *i << endl;
      }
    }
  }
  catch (const xml_schema::exception& e)
  {
   cerr << e << endl;
   return 1;
  }
}

而且,命令行参数--generate-ostream缺少xsdcxx.

$ xsdcxx cxx-tree --root-element percolator_output --generate-polymorphic --generate-ostream --namespace-map http://per-colator.com/percolator_out/14=xsd pout.xsd
$ g++ -I. main.cc pout.cxx -lxerces-c
$ cat /etc/issue
Ubuntu 12.10 \n \l
于 2013-02-27T18:17:28.947 回答