aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/multiroot/driver.cxx
blob: 46f5bee8f51ca28755421e5c01e0dbb1c647d49e (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
// file      : examples/cxx/hybrid/multiroot/driver.cxx
// copyright : not copyrighted - public domain

#include <iostream>

#include "protocol.hxx"
#include "protocol-pimpl.hxx"

using namespace std;
using xml_schema::ro_string;

namespace protocol
{
  // We are going to use our own "type ids" for the request types.
  //
  enum request_type
  {
    unknown_type,
    balance_type,
    withdraw_type
  };

  // Customize the xml_schema::document_pimpl object to handle our protocol
  // vocabulary with multiple root elements.
  //
  class document_pimpl: public xml_schema::document_pimpl
  {
  public:
    document_pimpl ()
        : result_type_ (unknown_type)
    {
    }

    request_type
    result_type () const
    {
      return result_type_;
    }

    protocol::balance
    balance () const
    {
      return balance_;
    }

    protocol::withdraw
    withdraw () const
    {
      return withdraw_;
    }

  protected:
    // This function is called to obtain the root element type parser.
    // If the returned pointed is 0 then the whole document content
    // is ignored. Note that the signature of this function varies
    // depending on whether the runtime was built with polymorphism
    // support.
    //
    virtual xml_schema::parser_base*
#ifndef XSDE_POLYMORPHIC
    start_root_element (const ro_string& ns,
                        const ro_string& name)
#else
    start_root_element (const ro_string& ns,
                        const ro_string& name,
                        const char* /* xsi:type */)
#endif
    {
      if (ns == "http://www.codesynthesis.com/protocol")
      {
        if (name == balance_p_.root_name ())
        {
          balance_p_.pre ();
          return &balance_p_.root_parser ();
        }
        else if (name == "withdraw")
        {
          balance_p_.pre ();
          return &withdraw_p_.root_parser ();
        }

        // Ignore unknown request.
        //
        return 0;
      }
      else
      {
        // This document is from the wrong namespace. If the runtime and
        // the generated code are built with validation enabled then we
        // can set an XML Schema error. Otherwise, we ignore it.
        //
#ifdef XSDE_PARSER_VALIDATION
        context_.schema_error (
          xml_schema::parser_schema_error::unexpected_element);
#endif
        return 0;
      }
    }

    // This function is called to indicate the completion of document
    // parsing. The parser argument contains the pointer returned by
    // start_root_element.
    //
    virtual void
    end_root_element (const ro_string& /* ns */,
                      const ro_string& /* name */,
                      xml_schema::parser_base* parser)
    {
      // We could have handled the result directly in this function
      // instead of storing it in the result variables.
      //
      if (parser == &balance_p_.root_parser ())
      {
        result_type_ = balance_type;
        balance_ = balance_p_.post ();
      }
      else if (parser == &withdraw_p_.root_parser ())
      {
        result_type_ = withdraw_type;
        withdraw_ = withdraw_p_.post ();
      }
      else
        result_type_ = unknown_type;
    }


  public:
    // If we need to be able to reset and reuse the parser after
    // an error then we also need to override reset() and reset
    // the root parsers. We can also get smarter here by caching
    // the parser that was used last and only reset that. Note
    // that you always need to call _reset() from the base.
    //
    virtual void
    reset ()
    {
      xml_schema::document_pimpl::reset ();

      balance_p_.reset ();
      withdraw_p_.reset ();
    }

  private:
    // Result.
    //
    request_type result_type_;
    protocol::balance balance_;
    protocol::withdraw withdraw_;

    // Parsers for various root elements.
    //
    balance_paggr balance_p_;
    withdraw_paggr withdraw_p_;
  };
}

int
main (int argc, char* argv[])
{
  const char* input;

  if (argc < 2)
  {
    input = "STDIN";
    cerr << "XML file not specified, reading from STDIN" << endl;
  }
  else
    input = argv[1];

  try
  {
    using namespace protocol;

    // Parse.
    //
    document_pimpl doc_p;

    // pre() and post() are called as part of the start_root_element()
    // and end_root_element() calls.
    //
    if (argc < 2)
      doc_p.parse (std::cin);
    else
      doc_p.parse (argv[1]);

    // Print what we've got.
    //
    switch (doc_p.result_type ())
    {
    case balance_type:
      {
        balance b (doc_p.balance ());
        cerr << "balance request for acc# " << b.account () << endl;
        break;
      }
    case withdraw_type:
      {
        withdraw w (doc_p.withdraw ());
        cerr << "withdrawal request for acc# " << w.account () << ", "
             << "amount: " << w.amount () << endl;
        break;
      }
    case unknown_type:
      {
        cerr << "unknown request" << endl;
        break;
      }
    }
  }
  catch (const xml_schema::parser_exception& e)
  {
    cerr << input << ":" << e.line () << ":" << e.column () << ": "
         << e.text () << endl;
    return 1;
  }
  catch (const std::ios_base::failure&)
  {
    cerr << input << ": unable to open or read failure" << endl;
    return 1;
  }

  return 0;
}