Throw an exception if the template file does not exist.
[hoplite.git] / views / template_loader.php
1 <?php
2 // Hoplite
3 // Copyright (c) 2011 Blue Static
4 //
5 // This program is free software: you can redistribute it and/or modify it
6 // under the terms of the GNU General Public License as published by the Free
7 // Software Foundation, either version 3 of the License, or any later version.
8 //
9 // This program is distributed in the hope that it will be useful, but WITHOUT
10 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 // more details.
13 //
14 // You should have received a copy of the GNU General Public License along with
15 // this program. If not, see <http://www.gnu.org/licenses/>.
16
17 namespace hoplite\views;
18
19 use \hoplite\base\Profiling;
20
21 require_once HOPLITE_ROOT . '/base/profiling.php';
22 require_once HOPLITE_ROOT . '/views/template.php';
23
24 /*!
25 The TemplateLoader manages the reading of templates from the file system.
26
27 It can also work with a CacheBackend to store the compiled template data to
28 increase performance.
29
30 Internally it also maintains a cache that it will consult after a template is
31 loaded for the first time.
32 */
33 class TemplateLoader
34 {
35 /*! @var TemplateLoader Singleton instance */
36 static private $instance = NULL;
37
38 /*! @var string Base path for loading the template file. Use %s to indicate
39 where the name (passed to the constructor) should be
40 substituted.
41 */
42 protected $template_path = '%s.tpl';
43
44 /*! @var CacheBackend A cache for compiled template data. */
45 protected $cache_backend = NULL;
46
47 /*! @var array An array of Template objects, keyed by the template name. */
48 protected $cache = array();
49
50 /*! @var array Array of template usage counts, keyed by name. Only used
51 when profiling.
52 */
53 protected $usage = array();
54
55 /*! Gets the singleton instance. */
56 static public function GetInstance()
57 {
58 if (!self::$instance) {
59 $class = get_called_class();
60 self::$instance = new $class();
61 }
62 return self::$instance;
63 }
64 /*! Sets the singleton instance. */
65 static public function SetInstance($instance) { self::$instance = $instance; }
66
67 /*! Accessors */
68 public function set_template_path($path) { $this->template_path = $path; }
69 public function template_path() { return $this->template_path; }
70
71 public function set_cache_backend(CacheBackend $backend) { $this->cache_backend = $backend; }
72 public function cache_backend() { return $this->cache_backend; }
73
74 /*!
75 Loads a template from a file, creates a Template object, and returns a copy
76 of that object.
77
78 @param string Template name, with wich the template plath is formatted.
79
80 @return Template Clone of the cached template.
81 */
82 public function Load($name)
83 {
84 if (Profiling::IsProfilingEnabled() && !isset($this->usage[$name]))
85 $this->usage[$name] = 0;
86
87 $tpl_path = $this->_TemplatePath($name);
88 if (!file_exists($tpl_path))
89 throw new TemplateException("Template $name does not exist at path $tpl_path");
90
91 // First check the memory cache.
92 if (isset($this->cache[$name]))
93 return clone $this->cache[$name];
94
95 // Then check if the cache backend has it.
96 $template = $this->_QueryCache($name, $tpl_path);
97 if ($template) {
98 $this->cache[$name] = $template;
99 return clone $template;
100 }
101
102 // Finally, parse and cache the template.
103 $template = $this->_Load($name);
104 $this->cache[$name] = $template;
105 return clone $template;
106 }
107
108 /*! Convenience function for loading templates. */
109 static public function Fetch($name)
110 {
111 return self::GetInstance()->Load($name);
112 }
113
114 /*! Marks a template as having been used. */
115 public function MarkTemplateRendered($name)
116 {
117 if (!isset($this->usage[$name]))
118 throw new \InvalidArgumentException("Template $name has not been loaded through this instance");
119
120 $this->usage[$name]++;
121 }
122
123 /*!
124 Queries the optional CacheBackend for a template.
125
126 @param string Template name
127 @param string Template path
128
129 @return Template|NULL
130 */
131 protected function _QueryCache($name, $tpl_path)
132 {
133 if (!$this->cache_backend)
134 return NULL;
135
136 $data = $this->cache_backend->GetTemplateDataForName($name, filemtime($tpl_path));
137 if (!$data)
138 return NULL;
139
140 return Template::NewWithCompiledData($name, $data);
141 }
142
143 /*!
144 Loads a raw template from the file system and compiles it. If the optional
145 CacheBackend is present, it will cache the compiled data.
146
147 @param string Template name.
148
149 @return Template
150 */
151 protected function _Load($name)
152 {
153 $tpl_path = $this->_TemplatePath($name);
154
155 $data = @file_get_contents($tpl_path);
156 if ($data === FALSE)
157 throw new TemplateLoaderException('Could not load template ' . $name);
158
159 $template = Template::NewWithData($name, $data);
160
161 if ($this->cache_backend) {
162 $this->cache_backend->StoreCompiledTemplate(
163 $name, filemtime($tpl_path), $template->template());
164 }
165
166 return $template;
167 }
168
169 /*! Returns the template path for a given template name. */
170 protected function _TemplatePath($name)
171 {
172 return sprintf($this->template_path, $name);
173 }
174 }
175
176 class TemplateLoaderException extends \Exception {}