summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/parser/validating/exceptions.ixx
blob: 74bb9099d7ddffc21611d58b4aac15e6a1adeaab (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
// file      : xsd/cxx/parser/validating/exceptions.ixx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#if defined(XSD_CXX_PARSER_USE_CHAR) || !defined(XSD_CXX_PARSER_USE_WCHAR)

#ifndef XSD_CXX_PARSER_VALIDATING_EXCEPTIONS_IXX_CHAR
#define XSD_CXX_PARSER_VALIDATING_EXCEPTIONS_IXX_CHAR

namespace xsd
{
  namespace cxx
  {
    namespace parser
    {
      namespace validating
      {
        // expected_attribute
        //
        template<>
        inline
        std::basic_string<char> expected_attribute<char>::
        message () const
        {
          std::basic_string<char> r ("expected attribute '");
          r += expected_namespace_;
          r += expected_namespace_.empty () ? "" : "#";
          r += expected_name_;
          r += "'";
          return r;
        }

        // unexpected_attribute
        //
        template<>
        inline
        std::basic_string<char> unexpected_attribute<char>::
        message () const
        {
          std::basic_string<char> r ("unexpected attribute '");
          r += encountered_namespace_;
          r += encountered_namespace_.empty () ? "" : "#";
          r += encountered_name_;
          r += "'";
          return r;
        }

        // unexpected_characters
        //
        template<>
        inline
        std::basic_string<char> unexpected_characters<char>::
        message () const
        {
          std::basic_string<char> r ("unexpected characters '");
          r += characters_;
          r += "'";
          return r;
        }

        // invalid_value
        //
        template<>
        inline
        std::basic_string<char> invalid_value<char>::
        message () const
        {
          std::basic_string<char> r ("'");
          r += value_;
          r += "' is not a valid value representation ";
          r += "for type '";
          r += type_;
          r += "'";
          return r;
        }
      }
    }
  }
}

#endif // XSD_CXX_PARSER_VALIDATING_EXCEPTIONS_IXX_CHAR
#endif // XSD_CXX_PARSER_USE_CHAR


#if defined(XSD_CXX_PARSER_USE_WCHAR) || !defined(XSD_CXX_PARSER_USE_CHAR)

#ifndef XSD_CXX_PARSER_VALIDATING_EXCEPTIONS_IXX_WCHAR
#define XSD_CXX_PARSER_VALIDATING_EXCEPTIONS_IXX_WCHAR

namespace xsd
{
  namespace cxx
  {
    namespace parser
    {
      namespace validating
      {
        // expected_attribute
        //
        template<>
        inline
        std::basic_string<wchar_t> expected_attribute<wchar_t>::
        message () const
        {
          std::basic_string<wchar_t> r (L"expected attribute '");
          r += expected_namespace_;
          r += expected_namespace_.empty () ? L"" : L"#";
          r += expected_name_;
          r += L"'";
          return r;
        }

        // unexpected_attribute
        //
        template<>
        inline
        std::basic_string<wchar_t> unexpected_attribute<wchar_t>::
        message () const
        {
          std::basic_string<wchar_t> r (L"unexpected attribute '");
          r += encountered_namespace_;
          r += encountered_namespace_.empty () ? L"" : L"#";
          r += encountered_name_;
          r += L"'";
          return r;
        }

        // unexpected_characters
        //
        template<>
        inline
        std::basic_string<wchar_t> unexpected_characters<wchar_t>::
        message () const
        {
          std::basic_string<wchar_t> r (L"unexpected characters '");
          r += characters_;
          r += L"'";
          return r;
        }

        // invalid_value
        //
        template<>
        inline
        std::basic_string<wchar_t> invalid_value<wchar_t>::
        message () const
        {
          std::basic_string<wchar_t> r (L"'");
          r += value_;
          r += L"' is not a valid value representation ";
          r += L"for type '";
          r += type_;
          r += L"'";
          return r;
        }
      }
    }
  }
}

#endif // XSD_CXX_PARSER_VALIDATING_EXCEPTIONS_IXX_WCHAR
#endif // XSD_CXX_PARSER_USE_WCHAR