-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDriver.php
483 lines (422 loc) · 15.9 KB
/
Driver.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<?php
/**
*
* This file is part of Phpfastcache.
*
* @license MIT License (MIT)
*
* For full copyright and license information, please see the docs/CREDITS.txt and LICENCE files.
*
* @author Georges.L (Geolim4) <contact@geolim4.com>
* @author Steven Lewis (srjlewis) https://github.com/srjlewis
* @author Contributors https://github.com/PHPSocialNetwork/phpfastcache/graphs/contributors
*
* @noinspection PhpMultipleClassDeclarationsInspection
* @noinspection PhpComposerExtensionStubsInspection
*/
declare(strict_types=1);
namespace Phpfastcache\Extensions\Drivers\Couchbasev4;
use Couchbase\Exception\CouchbaseException;
use Couchbase\Bucket as CouchbaseBucket;
use Couchbase\Cluster;
use Couchbase\ClusterOptions;
use Couchbase\Collection;
use Couchbase\Exception\DocumentNotFoundException;
use Couchbase\Exception\InvalidArgumentException;
use Couchbase\Exception\TimeoutException;
use Couchbase\ForkEvent;
use Couchbase\GetResult;
use Couchbase\Scope;
use Couchbase\UpsertOptions;
use Phpfastcache\Cluster\AggregatablePoolInterface;
use Phpfastcache\Config\ConfigurationOption;
use Phpfastcache\Core\Item\ExtendedCacheItemInterface;
use Phpfastcache\Core\Pool\CacheItemPoolTrait;
use Phpfastcache\Core\Pool\ExtendedCacheItemPoolInterface;
use Phpfastcache\Core\Pool\TaggableCacheItemPoolTrait;
use Phpfastcache\Entities\DriverStatistic;
use Phpfastcache\Event\EventManagerInterface;
use Phpfastcache\Exceptions\PhpfastcacheDriverCheckException;
use Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException;
use Phpfastcache\Exceptions\PhpfastcacheLogicException;
use Phpfastcache\Exceptions\PhpfastcacheUnsupportedMethodException;
/**
* @property Cluster $instance Instance of driver service
* @method Config getConfig()
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class Driver implements AggregatablePoolInterface
{
use CacheItemPoolTrait {
CacheItemPoolTrait::__construct as __parentConstruct;
}
use TaggableCacheItemPoolTrait;
protected Scope $scope;
protected Collection $collection;
protected CouchbaseBucket $bucketInstance;
protected int $currentParentPID = 0;
protected static int $prepareToForkPPID = 0;
protected static string $extVersion;
protected static bool $posixLoaded;
/**
* Driver constructor.
* @param ConfigurationOption $config
* @param string $instanceId
* @param EventManagerInterface $em
*/
public function __construct(ConfigurationOption $config, string $instanceId, EventManagerInterface $em)
{
static::$extVersion ??= \phpversion('couchbase');
static::$posixLoaded ??= \extension_loaded('posix');
if (\version_compare(static::$extVersion, '4.2.0', '=') && static::$posixLoaded) {
$this->currentParentPID = \posix_getppid();
}
$this->__parentConstruct($config, $instanceId, $em);
}
public function __destruct()
{
static::handleNotifyFork();
}
/**
* @return bool
*/
public function driverCheck(): bool
{
return \extension_loaded('couchbase');
}
public function getHelp(): string
{
return 'Couchbasev4 requires the `php-couchbase` extension 4.x and optionally the `php-posix` extension if you enabled the config "doForkDetection".';
}
/**
* @return bool
* @throws PhpfastcacheDriverCheckException
*/
protected function driverConnect(): bool
{
if (!\class_exists(ClusterOptions::class)) {
throw new PhpfastcacheDriverCheckException('You are using the Couchbase PHP SDK 2.x which is no longer supported in Phpfastcache v9');
}
if (\version_compare(static::$extVersion, '4.0.0', '<') || \version_compare(static::$extVersion, '5.0.0', '>=')) {
throw new PhpfastcacheDriverCheckException("You are using Couchbase extension " . static::$extVersion . ", You need to use a Couchbase V4 extension");
}
return $this->connect();
}
/**
* @throws InvalidArgumentException
*/
protected function connect(?int $appendPPID = null): bool
{
$schema = $this->getConfig()->getSecure() ? 'couchbases' : 'couchbase';
$servers = $this->getConfig()->getServers();
$connectionString = $schema . '://' . implode(',', $servers) . ($appendPPID ? "?ppid=$appendPPID" : '');
$options = $this->getConfig()->getClusterOptions();
$options->credentials($this->getConfig()->getUsername(), $this->getConfig()->getPassword());
$this->instance = new Cluster($connectionString, $options); // @phpstan-ignore-line
$this->setBucket($this->instance->bucket($this->getConfig()->getBucketName()));
$this->setScope($this->getBucket()->scope($this->getConfig()->getScopeName()));
$this->setCollection($this->getScope()->collection($this->getConfig()->getCollectionName()));
return true;
}
/**
* Needs to be call just before posix_fork() call or the child process will lock up
*
* @return void
* @throws PhpfastcacheDriverCheckException
*/
public static function prepareToFork(): void
{
if (!isset(static::$posixLoaded) && !isset(static::$extVersion)) {
return;
}
if (!static::$posixLoaded) {
throw new PhpfastcacheDriverCheckException('POSIX extension is required to prepare for forking');
}
if (\version_compare(static::$extVersion, '4.2.0', '=')) {
throw new PhpfastcacheDriverCheckException(
'You are using Couchbase extension ' . static::$extVersion .
', This version has a known bug with pcntl_fork() and will lockup child processes.'
);
}
if (\version_compare(static::$extVersion, '4.2.1', '>=')) {
static::handleNotifyFork();
Cluster::notifyFork(ForkEvent::PREPARE);
}
static::$prepareToForkPPID = posix_getpid();
}
/**
* @return void
* @throws PhpfastcacheDriverCheckException
*/
protected function handleForkedProcess(): void
{
if (static::$posixLoaded) {
if (\version_compare(static::$extVersion, '4.2.0', '=') && $this->currentParentPID !== \posix_getppid()) {
// exit() call will fail and lockup, so child process kills itself
\posix_kill(\posix_getpid(), \SIGKILL);
}
if (static::$prepareToForkPPID) {
if (\version_compare(static::$extVersion, '4.2.0', '<') && static::$prepareToForkPPID !== $this->currentParentPID) {
$this->currentParentPID = static::$prepareToForkPPID;
$this->connect(\posix_getppid());
}
static::handleNotifyFork();
}
}
}
protected static function handleNotifyFork(): void
{
if (static::$prepareToForkPPID && \version_compare(static::$extVersion, '4.2.1', '>=')) {
if (static::$prepareToForkPPID === \posix_getpid()) {
Cluster::notifyFork(ForkEvent::PARENT);
} else {
Cluster::notifyFork(ForkEvent::CHILD);
}
static::$prepareToForkPPID = 0;
}
}
/**
* @param ExtendedCacheItemInterface $item
* @return ?array<string, mixed>
* @throws CouchbaseException
* @throws PhpfastcacheDriverCheckException
* @throws TimeoutException
*/
protected function driverRead(ExtendedCacheItemInterface $item): ?array
{
try {
$this->handleForkedProcess();
/**
* CouchbaseBucket::get() returns a GetResult interface
*/
return $this->decodeDocument((array) $this->getCollection()->get($item->getEncodedKey())->content());
} catch (DocumentNotFoundException) {
return null;
}
}
/**
* @param ExtendedCacheItemInterface ...$item
* @return array<array<string, mixed>>
* @throws PhpfastcacheDriverCheckException
* @noinspection PhpRedundantCatchClauseInspection
*/
protected function driverReadMultiple(ExtendedCacheItemInterface ...$items): array
{
try {
$results = [];
$this->handleForkedProcess();
/**
* CouchbaseBucket::get() returns a GetResult interface
*/
/** @var GetResult $document */
foreach ($this->getCollection()->getMulti($this->getKeys($items, true)) as $document) {
if (!$document->error()) {
$content = $document->content();
if ($content) {
$decodedDocument = $this->decodeDocument($content);
$results[$decodedDocument[ExtendedCacheItemPoolInterface::DRIVER_KEY_WRAPPER_INDEX]] = $this->decodeDocument($content);
}
}
}
return $results;
} catch (DocumentNotFoundException) {
return [];
}
}
/**
* @param ExtendedCacheItemInterface $item
* @return bool
* @throws PhpfastcacheInvalidArgumentException
* @throws PhpfastcacheLogicException
* @throws PhpfastcacheDriverCheckException
*/
protected function driverWrite(ExtendedCacheItemInterface $item): bool
{
$this->assertCacheItemType($item, Item::class);
try {
$this->handleForkedProcess();
$this->getCollection()->upsert(
$item->getEncodedKey(),
$this->encodeDocument($this->driverPreWrap($item)),
(new UpsertOptions())->expiry($item->getExpirationDate())
);
return true;
} catch (CouchbaseException) {
return false;
}
}
/**
* @param string $key
* @param string $encodedKey
* @return bool
* @throws PhpfastcacheDriverCheckException
*/
protected function driverDelete(string $key, string $encodedKey): bool
{
try {
$this->handleForkedProcess();
return $this->getCollection()->remove($encodedKey)->mutationToken() !== null;
} catch (DocumentNotFoundException) {
return true;
} catch (CouchbaseException) {
return false;
}
}
/**
* @param string[] $keys
* @return bool
* @throws PhpfastcacheDriverCheckException
* @throws PhpfastcacheLogicException
*/
protected function driverDeleteMultiple(array $keys): bool
{
try {
$this->handleForkedProcess();
$this->getCollection()->removeMulti(array_map(fn(string $key) => $this->getEncodedKey($key), $keys));
return true;
} catch (CouchbaseException) {
return false;
}
}
/**
* @return bool
* @throws PhpfastcacheDriverCheckException
* @throws PhpfastcacheUnsupportedMethodException
* @noinspection PhpRedundantCatchClauseInspection
*/
protected function driverClear(): bool
{
$this->handleForkedProcess();
if (!$this->instance->buckets()->getBucket($this->getConfig()->getBucketName())->flushEnabled()) {
if ($this->getConfig()->isFlushFailSilently()) {
return false;
}
throw new PhpfastcacheUnsupportedMethodException(
'Flushing operation is not enabled on your Bucket. See https://docs.couchbase.com/server/current/manage/manage-buckets/flush-bucket.html'
);
}
if (!$this->getConfig()->isAllowFlush()) {
if ($this->getConfig()->isFlushFailSilently()) {
return false;
}
throw new PhpfastcacheUnsupportedMethodException(
'Flushing operation is disabled in config'
);
}
try {
$this->instance->buckets()->flush($this->getConfig()->getBucketName());
return true;
} catch (CouchbaseException) {
if ($this->getConfig()->isFlushFailSilently()) {
return false;
}
throw new PhpfastcacheUnsupportedMethodException(
'Flushing operation is enabled, but you don\'t have permissions to flush'
);
}
}
/**
* @return DriverStatistic
* @throws \Exception
*/
public function getStats(): DriverStatistic
{
$this->handleForkedProcess();
/**
* Between SDK 2 and 3 we lost a lot of useful information :(
* @see https://docs.couchbase.com/java-sdk/current/project-docs/migrating-sdk-code-to-3.n.html#management-apis
*/
$info = $this->instance->diagnostics(\bin2hex(\random_bytes(16)));
return (new DriverStatistic())
->setSize(0)
->setRawData($info)
->setData(implode(', ', array_keys($this->itemInstances)))
->setInfo($info['sdk'] . "\n For more information see RawData.");
}
/**
* @return Collection
*/
public function getCollection(): Collection
{
return $this->collection;
}
/**
* @param Collection $collection
* @return Driver
*/
public function setCollection(Collection $collection): Driver
{
$this->collection = $collection;
return $this;
}
/**
* @return Scope
*/
public function getScope(): Scope
{
return $this->scope;
}
/**
* @param Scope $scope
* @return Driver
*/
public function setScope(Scope $scope): Driver
{
$this->scope = $scope;
return $this;
}
/**
* @return CouchbaseBucket
*/
protected function getBucket(): CouchbaseBucket
{
return $this->bucketInstance;
}
/**
* @param CouchbaseBucket $couchbaseBucket
*/
protected function setBucket(CouchbaseBucket $couchbaseBucket): void
{
$this->bucketInstance = $couchbaseBucket;
}
/**
* @param array<string, mixed> $data
* @return array<string, mixed>
*/
protected function encodeDocument(array $data): array
{
$data[ExtendedCacheItemPoolInterface::DRIVER_DATA_WRAPPER_INDEX] = $this->encode($data[ExtendedCacheItemPoolInterface::DRIVER_DATA_WRAPPER_INDEX]);
$data[ExtendedCacheItemPoolInterface::DRIVER_EDATE_WRAPPER_INDEX] = $data[ExtendedCacheItemPoolInterface::DRIVER_EDATE_WRAPPER_INDEX]
->format(\DateTimeInterface::ATOM);
if ($this->getConfig()->isItemDetailedDate()) {
$data[ExtendedCacheItemPoolInterface::DRIVER_CDATE_WRAPPER_INDEX] = $data[ExtendedCacheItemPoolInterface::DRIVER_CDATE_WRAPPER_INDEX]
->format(\DateTimeInterface::ATOM);
$data[ExtendedCacheItemPoolInterface::DRIVER_MDATE_WRAPPER_INDEX] = $data[ExtendedCacheItemPoolInterface::DRIVER_MDATE_WRAPPER_INDEX]
->format(\DateTimeInterface::ATOM);
}
return $data;
}
/**
* @param array<string, mixed> $data
* @return array<string, mixed>
*/
protected function decodeDocument(array $data): array
{
$data[ExtendedCacheItemPoolInterface::DRIVER_DATA_WRAPPER_INDEX] = $this->unserialize($data[ExtendedCacheItemPoolInterface::DRIVER_DATA_WRAPPER_INDEX]);
$data[ExtendedCacheItemPoolInterface::DRIVER_EDATE_WRAPPER_INDEX] = \DateTime::createFromFormat(
\DateTimeInterface::ATOM,
$data[ExtendedCacheItemPoolInterface::DRIVER_EDATE_WRAPPER_INDEX]
);
if ($this->getConfig()->isItemDetailedDate()) {
$data[ExtendedCacheItemPoolInterface::DRIVER_CDATE_WRAPPER_INDEX] = \DateTime::createFromFormat(
\DateTimeInterface::ATOM,
$data[ExtendedCacheItemPoolInterface::DRIVER_CDATE_WRAPPER_INDEX]
);
$data[ExtendedCacheItemPoolInterface::DRIVER_MDATE_WRAPPER_INDEX] = \DateTime::createFromFormat(
\DateTimeInterface::ATOM,
$data[ExtendedCacheItemPoolInterface::DRIVER_MDATE_WRAPPER_INDEX]
);
}
return $data;
}
}