PHP Класс PDepend\Engine

The PDepend is a php port/adaption of the Java class file analyzer JDepend.
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$configuration PDepend\Util\Configuration The system configuration.

Открытые методы

Метод Описание
__construct ( PDepend\Util\Configuration $configuration, PDepend\Util\Cache\CacheFactory $cacheFactory, PDepend\Metrics\AnalyzerFactory $analyzerFactory ) Constructs a new php depend facade.
addDirectory ( string $directory ) : void Adds the specified directory to the list of directories to be analyzed.
addFile ( string $file ) : void Adds a single source code file to the list of files to be analysed.
addFileFilter ( PDepend\Input\Filter $filter ) : void Adds a new input/file filter.
addProcessListener ( pdepend\ProcessListener $listener ) : void Adds a process listener.
addReportGenerator ( PDepend\Report\ReportGenerator $generator ) : void Adds a logger to the output list.
analyze ( ) : PDepend\Source\AST\ASTNamespace[] Analyzes the registered directories and returns the collection of analyzed namespace.
countClasses ( ) : integer Returns the number of analyzed php classes and interfaces.
countNamespaces ( ) : integer Returns the number of analyzed namespaces.
getExceptions ( ) : PDepend\Source\Parser\ParserException[] Returns an array with all {@link \PDepend\Source\Parser\ParserException} that were caught during the parsing process.
getNamespace ( string $name ) : PDepend\Source\AST\ASTNamespace Returns the analyzed namespace for the given name.
getNamespaces ( ) : PDepend\Source\AST\ASTNamespace[] Returns an array with the analyzed namespace.
setCodeFilter ( PDepend\Source\AST\ASTArtifactList\ArtifactFilter $filter ) : void Sets an additional code filter. These filters could be used to hide external libraries and global stuff from the PDepend output.
setOptions ( array $options = [] ) : void Sets analyzer options.
setWithoutAnnotations ( ) : void Should the parse ignore doc comment annotations?

Защищенные методы

Метод Описание
fireEndAnalyzeProcess ( ) : void Sends the end analyzing process event.
fireEndFileParsing ( PDepend\Source\Tokenizer\Tokenizer $tokenizer ) : void Sends the end file parsing event.
fireEndLogProcess ( ) : void Sends the end log process event.
fireEndParseProcess ( PDepend\Source\Builder\Builder $builder ) : void Send the end parsing process event.
fireStartAnalyzeProcess ( ) : void Sends the start analyzing process event.
fireStartFileParsing ( PDepend\Source\Tokenizer\Tokenizer $tokenizer ) : void Sends the start file parsing event.
fireStartLogProcess ( ) : void Sends the start log process event.
fireStartParseProcess ( PDepend\Source\Builder\Builder $builder ) : void Send the start parsing process event.

Приватные методы

Метод Описание
createAnalyzers ( $options )
createFileIterator ( ) : Iterator This method will create an iterator instance which contains all files that are part of the parsing process.
performAnalyzeProcess ( ) : void This method performs the analysing process of the parsed source files. It creates the required analyzers for the registered listeners and then applies them to the source tree.
performParseProcess ( ) : void This method performs the parsing process of all source files. It expects that the $_builder property was initialized with a concrete builder implementation.

Описание методов

__construct() публичный Метод

Constructs a new php depend facade.
public __construct ( PDepend\Util\Configuration $configuration, PDepend\Util\Cache\CacheFactory $cacheFactory, PDepend\Metrics\AnalyzerFactory $analyzerFactory )
$configuration PDepend\Util\Configuration The system configuration.
$cacheFactory PDepend\Util\Cache\CacheFactory
$analyzerFactory PDepend\Metrics\AnalyzerFactory

addDirectory() публичный Метод

Adds the specified directory to the list of directories to be analyzed.
public addDirectory ( string $directory ) : void
$directory string The php source directory.
Результат void

addFile() публичный Метод

Adds a single source code file to the list of files to be analysed.
public addFile ( string $file ) : void
$file string The source file name.
Результат void

addFileFilter() публичный Метод

