-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathFileCache.php
180 lines (148 loc) · 4.16 KB
/
FileCache.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
<?php
namespace ICanBoogie\CLDR\Cache;
use Exception;
use ICanBoogie\CLDR\Cache;
use Throwable;
use function dirname;
use function fclose;
use function file_exists;
use function file_put_contents;
use function flock;
use function fopen;
use function is_writable;
use function mt_rand;
use function rename;
use function restore_error_handler;
use function rtrim;
use function set_error_handler;
use function str_replace;
use function uniqid;
use function unlink;
/**
* A storage using the file system.
*/
final class FileCache implements Cache
{
/**
* Recommended name for the cache directory.
*/
public const RECOMMENDED_DIR = '.cldr-cache';
private static bool $release_after;
/**
* Absolute path to the storage directory.
*/
private string $path;
/**
* @param string $path Absolute path to the storage directory.
*/
public function __construct(string $path)
{
$this->path = rtrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
self::$release_after ??= !(str_starts_with(PHP_OS, 'WIN'));
}
public function get(string $path): ?array
{
$pathname = $this->format_absolute_pathname($path);
if (!file_exists($pathname)) {
return null;
}
return $this->read($pathname);
}
/**
* @throws Throwable
*/
public function set(string $path, array $data): void
{
$this->assert_writable();
$pathname = $this->format_absolute_pathname($path);
// @phpstan-ignore-next-line
set_error_handler(fn() => null);
try {
$this->safe_set($pathname, $data);
} finally {
restore_error_handler();
}
}
private function format_absolute_pathname(string $path): string
{
return $this->path . str_replace('/', '--', $path) . '.php';
}
/**
* @phpstan-ignore-next-line
*/
private function read(string $pathname): array
{
return require $pathname;
}
/**
* @phpstan-ignore-next-line
*/
private function write(string $pathname, array $data): void
{
$var = var_export($data, true);
$content = <<<PHP
<?php return $var;
PHP;
file_put_contents($pathname, $content);
}
/**
* Safely set the value.
*
* @throws Exception
*
* @phpstan-ignore-next-line
*/
private function safe_set(string $pathname, array $data): void
{
$dir = dirname($pathname);
$uniqid = uniqid((string)mt_rand(), true);
$tmp_pathname = $dir . '/var-' . $uniqid;
$garbage_pathname = $dir . '/garbage-var-' . $uniqid;
#
# We lock the file create/update, but we write the data in a temporary file, which is then
# renamed once the data is written.
#
$fh = fopen($pathname, 'a+');
if (!$fh) {
throw new Exception("Unable to open $pathname.");
}
if (self::$release_after && !flock($fh, LOCK_EX)) {
throw new Exception("Unable to get to exclusive lock on $pathname.");
}
$this->write($tmp_pathname, $data);
#
# Windows, this is for you
#
if (!self::$release_after) {
fclose($fh);
}
if (!rename($pathname, $garbage_pathname)) {
throw new Exception("Unable to rename $pathname as $garbage_pathname.");
}
if (!rename($tmp_pathname, $pathname)) {
throw new Exception("Unable to rename $tmp_pathname as $pathname.");
}
if (!unlink($garbage_pathname)) {
throw new Exception("Unable to delete $garbage_pathname.");
}
#
# Unix, this is for you
#
if (self::$release_after) {
flock($fh, LOCK_UN);
fclose($fh);
}
}
/**
* Checks whether the storage directory is writable.
*
* @throws Exception when the storage directory is not writable.
*/
private function assert_writable(): void
{
$path = $this->path;
if (!is_writable($path)) {
throw new Exception("The directory $path is not writable.");
}
}
}