aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/parser/elements.ixx
blob: 269f8c55b2c0921cbc28625bb1f42c3c5fc67046 (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
// file      : xsde/cxx/parser/elements.ixx
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

namespace xsde
{
  namespace cxx
  {
    namespace parser
    {
      inline parser_base::
      parser_base ()
          : resetting_ (false), context_ (0)
      {
#ifndef XSDE_EXCEPTIONS
        error_type_ = error_none;
#endif

#ifdef XSDE_REUSE_STYLE_TIEIN
        parent_ = 0;
        impl_ = 0;
#endif
      }

#ifdef XSDE_REUSE_STYLE_TIEIN
      inline parser_base::
      parser_base (parser_base* impl, void*)
          : resetting_ (false), context_ (0)
      {
#ifndef XSDE_EXCEPTIONS
        error_type_ = error_none;
#endif
        parent_ = 0;
        impl_ = impl;
      }
#endif

#ifdef XSDE_REUSE_STYLE_TIEIN
      inline void parser_base::
      _set_parent_chain ()
      {
        if (impl_ && impl_->parent_ == 0)
        {
          for (parser_base* p = impl_; p != 0; p = p->impl_)
            p->parent_ = this;
        }
      }
#endif

      inline context& parser_base::
      _context ()
      {
#ifdef XSDE_REUSE_STYLE_TIEIN
        return *(parent_ ? parent_->context_ : context_);
#else
        return *context_;
#endif
      }

      // Error handling.
      //
#ifndef XSDE_EXCEPTIONS
      inline error parser_base::
      _error () const
      {
        // Unlike context, which is stored in the top-level
        // parser, error state is stored in the "bottom-level"
        // implementation. It is done this way since the error
        // handling mechanism can be used in constructors which
        // would otherwise require passing the pointer to parent
        // parser to each implementation's c-tor.
        //
#ifdef XSDE_REUSE_STYLE_TIEIN
        const parser_base* p = !impl_ ? this : _ultimate_impl ();
#else
        const parser_base* p = this;
#endif
        switch (p->error_type_)
        {
        case error_sys:
          {
            return error (p->error_code_.sys);
          }
        case error_app:
          {
            return error (p->error_code_.app, 0, 0);
          }
        default:
          {
            return error ();
          }
        }
      }

      inline void parser_base::
      _app_error (int e)
      {
#ifdef XSDE_REUSE_STYLE_TIEIN
        parser_base* p = parent_ ? parent_ : this;
#else
        parser_base* p = this;
#endif

        if (p->context_ != 0)
        {
          p->context_->app_error (e);
        }
        else
        {
#ifdef XSDE_REUSE_STYLE_TIEIN
          if (!impl_)
            p = this;
          else
            for (p = impl_; p->impl_ != 0; p = p->impl_) /*noop*/ ;
#endif
          p->error_type_ = error_app;
          p->error_code_.app = e;
        }
      }

      inline int parser_base::
      _app_error () const
      {
#ifdef XSDE_REUSE_STYLE_TIEIN
        const parser_base* p = !impl_ ? this : _ultimate_impl ();
#else
        const parser_base* p = this;
#endif
        return p->error_code_.app;
      }

      inline void parser_base::
      _sys_error (context::sys_error_t e)
      {
#ifdef XSDE_REUSE_STYLE_TIEIN
        parser_base* p = parent_ ? parent_ : this;
#else
        parser_base* p = this;
#endif
        if (p->context_ != 0)
        {
          p->context_->sys_error (e);
        }
        else
        {
#ifdef XSDE_REUSE_STYLE_TIEIN
          if (!impl_)
            p = this;
          else
            for (p = impl_; p->impl_ != 0; p = p->impl_) /*noop*/;
#endif
          p->error_type_ = error_sys;
          p->error_code_.sys = e;
        }
      }

      inline context::sys_error_t parser_base::
      _sys_error () const
      {
#ifdef XSDE_REUSE_STYLE_TIEIN
        const parser_base* p = !impl_ ? this : _ultimate_impl ();
#else
        const parser_base* p = this;
#endif
        return p->error_code_.sys;
      }

      inline parser_base::error_type_t parser_base::
      _error_type () const
      {
#ifdef XSDE_REUSE_STYLE_TIEIN
        const parser_base* p = !impl_ ? this : _ultimate_impl ();
#else
        const parser_base* p = this;
#endif
        return p->error_type_;
      }

      inline void parser_base::
      _copy_error (context& ctx) const
      {
#ifdef XSDE_REUSE_STYLE_TIEIN
        const parser_base* p = !impl_ ? this : _ultimate_impl ();
#else
        const parser_base* p = this;
#endif

        switch (p->error_type_)
        {
        case error_app:
          {
            ctx.app_error (p->error_code_.app);
            break;
          }
        case error_sys:
          {
            ctx.sys_error (p->error_code_.sys);
            break;
          }
        default:
          break;
        }
      }
#endif // XSDE_EXCEPTIONS

#ifdef XSDE_PARSER_VALIDATION
      inline void parser_base::
      _schema_error (context::schema_error_t e)
      {
#ifdef XSDE_REUSE_STYLE_TIEIN
        parser_base* p = parent_ ? parent_ : this;
#else
        parser_base* p = this;
#endif
        p->context_->schema_error (e);
      }
#endif
    }
  }
}