summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/order/driver.cxx
blob: 839191aabc00f67c7c88812b912326c2a76ffd4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// file      : tests/cxx/tree/order/driver.cxx
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

// Test ordered type support.
//

#include <memory> // std::auto_ptr/unique_ptr
#include <cassert>
#include <iostream>

#include <xercesc/dom/DOM.hpp>
#include <xercesc/util/PlatformUtils.hpp>

#include "test.hxx"

using namespace std;
using namespace test;
using namespace xercesc;

int
main (int argc, char* argv[])
{
  if (argc != 2)
  {
    cerr << "usage: " << argv[0] << " test.xml" << endl;
    return 1;
  }

  XMLPlatformUtils::Initialize ();

  try
  {
    XSD_AUTO_PTR<root> r (root_ (argv[1], xml_schema::flags::dont_initialize));

    root c (*r);
    assert (c == *r);

    for (root::t1_const_iterator j (r->t1 ().begin ());
         j != r->t1 ().end (); ++j)
    {
      const t1_derived& d (*j);

      for (t1_derived::content_order_const_iterator i (
             d.content_order ().begin ()); i != d.content_order ().end (); ++i)
      {
        cout << i->id << ' ' << i->index << endl;
      }
    }

    xml_schema::namespace_infomap map;

    map["t"].name = "test";
    map["t1"].name = "test1";

    root_ (cout, *r, map, "UTF-8", xml_schema::flags::dont_initialize);
  }
  catch (xml_schema::exception const& e)
  {
    cerr << e << endl;
    return 1;
  }

  XMLPlatformUtils::Terminate ();
}