NuriaProject Framework  0.1
The NuriaProject Framework
filetemplateloader.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_FILETEMPLATELOADER_HPP
18 #define NURIA_FILETEMPLATELOADER_HPP
19 
20 #include "templateloader.hpp"
21 #include "twig_global.hpp"
22 #include <QVector>
23 #include <QDir>
24 
25 namespace Nuria {
26 
27 class FileTemplateLoaderPrivate;
28 
45 class NURIA_TWIG_EXPORT FileTemplateLoader : public TemplateLoader {
46  Q_OBJECT
47 public:
48 
50  explicit FileTemplateLoader (QObject *parent = 0);
51 
53  explicit FileTemplateLoader (const QDir &path, QObject *parent = 0);
54 
56  explicit FileTemplateLoader (const QVector< QDir > &paths, QObject *parent = 0);
57 
59  ~FileTemplateLoader () override;
60 
62  QVector< QDir > searchPaths () const;
63 
65  void addSearchPath (const QDir &path);
66 
68  void setSearchPaths (const QVector< QDir > &paths) const;
69 
71  QString suffix () const;
72 
77  void setSuffix (const QString &suffix);
78 
79  //
80  QByteArray load (const QString &name) override;
81  bool hasTemplate (const QString &name) override;
82  bool hasTemplateChanged (const QString &name, const QDateTime &since) override;
83 
84 private:
85  QString findTemplatePath (const QString &name) const;
86  bool pathContainsTemplate (const QDir &path, const QString &name, QString &filePath) const;
87 
88  FileTemplateLoaderPrivate *d_ptr;
89 
90 };
91 
92 }
93 
94 #endif // NURIA_FILETEMPLATELOADER_HPP
A template loader which loads templates from files.
Definition: filetemplateloader.hpp:45
Loader of template data for TemplateEngine.
Definition: templateloader.hpp:40
Definition: abstractsessionmanager.hpp:24