aboutsummaryrefslogtreecommitdiff
path: root/examples/roundtrip/driver.cxx
blob: 52701479128cd2ce6e0e8ad4c4984bacf848c255 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// file      : examples/roundtrip/driver.cxx
// copyright : not copyrighted - public domain

#include <string>
#include <fstream>
#include <iostream>

#include <xml/parser.hxx>
#include <xml/serializer.hxx>

using namespace std;
using namespace xml;

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

  try
  {
    ifstream ifs;
    ifs.exceptions (ifstream::badbit | ifstream::failbit);
    ifs.open (argv[1], ifstream::in | ifstream::binary);

    // Configure the parser to receive attributes as events as well
    // as to receive prefix-namespace mappings (namespace declarations
    // in XML terminology).
    //
    parser p (ifs,
              argv[1],
              parser::receive_default |
              parser::receive_attributes_event |
              parser::receive_namespace_decls);

    // Configure serializer not to perform indentation. Existing
    // indentation, if any, will be preserved.
    //
    serializer s (cout, "out", 0);

    for (parser::event_type e (p.next ()); e != parser::eof; e = p.next ())
    {
      switch (e)
      {
      case parser::start_element:
        {
          s.start_element (p.qname ());
          break;
        }
      case parser::end_element:
        {
          s.end_element ();
          break;
        }
      case parser::start_namespace_decl:
        {
          s.namespace_decl (p.namespace_ (), p.prefix ());
          break;
        }
      case parser::end_namespace_decl:
        {
          // There is nothing in XML that indicates the end of namespace
          // declaration since it is scope-based.
          //
          break;
        }
      case parser::start_attribute:
        {
          s.start_attribute (p.qname ());
          break;
        }
      case parser::end_attribute:
        {
          s.end_attribute ();
          break;
        }
      case parser::characters:
        {
          s.characters (p.value ());
          break;
        }
      case parser::eof:
        {
          // Handled in the for loop.
          //
          break;
        }
      }
    }
  }
  catch (const ios_base::failure& e)
  {
    cerr << "io failure" << endl;
    return 1;
  }
  catch (const xml::exception& e)
  {
    cerr << e.what () << endl;
    return 1;
  }
}