-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAutoMapperCache.php
202 lines (166 loc) · 4.49 KB
/
AutoMapperCache.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
<?php
namespace Skraeda\AutoMapper;
use Illuminate\Filesystem\Filesystem;
use Skraeda\AutoMapper\Contracts\AutoMapperCacheContract;
use Skraeda\AutoMapper\Contracts\AutoMapperScriptLoaderContract;
use Skraeda\AutoMapper\Exceptions\AutoMapperCacheException;
use Throwable;
/**
* AutoMapperCache implementation using filesystem
*
* @author Gunnar Örn Baldursson <gunnar@sjukraskra.is>
*/
class AutoMapperCache implements AutoMapperCacheContract
{
/**
* Constructor
*
* @param \Illuminate\Filesystem\Filesystem $fs
* @param string $dir
*/
public function __construct(
protected AutoMapperScriptLoaderContract $loader,
protected Filesystem $fs,
protected string $dir
) {
}
/**
* {@inheritDoc}
* @throws \Skraeda\AutoMapper\Exceptions\AutoMapperCacheException
*/
public function get($key, $default = null)
{
$this->validateKey($key);
$path = $this->keyPath($key);
if (!$this->fs->exists($path)) {
return $default;
}
try {
return $this->loader->require($path);
} catch (Throwable $e) {
throw AutoMapperCacheException::wrap("Failed to load cache $path", $e);
}
}
/**
* {@inheritDoc}
* @throws \Skraeda\AutoMapper\Exceptions\AutoMapperCacheException
*/
public function set($key, $value, $ttl = null)
{
$this->validateKey($key);
$path = $this->keyPath($key);
$this->fs->makeDirectory($this->dir, 0755, true, true);
$this->delete($key);
$this->fs->put($path, '<?php return '.var_export($value, true).';'.PHP_EOL);
try {
$this->loader->require($path);
} catch (Throwable $e) {
$this->fs->delete($path);
throw AutoMapperCacheException::wrap("Mappers failed to serialize to $key", $e);
}
return true;
}
/**
* {@inheritDoc}
* @throws \Skraeda\AutoMapper\Exceptions\AutoMapperCacheException
*/
public function delete($key)
{
$this->validateKey($key);
$path = $this->keyPath($key);
if ($this->fs->exists($path)) {
return $this->fs->delete($path);
}
return true;
}
/**
* {@inheritDoc}
*/
public function clear()
{
return $this->fs->cleanDirectory($this->dir);
}
/**
* {@inheritDoc}
* @throws \Skraeda\AutoMapper\Exceptions\AutoMapperCacheException
*/
public function has($key)
{
$this->validateKey($key);
$path = $this->keyPath($key);
return $this->fs->exists($path);
}
/**
* {@inheritDoc}
* @throws \Skraeda\AutoMapper\Exceptions\AutoMapperCacheException
*/
public function getMultiple($keys, $default = null)
{
$this->validateKeyArray($keys);
$results = [];
foreach ($keys as $key) {
$results[$key] = $this->get($key, $default);
}
return $results;
}
/**
* {@inheritDoc}
* @throws \Skraeda\AutoMapper\Exceptions\AutoMapperCacheException
*/
public function setMultiple($values, $ttl = null)
{
$this->validateKeyArray($values);
foreach ($values as $key => $value) {
$this->set($key, $value, $ttl);
}
return true;
}
/**
* {@inheritDoc}
* @throws \Skraeda\AutoMapper\Exceptions\AutoMapperCacheException
*/
public function deleteMultiple($keys)
{
$this->validateKeyArray($keys);
foreach ($keys as $key) {
if (!$this->delete($key)) {
return false;
}
}
return true;
}
/**
* Get key path
*
* @param string $key
* @return string
*/
protected function keyPath(string $key): string
{
return $this->dir.DIRECTORY_SEPARATOR.$key;
}
/**
* Validate a cache key is valid.
*
* @param string $key
* @return void
*/
protected function validateKey($key): void
{
if (!is_string($key) || !str_ends_with($key, '.php')) {
throw new AutoMapperCacheException("Key must be a .php file path string");
}
}
/**
* Validate a cache key array
*
* @param array|\Traversable $keys
* @return void
*/
protected function validateKeyArray($keys): void
{
if (!is_iterable($keys)) {
throw new AutoMapperCacheException("Keys must be iterable");
}
}
}