class AttributeClassDiscovery
Same name in this branch
- 11.x core/lib/Drupal/Core/Plugin/Discovery/AttributeClassDiscovery.php \Drupal\Core\Plugin\Discovery\AttributeClassDiscovery
Same name and namespace in other branches
- 10 core/lib/Drupal/Core/Plugin/Discovery/AttributeClassDiscovery.php \Drupal\Core\Plugin\Discovery\AttributeClassDiscovery
- 10 core/lib/Drupal/Component/Plugin/Discovery/AttributeClassDiscovery.php \Drupal\Component\Plugin\Discovery\AttributeClassDiscovery
Defines a discovery mechanism to find plugins with attributes.
Hierarchy
- class \Drupal\Component\Plugin\Discovery\AttributeClassDiscovery implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface uses \Drupal\Component\Plugin\Discovery\DiscoveryTrait
Expanded class hierarchy of AttributeClassDiscovery
4 files declare their use of AttributeClassDiscovery
- AttributeClassDiscovery.php in core/
lib/ Drupal/ Core/ Plugin/ Discovery/ AttributeClassDiscovery.php - AttributeClassDiscoveryCachedTest.php in core/
tests/ Drupal/ Tests/ Component/ Plugin/ Attribute/ AttributeClassDiscoveryCachedTest.php - AttributeClassDiscoveryTest.php in core/
tests/ Drupal/ Tests/ Component/ Plugin/ Attribute/ AttributeClassDiscoveryTest.php - AttributeDiscoveryWithAnnotationsAutomatedProviders.php in core/
modules/ migrate/ src/ Plugin/ Discovery/ AttributeDiscoveryWithAnnotationsAutomatedProviders.php
File
-
core/
lib/ Drupal/ Component/ Plugin/ Discovery/ AttributeClassDiscovery.php, line 14
Namespace
Drupal\Component\Plugin\DiscoveryView source
class AttributeClassDiscovery implements DiscoveryInterface {
use DiscoveryTrait;
/**
* The file cache object.
*/
protected FileCacheInterface $fileCache;
/**
* An array of classes to skip.
*
* This must be static because once a class has been autoloaded by PHP, it
* cannot be unregistered again.
*/
protected static array $skipClasses = [];
/**
* List of root namespaces abbreviated to two levels.
*
* This list of namespaces is derived from the namespaces to look for plugin
* implementations in, with each namespace in the list reduced to the first
* two levels only, such as "Drupal\Component". Checking class namespaces
* against this list provides a way to check that dependencies' classes exist
* without using the "*_exists()" functions, which loads every class into
* memory and can throw errors.
*
* @var list<string>
*/
protected readonly array $rootTwoLevelNamespaces;
/**
* Constructs a new instance.
*
* @param string[] $pluginNamespaces
* (optional) An array of namespace that may contain plugin implementations.
* Defaults to an empty array.
* @param string $pluginDefinitionAttributeName
* (optional) The name of the attribute that contains the plugin definition.
* Defaults to 'Drupal\Component\Plugin\Attribute\Plugin'.
*/
public function __construct(protected readonly array $pluginNamespaces = [], protected readonly string $pluginDefinitionAttributeName = Plugin::class) {
$file_cache_suffix = str_replace('\\', '_', $this->pluginDefinitionAttributeName);
$this->fileCache = FileCacheFactory::get('attribute_discovery:' . $this->getFileCacheSuffix($file_cache_suffix));
$this->rootTwoLevelNamespaces = array_unique(array_map(fn($namespace) => $this->getTwoLevelNamespace($namespace), array_keys($this->getPluginNamespaces())));
}
/**
* Gets the file cache suffix.
*
* This method allows classes that extend this class to add additional
* information to the file cache collection name.
*
* @param string $default_suffix
* The default file cache suffix.
*
* @return string
* The file cache suffix.
*/
protected function getFileCacheSuffix(string $default_suffix) : string {
return $default_suffix;
}
/**
* {@inheritdoc}
*/
public function getDefinitions() {
$definitions = [];
$autoloader = new MissingClassDetectionClassLoader();
spl_autoload_register([
$autoloader,
'loadClass',
]);
// Search for classes within all PSR-4 namespace locations.
foreach ($this->getPluginNamespaces() as $namespace => $dirs) {
foreach ($dirs as $dir) {
if (file_exists($dir)) {
$iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($dir, \RecursiveDirectoryIterator::SKIP_DOTS));
foreach ($iterator as $fileinfo) {
assert($fileinfo instanceof \SplFileInfo);
if ($fileinfo->getExtension() === 'php') {
if ($cached = $this->fileCache
->get($fileinfo->getPathName())) {
if (isset($cached['id'])) {
// Explicitly unserialize this to create a new object
// instance.
$dependencies = isset($cached['dependencies']) ? unserialize($cached['dependencies']) : [];
if (!$this->hasMissingDependencies($dependencies ?? [])) {
$definitions[$cached['id']] = unserialize($cached['content']);
}
}
continue;
}
$sub_path = $iterator->getSubIterator()
->getSubPath();
$sub_path = $sub_path ? str_replace(DIRECTORY_SEPARATOR, '\\', $sub_path) . '\\' : '';
$class = $namespace . '\\' . $sub_path . $fileinfo->getBasename('.php');
// Plugins may rely on Attribute classes defined by modules that
// are not installed. In such a case, a 'class not found' error
// may be thrown from reflection. However, this is an unavoidable
// situation with optional dependencies and plugins. Therefore,
// silently skip over this class and avoid writing to the cache,
// so that it is scanned each time. This ensures that the plugin
// definition will be found if the module it requires is
// enabled.
// PHP handles missing traits as an unrecoverable error.
// Register a special classloader that prevents a missing
// trait from causing an error. When it encounters a missing
// trait it stores that it was unable to find the trait.
// Because the classloader will result in the class being
// autoloaded we store an array of classes to skip if this
// method is called again.
// If discovery runs twice in a single request, first without
// the module that defines the missing trait, and second after it
// has been installed, we want the plugin to be discovered in the
// second case. Therefore, if a module has been added to skipped
// classes, check if the trait's namespace is available.
// If it is available, allow discovery.
// @todo a fix for this has been committed to PHP. Once that is
// available, attempt to make the class loader registration
// conditional on PHP version, then remove the logic entirely once
// Drupal requires PHP 8.5.
// @see https://github.com/php/php-src/issues/17959
// @see https://github.com/php/php-src/commit/8731c95b35f6838bacd12a07c50886e020aad5a6
if (array_key_exists($class, self::$skipClasses)) {
$missing_classes = self::$skipClasses[$class];
foreach ($missing_classes as $missing_class) {
$missing_class_namespace = $this->getTwoLevelNamespace($missing_class);
// If we arrive here a second time, and the namespace is still
// unavailable, ensure discovery is skipped. Without this
// explicit check for already checked classes, an invalid
// class would be discovered, because once we've detected a
// a missing trait and aliased the stub instead, this can't
// happen again, so the class appears valid. However, if the
// namespace has become available in the meantime, assume that
// the class actually should be discovered since this probably
// means the optional module it depends on has been enabled.
if (!in_array($missing_class_namespace, $this->rootTwoLevelNamespaces)) {
$autoloader->reset();
continue 2;
}
}
}
try {
$class_exists = class_exists($class, TRUE);
if (!$class_exists || \count($autoloader->getMissingTraits()) > 0) {
// @todo remove this workaround once PHP treats missing traits
// as catchable fatal errors.
if (\count($autoloader->getMissingTraits()) > 0) {
self::$skipClasses[$class] = $autoloader->getMissingTraits();
}
$autoloader->reset();
continue;
}
} catch (\Error $e) {
if (!$autoloader->hasMissingClass()) {
// @todo Add test coverage for unexpected Error exceptions in
// https://www.drupal.org/project/drupal/issues/3520811.
$autoloader->reset();
spl_autoload_unregister([
$autoloader,
'loadClass',
]);
throw $e;
}
$autoloader->reset();
continue;
}
$result = $this->parseClass($class, $fileinfo);
['id' => $id, 'content' => $content] = $result;
if ($id) {
if (!$this->hasMissingDependencies($result['dependencies'] ?? [])) {
$definitions[$id] = $content;
}
// Explicitly serialize this to create a new object instance.
if (!isset(self::$skipClasses[$class])) {
$this->fileCache
->set($fileinfo->getPathName(), [
'id' => $id,
'content' => serialize($content),
'dependencies' => serialize($result['dependencies'] ?? NULL),
]);
}
}
else {
// Store a NULL object, so that the file is not parsed again.
$this->fileCache
->set($fileinfo->getPathName(), [
NULL,
]);
}
}
}
}
}
}
spl_autoload_unregister([
$autoloader,
'loadClass',
]);
// Plugin discovery is a memory expensive process due to reflection and the
// number of files involved. Collect cycles at the end of discovery to be as
// efficient as possible.
gc_collect_cycles();
return $definitions;
}
/**
* Parses attributes from a class.
*
* @param class-string $class
* The class to parse.
* @param \SplFileInfo $fileinfo
* The SPL file information for the class.
*
* @return array
* An array with the keys 'id', 'content', and 'dependencies'. The 'id' is
* the plugin ID, 'content' is the plugin definition, and 'dependencies' is
* a list of class, interface or trait names in the plugin class hierarchy.
*
* @throws \ReflectionException
* @throws \Error
*/
protected function parseClass(string $class, \SplFileInfo $fileinfo) : array {
// @todo Consider performance improvements over using reflection.
// @see https://www.drupal.org/project/drupal/issues/3395260.
$reflection_class = new \ReflectionClass($class);
$id = $content = NULL;
if ($attributes = $reflection_class->getAttributes($this->pluginDefinitionAttributeName, \ReflectionAttribute::IS_INSTANCEOF)) {
/** @var \Drupal\Component\Plugin\Attribute\AttributeInterface $attribute */
$attribute = $attributes[0]->newInstance();
$this->prepareAttributeDefinition($attribute, $class);
if ($dependencies = $this->getClassDependencies($reflection_class)) {
// Include the dependencies in the plugin definition content in case
// plugins need to know about them.
$attribute->setDependencies($dependencies);
}
$id = $attribute->getId();
$content = $attribute->get();
}
return [
'id' => $id,
'content' => $content,
'dependencies' => $dependencies ?? NULL,
];
}
/**
* Prepares the attribute definition.
*
* @param \Drupal\Component\Plugin\Attribute\AttributeInterface $attribute
* The attribute derived from the plugin.
* @param string $class
* The class used for the plugin.
*/
protected function prepareAttributeDefinition(AttributeInterface $attribute, string $class) : void {
$attribute->setClass($class);
}
/**
* Gets an array of PSR-4 namespaces to search for plugin classes.
*
* @return string[][]
* An array of namespaces to search.
*/
protected function getPluginNamespaces() : array {
return $this->pluginNamespaces;
}
/**
* Gets a string containing the first two levels of a class name or namespace.
*
* @param string $namespace
* The class name or namespace.
*
* @return string
* A namespace string containing only two levels.
*/
protected function getTwoLevelNamespace(string $namespace) : string {
return implode('\\', array_slice(explode('\\', $namespace), 0, 2));
}
/**
* Gets the list of class, interface, and trait dependencies for the class.
*
* @param \ReflectionClass $reflection_class
* Plugin class reflection object.
*
* @return array{"class"?: list<class-string>, "interface"?: list<class-string>, "trait"?: list<class-string>, "provider"?: list<string>}|null
* The list of dependencies, keyed by type. If the type is 'class', 'trait',
* or 'interface', the values for the type are class names. If the type is
* 'provider', the values for the type are provider names. NULL if there are
* no dependencies.
*/
protected function getClassDependencies(\ReflectionClass $reflection_class) : ?array {
$dependencies = [];
if ($interfaces = $reflection_class->getInterfaceNames()) {
$dependencies['interface'] = $interfaces;
}
if ($traits = $reflection_class->getTraitNames()) {
$dependencies['trait'] = $traits;
}
$child_class = $reflection_class;
while ($parent_class = $child_class->getParentClass()) {
$dependencies['class'][] = $parent_class->getName();
if ($traits = $parent_class->getTraitNames()) {
$dependencies['trait'] ??= [];
$dependencies['trait'] = array_unique(array_merge($dependencies['trait'], $traits));
}
$child_class = $parent_class;
}
return $dependencies ?: NULL;
}
/**
* Whether the plugin definition has missing dependencies.
*
* @param array<class-string> $dependencies
* An array of dependencies' class names or namespaces, keyed by type.
*
* @return bool
* TRUE if any dependencies are missing. FALSE otherwise.
*/
protected function hasMissingDependencies(array $dependencies) : bool {
foreach ($dependencies as $type_dependencies) {
foreach ($type_dependencies as $dependency) {
$namespace = $this->getTwoLevelNamespace($dependency);
if (!str_starts_with($namespace, 'Drupal')) {
// Not checking non-Drupal dependencies.
continue;
}
if (!in_array($namespace, $this->rootTwoLevelNamespaces)) {
return TRUE;
}
}
}
return FALSE;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
AttributeClassDiscovery::$fileCache | protected | property | The file cache object. | ||
AttributeClassDiscovery::$rootTwoLevelNamespaces | protected | property | List of root namespaces abbreviated to two levels. | ||
AttributeClassDiscovery::$skipClasses | protected static | property | An array of classes to skip. | ||
AttributeClassDiscovery::getClassDependencies | protected | function | Gets the list of class, interface, and trait dependencies for the class. | 1 | |
AttributeClassDiscovery::getDefinitions | public | function | Gets the definition of all plugins for this type. | Overrides DiscoveryTrait::getDefinitions | 1 |
AttributeClassDiscovery::getFileCacheSuffix | protected | function | Gets the file cache suffix. | 1 | |
AttributeClassDiscovery::getPluginNamespaces | protected | function | Gets an array of PSR-4 namespaces to search for plugin classes. | 1 | |
AttributeClassDiscovery::getTwoLevelNamespace | protected | function | Gets a string containing the first two levels of a class name or namespace. | ||
AttributeClassDiscovery::hasMissingDependencies | protected | function | Whether the plugin definition has missing dependencies. | 1 | |
AttributeClassDiscovery::parseClass | protected | function | Parses attributes from a class. | 1 | |
AttributeClassDiscovery::prepareAttributeDefinition | protected | function | Prepares the attribute definition. | 1 | |
AttributeClassDiscovery::__construct | public | function | Constructs a new instance. | 1 | |
DiscoveryTrait::doGetDefinition | protected | function | Gets a specific plugin definition. | ||
DiscoveryTrait::getDefinition | public | function | 3 | ||
DiscoveryTrait::hasDefinition | public | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.