|
@@ -56,7 +56,7 @@ class Graph {
|
|
* TODO support base as a file instead of a directory.
|
|
* TODO support base as a file instead of a directory.
|
|
*
|
|
*
|
|
* @param string $base
|
|
* @param string $base
|
|
- * A starting path for file lookup.
|
|
+ * A starting path or array of paths for file lookup.
|
|
* @param array $blackList
|
|
* @param array $blackList
|
|
* An array of file names to reject, whatever their path.
|
|
* An array of file names to reject, whatever their path.
|
|
* @param string $pattern
|
|
* @param string $pattern
|
|
@@ -67,24 +67,25 @@ class Graph {
|
|
*/
|
|
*/
|
|
public function getFiles($base, $blackList = array(),
|
|
public function getFiles($base, $blackList = array(),
|
|
$pattern = '/.*\.(inc|module|php)$/') {
|
|
$pattern = '/.*\.(inc|module|php)$/') {
|
|
-
|
|
|
|
- $dir = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($base,
|
|
|
|
- \FilesystemIterator::KEY_AS_PATHNAME | \FilesystemIterator::SKIP_DOTS));
|
|
|
|
$files = array();
|
|
$files = array();
|
|
- while ($dir->valid()) {
|
|
+ foreach ($base as $start) {
|
|
- $name = $dir->key();
|
|
+ $dir = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($start,
|
|
- if (preg_match($pattern, $name) && !in_array(basename($name), $blackList)) {
|
|
+ \FilesystemIterator::KEY_AS_PATHNAME | \FilesystemIterator::SKIP_DOTS));
|
|
- $files[] = $name;
|
|
+ while ($dir->valid()) {
|
|
- }
|
|
+ $name = $dir->key();
|
|
- elseif ($this->logger->debugLevel >= LOG_INFO) {
|
|
+ if (preg_match($pattern, $name) && !in_array(basename($name), $blackList)) {
|
|
- if (in_array(basename($name), $blackList)) {
|
|
+ $files[] = $name;
|
|
- $this->debug("$name blacklisted.\n", LOG_INFO);
|
|
|
|
}
|
|
}
|
|
- else {
|
|
+ elseif ($this->logger->debugLevel >= LOG_INFO) {
|
|
- $this->debug("$name does not match source paths.\n", LOG_DEBUG);
|
|
+ if (in_array(basename($name), $blackList)) {
|
|
|
|
+ $this->debug("$name blacklisted.\n", LOG_INFO);
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ $this->debug("$name does not match source paths.\n", LOG_DEBUG);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+ $dir->next();
|
|
}
|
|
}
|
|
- $dir->next();
|
|
|
|
}
|
|
}
|
|
|
|
|
|
$files = array_unique($files);
|
|
$files = array_unique($files);
|