-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathAssetCache.php
221 lines (192 loc) · 4.71 KB
/
AssetCache.php
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?php namespace October\Rain\Assetic\Asset;
use October\Rain\Assetic\Cache\CacheInterface;
use October\Rain\Assetic\Filter\FilterInterface;
use October\Rain\Assetic\Filter\HashableInterface;
/**
* AssetCache caches an asset to avoid the cost of loading and dumping.
*
* @author Kris Wallsmith <[email protected]>
*/
class AssetCache implements AssetInterface
{
/**
* @var mixed asset
*/
protected $asset;
/**
* @var mixed cache
*/
protected $cache;
/**
* __construct
*/
public function __construct(AssetInterface $asset, CacheInterface $cache)
{
$this->asset = $asset;
$this->cache = $cache;
}
/**
* ensureFilter
*/
public function ensureFilter(FilterInterface $filter)
{
$this->asset->ensureFilter($filter);
}
/**
* getFilters
*/
public function getFilters()
{
return $this->asset->getFilters();
}
/**
* clearFilters
*/
public function clearFilters()
{
$this->asset->clearFilters();
}
/**
* load
*/
public function load(?FilterInterface $additionalFilter = null)
{
$cacheKey = self::getCacheKey($this->asset, $additionalFilter, 'load');
if ($this->cache->has($cacheKey)) {
$this->asset->setContent($this->cache->get($cacheKey));
return;
}
$this->asset->load($additionalFilter);
$this->cache->set($cacheKey, $this->asset->getContent());
}
/**
* dump
*/
public function dump(?FilterInterface $additionalFilter = null)
{
$cacheKey = self::getCacheKey($this->asset, $additionalFilter, 'dump');
if ($this->cache->has($cacheKey)) {
return $this->cache->get($cacheKey);
}
$content = $this->asset->dump($additionalFilter);
$this->cache->set($cacheKey, $content);
return $content;
}
/**
* getContent
*/
public function getContent()
{
return $this->asset->getContent();
}
/**
* setContent
*/
public function setContent($content)
{
$this->asset->setContent($content);
}
/**
* getSourceRoot
*/
public function getSourceRoot()
{
return $this->asset->getSourceRoot();
}
/**
* getSourcePath
*/
public function getSourcePath()
{
return $this->asset->getSourcePath();
}
/**
* getSourceDirectory
*/
public function getSourceDirectory()
{
return $this->asset->getSourceDirectory();
}
/**
* getTargetPath
*/
public function getTargetPath()
{
return $this->asset->getTargetPath();
}
/**
* setTargetPath
*/
public function setTargetPath($targetPath)
{
$this->asset->setTargetPath($targetPath);
}
/**
* getLastModified
*/
public function getLastModified()
{
return $this->asset->getLastModified();
}
/**
* getVars
*/
public function getVars()
{
return $this->asset->getVars();
}
/**
* setValues
*/
public function setValues(array $values)
{
$this->asset->setValues($values);
}
/**
* getValues
*/
public function getValues()
{
return $this->asset->getValues();
}
/**
* getCacheKey returns a cache key for the current asset.
* The key is composed of everything but an asset's content:
*
* * source root
* * source path
* * target url
* * last modified
* * filters
*
* @param AssetInterface $asset The asset
* @param FilterInterface $additionalFilter Any additional filter being applied
* @param string $salt Salt for the key
*
* @return string A key for identifying the current asset
*/
protected static function getCacheKey(AssetInterface $asset, ?FilterInterface $additionalFilter = null, $salt = '')
{
if ($additionalFilter) {
$asset = clone $asset;
$asset->ensureFilter($additionalFilter);
}
$cacheKey = $asset->getSourceRoot();
$cacheKey .= $asset->getSourcePath();
$cacheKey .= $asset->getTargetPath();
$cacheKey .= $asset->getLastModified();
foreach ($asset->getFilters() as $filter) {
if ($filter instanceof HashableInterface) {
$cacheKey .= $filter->hash();
}
else {
$cacheKey .= serialize($filter);
}
}
if ($values = $asset->getValues()) {
asort($values);
$cacheKey .= serialize($values);
}
return md5($cacheKey.$salt);
}
}