-
-
Notifications
You must be signed in to change notification settings - Fork 456
/
Copy pathExtensionManager.php
81 lines (71 loc) · 2.42 KB
/
ExtensionManager.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
<?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) <[email protected]>
* @author Contributors https://github.com/PHPSocialNetwork/phpfastcache/graphs/contributors
*/
declare(strict_types=1);
namespace Phpfastcache;
use Phpfastcache\Exceptions\PhpfastcacheExtensionNotFoundException;
use Phpfastcache\Exceptions\PhpfastcacheInvalidArgumentException;
use Phpfastcache\Helper\UninstanciableObjectTrait;
/**
* @internal This extension manager is meant to manage officials Phpfastcache's extensions.
* @see \Phpfastcache\CacheManager::addCustomDriver() to add you own drivers.
*/
final class ExtensionManager
{
use UninstanciableObjectTrait;
public const KNOWN_EXTENSION_NAMES = [
'Arangodb',
'Couchbasev4',
'Couchdb',
'Dynamodb',
'Firestore',
'Mongodb',
'Ravendb',
'Solr'
];
/**
* @var array<string, string>
*/
protected static array $registeredExtensions = [];
public static function registerExtension(string $extensionName, string $driverClassName): void
{
if (!str_starts_with($driverClassName, ltrim('Phpfastcache\\Extensions\\', '\\'))) {
throw new PhpfastcacheInvalidArgumentException(
'Only extensions from "\\Phpfastcache\\Extensions\\" namespace are allowed. Use CacheManager::addCustomDriver() to create your own extensions.'
);
}
self::$registeredExtensions[$extensionName] = $driverClassName;
}
public static function extensionExists(string $extensionName): bool
{
return isset(self::$registeredExtensions[$extensionName]);
}
/**
* @param string $name
* @return string
* @throws PhpfastcacheExtensionNotFoundException
*/
public static function getExtension(string $name): string
{
if (isset(self::$registeredExtensions[$name])) {
return self::$registeredExtensions[$name];
} else {
throw new PhpfastcacheExtensionNotFoundException(
sprintf(
'Unable too find the %s extension. Make sure that you you added through composer: `composer require phpfastcache/%s-extension`',
$name,
strtolower($name)
)
);
}
}
}