/lib/Jelix/External/ClassMapGenerator.php
https://github.com/gmarrot/jelix · PHP · 154 lines · 95 code · 18 blank · 41 comment · 21 complexity · 444135e725e7fdc9e8310d12f1d1e016 MD5 · raw file
- <?php
- /*
- * This file is copied from Composer package, initially copied from the Symfony package
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- * @license MIT
- */
- namespace Jelix\External;
- /**
- * ClassMapGenerator
- *
- * @author Gyula Sallai <salla016@gmail.com>
- * @author Jordi Boggiano <j.boggiano@seld.be>
- * @contributor Laurent Jouanneau <laurent@jelix.org>
- */
- class ClassMapGenerator
- {
- /**
- * Iterate over all files in the given directory searching for classes
- *
- * @param \Iterator|string $path The path to search in or an iterator
- * @param string $whitelist Regex that matches against the file path
- *
- * @return array A class map array
- *
- * @throws \RuntimeException When the path is neither an existing file nor directory
- */
- public static function createMap($path, $whitelist = null)
- {
- if (is_string($path)) {
- if (is_file($path)) {
- $path = array(new \SplFileInfo($path));
- } elseif (is_dir($path)) {
- $iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path));
- $path = array();
- foreach($iterator as $k=>$item) {
- $ext = substr($item->getFilename(),-4);
- if ($ext == '.php' || $ext == '.inc') {
- $path[] = $item;
- }
- }
- } else {
- throw new \RuntimeException(
- 'Could not scan for classes inside "'.$path.
- '" which does not appear to be a file nor a folder'
- );
- }
- }
- $map = array();
- foreach ($path as $file) {
- $filePath = $file->getRealPath();
- if (!in_array(pathinfo($filePath, PATHINFO_EXTENSION), array('php', 'inc', 'hh'))) {
- continue;
- }
- if ($whitelist && !preg_match($whitelist, strtr($filePath, '\\', '/'))) {
- continue;
- }
- $classes = self::findClasses($filePath);
- foreach ($classes as $class) {
- if (!isset($map[$class])) {
- $map[$class] = $filePath;
- } elseif ($map[$class] !== $filePath && !preg_match('{/(test|fixture|example)s?/}i', strtr($map[$class].' '.$filePath, '\\', '/'))) {
- trigger_error(
- '<warning>Warning: Ambiguous class resolution, "'.$class.'"'.
- ' was found in both "'.$map[$class].'" and "'.$filePath.'", the first will be used.</warning>',
- E_USER_WARNING
- );
- }
- }
- }
- return $map;
- }
- /**
- * Extract the classes in the given file
- *
- * @param string $path The file to check
- * @throws \RuntimeException
- * @return array The found classes
- */
- private static function findClasses($path)
- {
- $traits = version_compare(PHP_VERSION, '5.4', '<') ? '' : '|trait';
- try {
- $contents = php_strip_whitespace($path);
- } catch (\Exception $e) {
- throw new \RuntimeException('Could not scan for classes inside '.$path.": \n".$e->getMessage(), 0, $e);
- }
- // return early if there is no chance of matching anything in this file
- if (!preg_match('{\b(?:class|interface'.$traits.')\s}i', $contents)) {
- return array();
- }
- // strip heredocs/nowdocs
- $contents = preg_replace('{<<<\'?(\w+)\'?(?:\r\n|\n|\r)(?:.*?)(?:\r\n|\n|\r)\\1(?=\r\n|\n|\r|;)}s', 'null', $contents);
- // strip strings
- $contents = preg_replace('{"[^"\\\\]*(\\\\.[^"\\\\]*)*"|\'[^\'\\\\]*(\\\\.[^\'\\\\]*)*\'}s', 'null', $contents);
- // strip leading non-php code if needed
- if (substr($contents, 0, 2) !== '<?') {
- $contents = preg_replace('{^.+?<\?}s', '<?', $contents, 1, $replacements);
- if ($replacements === 0) {
- return array();
- }
- }
- // strip non-php blocks in the file
- $contents = preg_replace('{\?>.+<\?}s', '?><?', $contents);
- // strip trailing non-php code if needed
- $pos = strrpos($contents, '?>');
- if (false !== $pos && false === strpos(substr($contents, $pos), '<?')) {
- $contents = substr($contents, 0, $pos);
- }
- preg_match_all('{
- (?:
- \b(?<![\$:>])(?P<type>class|interface'.$traits.') \s+ (?P<name>[a-zA-Z_\x7f-\xff:][a-zA-Z0-9_\x7f-\xff:]*)
- | \b(?<![\$:>])(?P<ns>namespace) (?P<nsname>\s+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(?:\s*\\\\\s*[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*)*)? \s*[\{;]
- )
- }ix', $contents, $matches);
- $classes = array();
- $namespace = '';
- for ($i = 0, $len = count($matches['type']); $i < $len; $i++) {
- if (!empty($matches['ns'][$i])) {
- $namespace = str_replace(array(' ', "\t", "\r", "\n"), '', $matches['nsname'][$i]) . '\\';
- } else {
- $name = $matches['name'][$i];
- if ($name[0] === ':') {
- // This is an XHP class, https://github.com/facebook/xhp
- $name = 'xhp'.substr(str_replace(array('-', ':'), array('_', '__'), $name), 1);
- }
- $classes[] = ltrim($namespace . $name, '\\');
- }
- }
- return $classes;
- }
- }