NuriaProject Framework  0.1
The NuriaProject Framework
templateerror.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_TEMPLATEERROR_HPP
18 #define NURIA_TEMPLATEERROR_HPP
19 
20 #include "twig_global.hpp"
21 #include <QSharedData>
22 #include <QDebug>
23 
24 namespace Nuria {
25 
26 class TemplateErrorPrivate;
27 
28 namespace Template {
29 
44 struct NURIA_TWIG_EXPORT Location {
45  constexpr Location (int row = 0, int column = 0)
46  : row (row), column (column)
47  { }
48 
50  int row;
51 
53  int column;
54 
56  bool operator< (const Location &right) const;
57 
58 };
59 
60 }
61 
75 class NURIA_TWIG_EXPORT TemplateError {
76 public:
77 
79  enum Component {
80  None = 0,
81  Engine,
82  Loader,
83  Tokenizer,
84  Parser,
85  Compiler,
86  Renderer
87  };
88 
90  enum Error {
91  NoError = 0,
92 
94  TemplateNotFound = 100,
95 
97  UnknownToken = 200,
98 
100  SyntaxError = 300,
101 
106 
111  NonConstantExpression = 400,
112 
118 
124 
130 
136 
138  NoProgram = 500,
139 
142 
143  };
144 
146  TemplateError (Component component = None, Error error = NoError, const QString &what = QString(),
147  Template::Location location = Template::Location ());
148 
150  TemplateError (const TemplateError &other);
151 
153  TemplateError (TemplateError &&other);
154 
156  ~TemplateError ();
157 
159  TemplateError &operator= (const TemplateError &other);
160 
162  TemplateError &operator= (TemplateError &&other);
163 
165  bool hasFailed () const;
166 
168  Component component () const;
169 
171  QString componentName () const;
172 
174  Error error () const;
175 
177  QString errorName () const;
178 
180  QString what () const;
181 
183  Template::Location location () const;
184 
186  static QString componentName (Component component);
187 
189  static QString errorName (Error error);
190 
191 private:
192  QExplicitlySharedDataPointer< TemplateErrorPrivate > d;
193 };
194 
195 }
196 
198 NURIA_TWIG_EXPORT QDebug operator<< (QDebug dbg, const Nuria::TemplateError &error);
199 
200 #endif // NURIA_TEMPLATEERROR_HPP
Storage for a location in Twig code.
Definition: templateerror.hpp:44
Definition: templateerror.hpp:117
Container for exposing Twig errors to user code.
Definition: templateerror.hpp:75
Definition: abstractsessionmanager.hpp:24
int row
Definition: templateerror.hpp:50
Definition: templateerror.hpp:105
Definition: templateerror.hpp:123
Definition: templateerror.hpp:135
Error
Definition: templateerror.hpp:90
int column
Definition: templateerror.hpp:53
Definition: templateerror.hpp:141
Component
Definition: templateerror.hpp:79
General-purpose run-time tokenizer.
Definition: tokenizer.hpp:231
Definition: templateerror.hpp:129