Iterator.php in Zircon Profile 8
File
vendor/phpunit/php-file-iterator/src/Iterator.php
View source
<?php
class File_Iterator extends FilterIterator {
const PREFIX = 0;
const SUFFIX = 1;
protected $suffixes = array();
protected $prefixes = array();
protected $exclude = array();
protected $basepath;
public function __construct(Iterator $iterator, array $suffixes = array(), array $prefixes = array(), array $exclude = array(), $basepath = NULL) {
$exclude = array_filter(array_map('realpath', $exclude));
if ($basepath !== NULL) {
$basepath = realpath($basepath);
}
if ($basepath === FALSE) {
$basepath = NULL;
}
else {
foreach ($exclude as &$_exclude) {
$_exclude = str_replace($basepath, '', $_exclude);
}
}
$this->prefixes = $prefixes;
$this->suffixes = $suffixes;
$this->exclude = $exclude;
$this->basepath = $basepath;
parent::__construct($iterator);
}
public function accept() {
$current = $this
->getInnerIterator()
->current();
$filename = $current
->getFilename();
$realpath = $current
->getRealPath();
if ($this->basepath !== NULL) {
$realpath = str_replace($this->basepath, '', $realpath);
}
if (preg_match('=/\\.[^/]*/=', $realpath)) {
return FALSE;
}
return $this
->acceptPath($realpath) && $this
->acceptPrefix($filename) && $this
->acceptSuffix($filename);
}
protected function acceptPath($path) {
foreach ($this->exclude as $exclude) {
if (strpos($path, $exclude) === 0) {
return FALSE;
}
}
return TRUE;
}
protected function acceptPrefix($filename) {
return $this
->acceptSubString($filename, $this->prefixes, self::PREFIX);
}
protected function acceptSuffix($filename) {
return $this
->acceptSubString($filename, $this->suffixes, self::SUFFIX);
}
protected function acceptSubString($filename, array $subStrings, $type) {
if (empty($subStrings)) {
return TRUE;
}
$matched = FALSE;
foreach ($subStrings as $string) {
if ($type == self::PREFIX && strpos($filename, $string) === 0 || $type == self::SUFFIX && substr($filename, -1 * strlen($string)) == $string) {
$matched = TRUE;
break;
}
}
return $matched;
}
}
Classes
Name |
Description |
File_Iterator |
FilterIterator implementation that filters files based on prefix(es) and/or
suffix(es). Hidden files and files from hidden directories are also filtered. |