Adds a new input/file filter.
public addFileFilter ( PDepend\Input\Filter $filter ) : void
$filter PDepend\Input\Filter New input/file filter instance.
Результат void

addProcessListener() публичный Метод

Adds a process listener.
public addProcessListener ( pdepend\ProcessListener $listener ) : void
$listener pdepend\ProcessListener The listener instance.
Результат void

addReportGenerator() публичный Метод

Adds a logger to the output list.
public addReportGenerator ( PDepend\Report\ReportGenerator $generator ) : void
$generator PDepend\Report\ReportGenerator The logger instance.
Результат void

analyze() публичный Метод

Analyzes the registered directories and returns the collection of analyzed namespace.
public analyze ( ) : PDepend\Source\AST\ASTNamespace[]
Результат PDepend\Source\AST\ASTNamespace[]

countClasses() публичный Метод

Returns the number of analyzed php classes and interfaces.
public countClasses ( ) : integer
Результат integer

countNamespaces() публичный Метод

Returns the number of analyzed namespaces.
public countNamespaces ( ) : integer
Результат integer

fireEndAnalyzeProcess() защищенный Метод

Sends the end analyzing process event.
protected fireEndAnalyzeProcess ( ) : void
Результат void

fireEndFileParsing() защищенный Метод

Sends the end file parsing event.
protected fireEndFileParsing ( PDepend\Source\Tokenizer\Tokenizer $tokenizer ) : void
$tokenizer PDepend\Source\Tokenizer\Tokenizer
Результат void

fireEndLogProcess() защищенный Метод

Sends the end log process event.
protected fireEndLogProcess ( ) : void
Результат void

fireEndParseProcess() защищенный Метод

Send the end parsing process event.
protected fireEndParseProcess ( PDepend\Source\Builder\Builder $builder ) : void
$builder PDepend\Source\Builder\Builder The used node builder instance.
Результат void

fireStartAnalyzeProcess() защищенный Метод

Sends the start analyzing process event.
protected fireStartAnalyzeProcess ( ) : void
Результат void

fireStartFileParsing() защищенный Метод

Sends the start file parsing event.
protected fireStartFileParsing ( PDepend\Source\Tokenizer\Tokenizer $tokenizer ) : void
$tokenizer PDepend\Source\Tokenizer\Tokenizer
Результат void

fireStartLogProcess() защищенный Метод

Sends the start log process event.
protected fireStartLogProcess ( ) : void
Результат void

fireStartParseProcess() защищенный Метод

Send the start parsing process event.
protected fireStartParseProcess ( PDepend\Source\Builder\Builder $builder ) : void
$builder PDepend\Source\Builder\Builder The used node builder instance.
Результат void

getExceptions() публичный Метод

Returns an array with all {@link \PDepend\Source\Parser\ParserException} that were caught during the parsing process.
public getExceptions ( ) : PDepend\Source\Parser\ParserException[]
Результат PDepend\Source\Parser\ParserException[]

getNamespace() публичный Метод

Returns the analyzed namespace for the given name.
public getNamespace ( string $name ) : PDepend\Source\AST\ASTNamespace
$name string
Результат PDepend\Source\AST\ASTNamespace

getNamespaces() публичный Метод

Returns an array with the analyzed namespace.
public getNamespaces ( ) : PDepend\Source\AST\ASTNamespace[]
Результат PDepend\Source\AST\ASTNamespace[]

setCodeFilter() публичный Метод

Sets an additional code filter. These filters could be used to hide external libraries and global stuff from the PDepend output.
public setCodeFilter ( PDepend\Source\AST\ASTArtifactList\ArtifactFilter $filter ) : void
$filter PDepend\Source\AST\ASTArtifactList\ArtifactFilter
Результат void

setOptions() публичный Метод

Sets analyzer options.
public setOptions ( array $options = [] ) : void
$options array
Результат void

setWithoutAnnotations() публичный Метод

Should the parse ignore doc comment annotations?
public setWithoutAnnotations ( ) : void
Результат void

Описание свойств

$configuration защищенное свойство

The system configuration.
С версии: 0.10.0
protected Configuration,PDepend\Util $configuration
Результат PDepend\Util\Configuration