NuriaProject Framework  0.1
The NuriaProject Framework
templateengine.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_TEMPLATEENGINE_HPP
18 #define NURIA_TEMPLATEENGINE_HPP
19 
20 #include <nuria/callback.hpp>
21 #include "twig_global.hpp"
22 #include <QVariant>
23 #include <QObject>
24 
25 #include "templateprogram.hpp"
26 #include "templateerror.hpp"
27 
28 namespace Nuria {
29 
30 class TemplateEnginePrivate;
31 class TemplateLoader;
32 class TemplateStack;
33 
174 class NURIA_TWIG_EXPORT TemplateEngine : public QObject {
175  Q_OBJECT
176 public:
177 
179  explicit TemplateEngine (QObject *parent = 0);
180 
182  ~TemplateEngine () override;
183 
188  QLocale locale () const;
189 
191  void setLocale (const QLocale &locale);
192 
194  TemplateLoader *loader () const;
195 
197  int maxCacheSize () const;
198 
203  void setMaxCacheSize (int size);
204 
206  int currentCacheSize () const;
207 
209  bool isTemplateInCache (const QString &templateName) const;
210 
215  void setLoader (TemplateLoader *loader);
216 
218  QVariant value (const QString &name) const;
219 
221  QVariantMap values () const;
222 
224  void setValues (const QVariantMap &map);
225 
232  void mergeValues (const QVariantMap &map);
233 
235  void setValue (const QString &name, const QVariant &value);
236 
245  void addFunction (const QString &name, const Callback &function, bool isConstant = false);
246 
250  bool hasFunction (const QString &name);
251 
262  TemplateProgram program (const QString &templateName);
263 
273  QString render (const QString &templateName);
274 
279  TemplateError lastError () const;
280 
285  bool isProgramOutdated (const TemplateProgram &program);
286 
288  void flushCache ();
289 
290 private:
291 
292  TemplateProgramPrivate *createProgram (const QString &templateName);
293  void removeChangedTemplateFromCache (const QString &templateName);
294  TemplateProgram updateProgramVariables (const QString &templateName, TemplateProgram *prog);
295  void connectToLoaderSignals ();
296 
297  TemplateEnginePrivate *d_ptr;
298 
299 };
300 
301 }
302 
303 #endif // NURIA_TEMPLATEENGINE_HPP
A modern style callback mechanism which can be bound to various method types including slots...
Definition: callback.hpp:140
Loader of template data for TemplateEngine.
Definition: templateloader.hpp:40
Container for exposing Twig errors to user code.
Definition: templateerror.hpp:75
Definition: abstractsessionmanager.hpp:24
Templating engine for rendering Twig code.
Definition: templateengine.hpp:174
Represents a compiled Twig code program.
Definition: templateprogram.hpp:70