TYPO3  7.6
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
ExtractorRegistry Class Reference
Inheritance diagram for ExtractorRegistry:
SingletonInterface

Public Member Functions

 registerExtractionService ($className)
 
 getExtractorsWithDriverSupport ($driverType)
 

Static Public Member Functions

static getInstance ()
 

Protected Member Functions

 compareExtractorPriority (ExtractorInterface $extractorA, ExtractorInterface $extractorB)
 
 createExtractorInstance ($className)
 

Protected Attributes

 $extractors = array()
 
 $instances = null
 

Detailed Description

Registry for MetaData extraction Services

Definition at line 24 of file ExtractorRegistry.php.

Member Function Documentation

compareExtractorPriority ( ExtractorInterface  $extractorA,
ExtractorInterface  $extractorB 
)
protected

Compare the priority of two Extractor classes. Is used for sorting array of Extractor instances by priority. We want the result to be ordered from high to low so a higher priority comes before a lower.

Parameters
ExtractorInterface$extractorA
ExtractorInterface$extractorB
Returns
int -1 a > b, 0 a == b, 1 a < b

Definition at line 121 of file ExtractorRegistry.php.

References ExtractorInterface\getPriority().

createExtractorInstance (   $className)
protected

Create an instance of a Metadata Extractor

Parameters
string$className
Returns
ExtractorInterface

Definition at line 132 of file ExtractorRegistry.php.

References GeneralUtility\makeInstance().

getExtractorsWithDriverSupport (   $driverType)

Get Extractors which work for a special driver

Parameters
string$driverType
Returns
ExtractorInterface[]

Definition at line 96 of file ExtractorRegistry.php.

References elseif.

static getInstance ( )
static

Returns an instance of this class

Returns
ExtractorRegistry

Definition at line 44 of file ExtractorRegistry.php.

References GeneralUtility\makeInstance().

Referenced by Indexer\getExtractorRegistry().

registerExtractionService (   $className)

Allows to register MetaData extraction to the FAL Indexer

Parameters
string$className
Exceptions
\InvalidArgumentException

Definition at line 55 of file ExtractorRegistry.php.

References elseif.

Member Data Documentation

$extractors = array()
protected

Definition at line 30 of file ExtractorRegistry.php.

$instances = null
protected

Definition at line 37 of file ExtractorRegistry.php.