123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982 |
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Composer\Autoload;
- use Composer\Config;
- use Composer\EventDispatcher\EventDispatcher;
- use Composer\Installer\InstallationManager;
- use Composer\IO\IOInterface;
- use Composer\Package\AliasPackage;
- use Composer\Package\PackageInterface;
- use Composer\Repository\InstalledRepositoryInterface;
- use Composer\Util\Filesystem;
- use Composer\Script\ScriptEvents;
- /**
- * @author Igor Wiedler <igor@wiedler.ch>
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class AutoloadGenerator
- {
- /**
- * @var EventDispatcher
- */
- private $eventDispatcher;
- /**
- * @var IOInterface
- */
- private $io;
- /**
- * @var bool
- */
- private $devMode = false;
- /**
- * @var bool
- */
- private $classMapAuthoritative = false;
- /**
- * @var bool
- */
- private $runScripts = false;
- public function __construct(EventDispatcher $eventDispatcher, IOInterface $io = null)
- {
- $this->eventDispatcher = $eventDispatcher;
- $this->io = $io;
- }
- public function setDevMode($devMode = true)
- {
- $this->devMode = (boolean) $devMode;
- }
- /**
- * Whether or not generated autoloader considers the class map
- * authoritative.
- *
- * @param bool $classMapAuthoritative
- */
- public function setClassMapAuthoritative($classMapAuthoritative)
- {
- $this->classMapAuthoritative = (boolean) $classMapAuthoritative;
- }
- /**
- * Set whether to run scripts or not
- *
- * @param bool $runScripts
- */
- public function setRunScripts($runScripts = true)
- {
- $this->runScripts = (boolean) $runScripts;
- }
- public function dump(Config $config, InstalledRepositoryInterface $localRepo, PackageInterface $mainPackage, InstallationManager $installationManager, $targetDir, $scanPsr0Packages = false, $suffix = '')
- {
- if ($this->classMapAuthoritative) {
- // Force scanPsr0Packages when classmap is authoritative
- $scanPsr0Packages = true;
- }
- if ($this->runScripts) {
- $this->eventDispatcher->dispatchScript(ScriptEvents::PRE_AUTOLOAD_DUMP, $this->devMode, array(), array(
- 'optimize' => (bool) $scanPsr0Packages,
- ));
- }
- $filesystem = new Filesystem();
- $filesystem->ensureDirectoryExists($config->get('vendor-dir'));
- // Do not remove double realpath() calls.
- // Fixes failing Windows realpath() implementation.
- // See https://bugs.php.net/bug.php?id=72738
- $basePath = $filesystem->normalizePath(realpath(realpath(getcwd())));
- $vendorPath = $filesystem->normalizePath(realpath(realpath($config->get('vendor-dir'))));
- $useGlobalIncludePath = (bool) $config->get('use-include-path');
- $prependAutoloader = $config->get('prepend-autoloader') === false ? 'false' : 'true';
- $targetDir = $vendorPath.'/'.$targetDir;
- $filesystem->ensureDirectoryExists($targetDir);
- $vendorPathCode = $filesystem->findShortestPathCode(realpath($targetDir), $vendorPath, true);
- $vendorPathCode52 = str_replace('__DIR__', 'dirname(__FILE__)', $vendorPathCode);
- $vendorPathToTargetDirCode = $filesystem->findShortestPathCode($vendorPath, realpath($targetDir), true);
- $appBaseDirCode = $filesystem->findShortestPathCode($vendorPath, $basePath, true);
- $appBaseDirCode = str_replace('__DIR__', '$vendorDir', $appBaseDirCode);
- $namespacesFile = <<<EOF
- <?php
- // autoload_namespaces.php @generated by Composer
- \$vendorDir = $vendorPathCode52;
- \$baseDir = $appBaseDirCode;
- return array(
- EOF;
- $psr4File = <<<EOF
- <?php
- // autoload_psr4.php @generated by Composer
- \$vendorDir = $vendorPathCode52;
- \$baseDir = $appBaseDirCode;
- return array(
- EOF;
- // Collect information from all packages.
- $packageMap = $this->buildPackageMap($installationManager, $mainPackage, $localRepo->getCanonicalPackages());
- $autoloads = $this->parseAutoloads($packageMap, $mainPackage);
- // Process the 'psr-0' base directories.
- foreach ($autoloads['psr-0'] as $namespace => $paths) {
- $exportedPaths = array();
- foreach ($paths as $path) {
- $exportedPaths[] = $this->getPathCode($filesystem, $basePath, $vendorPath, $path);
- }
- $exportedPrefix = var_export($namespace, true);
- $namespacesFile .= " $exportedPrefix => ";
- $namespacesFile .= "array(".implode(', ', $exportedPaths)."),\n";
- }
- $namespacesFile .= ");\n";
- // Process the 'psr-4' base directories.
- foreach ($autoloads['psr-4'] as $namespace => $paths) {
- $exportedPaths = array();
- foreach ($paths as $path) {
- $exportedPaths[] = $this->getPathCode($filesystem, $basePath, $vendorPath, $path);
- }
- $exportedPrefix = var_export($namespace, true);
- $psr4File .= " $exportedPrefix => ";
- $psr4File .= "array(".implode(', ', $exportedPaths)."),\n";
- }
- $psr4File .= ");\n";
- $classmapFile = <<<EOF
- <?php
- // autoload_classmap.php @generated by Composer
- \$vendorDir = $vendorPathCode52;
- \$baseDir = $appBaseDirCode;
- return array(
- EOF;
- // add custom psr-0 autoloading if the root package has a target dir
- $targetDirLoader = null;
- $mainAutoload = $mainPackage->getAutoload();
- if ($mainPackage->getTargetDir() && !empty($mainAutoload['psr-0'])) {
- $levels = count(explode('/', $filesystem->normalizePath($mainPackage->getTargetDir())));
- $prefixes = implode(', ', array_map(function ($prefix) {
- return var_export($prefix, true);
- }, array_keys($mainAutoload['psr-0'])));
- $baseDirFromTargetDirCode = $filesystem->findShortestPathCode($targetDir, $basePath, true);
- $targetDirLoader = <<<EOF
- public static function autoload(\$class)
- {
- \$dir = $baseDirFromTargetDirCode . '/';
- \$prefixes = array($prefixes);
- foreach (\$prefixes as \$prefix) {
- if (0 !== strpos(\$class, \$prefix)) {
- continue;
- }
- \$path = \$dir . implode('/', array_slice(explode('\\\\', \$class), $levels)).'.php';
- if (!\$path = stream_resolve_include_path(\$path)) {
- return false;
- }
- require \$path;
- return true;
- }
- }
- EOF;
- }
- $blacklist = null;
- if (!empty($autoloads['exclude-from-classmap'])) {
- $blacklist = '{(' . implode('|', $autoloads['exclude-from-classmap']) . ')}';
- }
- // flatten array
- $classMap = array();
- if ($scanPsr0Packages) {
- $namespacesToScan = array();
- // Scan the PSR-0/4 directories for class files, and add them to the class map
- foreach (array('psr-0', 'psr-4') as $psrType) {
- foreach ($autoloads[$psrType] as $namespace => $paths) {
- $namespacesToScan[$namespace][] = array('paths' => $paths, 'type' => $psrType);
- }
- }
- krsort($namespacesToScan);
- foreach ($namespacesToScan as $namespace => $groups) {
- foreach ($groups as $group) {
- $psrType = $group['type'];
- foreach ($group['paths'] as $dir) {
- $dir = $filesystem->normalizePath($filesystem->isAbsolutePath($dir) ? $dir : $basePath.'/'.$dir);
- if (!is_dir($dir)) {
- continue;
- }
- $namespaceFilter = $namespace === '' ? null : $namespace;
- $classMap = $this->addClassMapCode($filesystem, $basePath, $vendorPath, $dir, $blacklist, $namespaceFilter, $classMap);
- }
- }
- }
- }
- foreach ($autoloads['classmap'] as $dir) {
- $classMap = $this->addClassMapCode($filesystem, $basePath, $vendorPath, $dir, $blacklist, null, $classMap);
- }
- ksort($classMap);
- foreach ($classMap as $class => $code) {
- $classmapFile .= ' '.var_export($class, true).' => '.$code;
- }
- $classmapFile .= ");\n";
- if (!$suffix) {
- if (!$config->get('autoloader-suffix') && is_readable($vendorPath.'/autoload.php')) {
- $content = file_get_contents($vendorPath.'/autoload.php');
- if (preg_match('{ComposerAutoloaderInit([^:\s]+)::}', $content, $match)) {
- $suffix = $match[1];
- }
- }
- if (!$suffix) {
- $suffix = $config->get('autoloader-suffix') ?: md5(uniqid('', true));
- }
- }
- file_put_contents($targetDir.'/autoload_namespaces.php', $namespacesFile);
- file_put_contents($targetDir.'/autoload_psr4.php', $psr4File);
- file_put_contents($targetDir.'/autoload_classmap.php', $classmapFile);
- $includePathFilePath = $targetDir.'/include_paths.php';
- if ($includePathFileContents = $this->getIncludePathsFile($packageMap, $filesystem, $basePath, $vendorPath, $vendorPathCode52, $appBaseDirCode)) {
- file_put_contents($includePathFilePath, $includePathFileContents);
- } elseif (file_exists($includePathFilePath)) {
- unlink($includePathFilePath);
- }
- $includeFilesFilePath = $targetDir.'/autoload_files.php';
- if ($includeFilesFileContents = $this->getIncludeFilesFile($autoloads['files'], $filesystem, $basePath, $vendorPath, $vendorPathCode52, $appBaseDirCode)) {
- file_put_contents($includeFilesFilePath, $includeFilesFileContents);
- } elseif (file_exists($includeFilesFilePath)) {
- unlink($includeFilesFilePath);
- }
- file_put_contents($targetDir.'/autoload_static.php', $this->getStaticFile($suffix, $targetDir, $vendorPath, $basePath, $staticPhpVersion));
- file_put_contents($vendorPath.'/autoload.php', $this->getAutoloadFile($vendorPathToTargetDirCode, $suffix));
- file_put_contents($targetDir.'/autoload_real.php', $this->getAutoloadRealFile(true, (bool) $includePathFileContents, $targetDirLoader, (bool) $includeFilesFileContents, $vendorPathCode, $appBaseDirCode, $suffix, $useGlobalIncludePath, $prependAutoloader, $staticPhpVersion));
- $this->safeCopy(__DIR__.'/ClassLoader.php', $targetDir.'/ClassLoader.php');
- $this->safeCopy(__DIR__.'/../../../LICENSE', $targetDir.'/LICENSE');
- if ($this->runScripts) {
- $this->eventDispatcher->dispatchScript(ScriptEvents::POST_AUTOLOAD_DUMP, $this->devMode, array(), array(
- 'optimize' => (bool) $scanPsr0Packages,
- ));
- }
- }
- private function addClassMapCode($filesystem, $basePath, $vendorPath, $dir, $blacklist = null, $namespaceFilter = null, array $classMap = array())
- {
- foreach ($this->generateClassMap($dir, $blacklist, $namespaceFilter) as $class => $path) {
- $pathCode = $this->getPathCode($filesystem, $basePath, $vendorPath, $path).",\n";
- if (!isset($classMap[$class])) {
- $classMap[$class] = $pathCode;
- } elseif ($this->io && $classMap[$class] !== $pathCode && !preg_match('{/(test|fixture|example|stub)s?/}i', strtr($classMap[$class].' '.$path, '\\', '/'))) {
- $this->io->writeError(
- '<warning>Warning: Ambiguous class resolution, "'.$class.'"'.
- ' was found in both "'.str_replace(array('$vendorDir . \'', "',\n"), array($vendorPath, ''), $classMap[$class]).'" and "'.$path.'", the first will be used.</warning>'
- );
- }
- }
- return $classMap;
- }
- private function generateClassMap($dir, $blacklist = null, $namespaceFilter = null, $showAmbiguousWarning = true)
- {
- return ClassMapGenerator::createMap($dir, $blacklist, $showAmbiguousWarning ? $this->io : null, $namespaceFilter);
- }
- public function buildPackageMap(InstallationManager $installationManager, PackageInterface $mainPackage, array $packages)
- {
- // build package => install path map
- $packageMap = array(array($mainPackage, ''));
- foreach ($packages as $package) {
- if ($package instanceof AliasPackage) {
- continue;
- }
- $this->validatePackage($package);
- $packageMap[] = array(
- $package,
- $installationManager->getInstallPath($package),
- );
- }
- return $packageMap;
- }
- /**
- * @param PackageInterface $package
- *
- * @throws \InvalidArgumentException Throws an exception, if the package has illegal settings.
- */
- protected function validatePackage(PackageInterface $package)
- {
- $autoload = $package->getAutoload();
- if (!empty($autoload['psr-4']) && null !== $package->getTargetDir()) {
- $name = $package->getName();
- $package->getTargetDir();
- throw new \InvalidArgumentException("PSR-4 autoloading is incompatible with the target-dir property, remove the target-dir in package '$name'.");
- }
- if (!empty($autoload['psr-4'])) {
- foreach ($autoload['psr-4'] as $namespace => $dirs) {
- if ($namespace !== '' && '\\' !== substr($namespace, -1)) {
- throw new \InvalidArgumentException("psr-4 namespaces must end with a namespace separator, '$namespace' does not, use '$namespace\\'.");
- }
- }
- }
- }
- /**
- * Compiles an ordered list of namespace => path mappings
- *
- * @param array $packageMap array of array(package, installDir-relative-to-composer.json)
- * @param PackageInterface $mainPackage root package instance
- * @return array array('psr-0' => array('Ns\\Foo' => array('installDir')))
- */
- public function parseAutoloads(array $packageMap, PackageInterface $mainPackage)
- {
- $mainPackageMap = array_shift($packageMap);
- $sortedPackageMap = $this->sortPackageMap($packageMap);
- $sortedPackageMap[] = $mainPackageMap;
- array_unshift($packageMap, $mainPackageMap);
- $psr0 = $this->parseAutoloadsType($packageMap, 'psr-0', $mainPackage);
- $psr4 = $this->parseAutoloadsType($packageMap, 'psr-4', $mainPackage);
- $classmap = $this->parseAutoloadsType(array_reverse($sortedPackageMap), 'classmap', $mainPackage);
- $files = $this->parseAutoloadsType($sortedPackageMap, 'files', $mainPackage);
- $exclude = $this->parseAutoloadsType($sortedPackageMap, 'exclude-from-classmap', $mainPackage);
- krsort($psr0);
- krsort($psr4);
- return array(
- 'psr-0' => $psr0,
- 'psr-4' => $psr4,
- 'classmap' => $classmap,
- 'files' => $files,
- 'exclude-from-classmap' => $exclude,
- );
- }
- /**
- * Registers an autoloader based on an autoload map returned by parseAutoloads
- *
- * @param array $autoloads see parseAutoloads return value
- * @return ClassLoader
- */
- public function createLoader(array $autoloads)
- {
- $loader = new ClassLoader();
- if (isset($autoloads['psr-0'])) {
- foreach ($autoloads['psr-0'] as $namespace => $path) {
- $loader->add($namespace, $path);
- }
- }
- if (isset($autoloads['psr-4'])) {
- foreach ($autoloads['psr-4'] as $namespace => $path) {
- $loader->addPsr4($namespace, $path);
- }
- }
- if (isset($autoloads['classmap'])) {
- foreach ($autoloads['classmap'] as $dir) {
- try {
- $loader->addClassMap($this->generateClassMap($dir, null, null, false));
- } catch (\RuntimeException $e) {
- $this->io->writeError('<warning>'.$e->getMessage().'</warning>');
- }
- }
- }
- return $loader;
- }
- protected function getIncludePathsFile(array $packageMap, Filesystem $filesystem, $basePath, $vendorPath, $vendorPathCode, $appBaseDirCode)
- {
- $includePaths = array();
- foreach ($packageMap as $item) {
- list($package, $installPath) = $item;
- if (null !== $package->getTargetDir() && strlen($package->getTargetDir()) > 0) {
- $installPath = substr($installPath, 0, -strlen('/'.$package->getTargetDir()));
- }
- foreach ($package->getIncludePaths() as $includePath) {
- $includePath = trim($includePath, '/');
- $includePaths[] = empty($installPath) ? $includePath : $installPath.'/'.$includePath;
- }
- }
- if (!$includePaths) {
- return;
- }
- $includePathsCode = '';
- foreach ($includePaths as $path) {
- $includePathsCode .= " " . $this->getPathCode($filesystem, $basePath, $vendorPath, $path) . ",\n";
- }
- return <<<EOF
- <?php
- // include_paths.php @generated by Composer
- \$vendorDir = $vendorPathCode;
- \$baseDir = $appBaseDirCode;
- return array(
- $includePathsCode);
- EOF;
- }
- protected function getIncludeFilesFile(array $files, Filesystem $filesystem, $basePath, $vendorPath, $vendorPathCode, $appBaseDirCode)
- {
- $filesCode = '';
- foreach ($files as $fileIdentifier => $functionFile) {
- $filesCode .= ' ' . var_export($fileIdentifier, true) . ' => '
- . $this->getPathCode($filesystem, $basePath, $vendorPath, $functionFile) . ",\n";
- }
- if (!$filesCode) {
- return false;
- }
- return <<<EOF
- <?php
- // autoload_files.php @generated by Composer
- \$vendorDir = $vendorPathCode;
- \$baseDir = $appBaseDirCode;
- return array(
- $filesCode);
- EOF;
- }
- protected function getPathCode(Filesystem $filesystem, $basePath, $vendorPath, $path)
- {
- if (!$filesystem->isAbsolutePath($path)) {
- $path = $basePath . '/' . $path;
- }
- $path = $filesystem->normalizePath($path);
- $baseDir = '';
- if (strpos($path.'/', $vendorPath.'/') === 0) {
- $path = substr($path, strlen($vendorPath));
- $baseDir = '$vendorDir';
- if ($path !== false) {
- $baseDir .= " . ";
- }
- } else {
- $path = $filesystem->normalizePath($filesystem->findShortestPath($basePath, $path, true));
- if (!$filesystem->isAbsolutePath($path)) {
- $baseDir = '$baseDir . ';
- $path = '/' . $path;
- }
- }
- if (preg_match('/\.phar$/', $path)) {
- $baseDir = "'phar://' . " . $baseDir;
- }
- return $baseDir . (($path !== false) ? var_export($path, true) : "");
- }
- protected function getAutoloadFile($vendorPathToTargetDirCode, $suffix)
- {
- $lastChar = $vendorPathToTargetDirCode[strlen($vendorPathToTargetDirCode)-1];
- if ("'" === $lastChar || '"' === $lastChar) {
- $vendorPathToTargetDirCode = substr($vendorPathToTargetDirCode, 0, -1).'/autoload_real.php'.$lastChar;
- } else {
- $vendorPathToTargetDirCode .= " . '/autoload_real.php'";
- }
- return <<<AUTOLOAD
- <?php
- // autoload.php @generated by Composer
- require_once $vendorPathToTargetDirCode;
- return ComposerAutoloaderInit$suffix::getLoader();
- AUTOLOAD;
- }
- protected function getAutoloadRealFile($useClassMap, $useIncludePath, $targetDirLoader, $useIncludeFiles, $vendorPathCode, $appBaseDirCode, $suffix, $useGlobalIncludePath, $prependAutoloader, $staticPhpVersion = 70000)
- {
- $file = <<<HEADER
- <?php
- // autoload_real.php @generated by Composer
- class ComposerAutoloaderInit$suffix
- {
- private static \$loader;
- public static function loadClassLoader(\$class)
- {
- if ('Composer\\Autoload\\ClassLoader' === \$class) {
- require __DIR__ . '/ClassLoader.php';
- }
- }
- public static function getLoader()
- {
- if (null !== self::\$loader) {
- return self::\$loader;
- }
- spl_autoload_register(array('ComposerAutoloaderInit$suffix', 'loadClassLoader'), true, $prependAutoloader);
- self::\$loader = \$loader = new \\Composer\\Autoload\\ClassLoader();
- spl_autoload_unregister(array('ComposerAutoloaderInit$suffix', 'loadClassLoader'));
- HEADER;
- if ($useIncludePath) {
- $file .= <<<'INCLUDE_PATH'
- $includePaths = require __DIR__ . '/include_paths.php';
- array_push($includePaths, get_include_path());
- set_include_path(join(PATH_SEPARATOR, $includePaths));
- INCLUDE_PATH;
- }
- $file .= <<<STATIC_INIT
- \$useStaticLoader = PHP_VERSION_ID >= $staticPhpVersion && !defined('HHVM_VERSION');
- if (\$useStaticLoader) {
- require_once __DIR__ . '/autoload_static.php';
- call_user_func(\Composer\Autoload\ComposerStaticInit$suffix::getInitializer(\$loader));
- } else {
- STATIC_INIT;
- if (!$this->classMapAuthoritative) {
- $file .= <<<'PSR04'
- $map = require __DIR__ . '/autoload_namespaces.php';
- foreach ($map as $namespace => $path) {
- $loader->set($namespace, $path);
- }
- $map = require __DIR__ . '/autoload_psr4.php';
- foreach ($map as $namespace => $path) {
- $loader->setPsr4($namespace, $path);
- }
- PSR04;
- }
- if ($useClassMap) {
- $file .= <<<'CLASSMAP'
- $classMap = require __DIR__ . '/autoload_classmap.php';
- if ($classMap) {
- $loader->addClassMap($classMap);
- }
- CLASSMAP;
- }
- $file .= " }\n\n";
- if ($this->classMapAuthoritative) {
- $file .= <<<'CLASSMAPAUTHORITATIVE'
- $loader->setClassMapAuthoritative(true);
- CLASSMAPAUTHORITATIVE;
- }
- if ($useGlobalIncludePath) {
- $file .= <<<'INCLUDEPATH'
- $loader->setUseIncludePath(true);
- INCLUDEPATH;
- }
- if ($targetDirLoader) {
- $file .= <<<REGISTER_TARGET_DIR_AUTOLOAD
- spl_autoload_register(array('ComposerAutoloaderInit$suffix', 'autoload'), true, true);
- REGISTER_TARGET_DIR_AUTOLOAD;
- }
- $file .= <<<REGISTER_LOADER
- \$loader->register($prependAutoloader);
- REGISTER_LOADER;
- if ($useIncludeFiles) {
- $file .= <<<INCLUDE_FILES
- if (\$useStaticLoader) {
- \$includeFiles = Composer\Autoload\ComposerStaticInit$suffix::\$files;
- } else {
- \$includeFiles = require __DIR__ . '/autoload_files.php';
- }
- foreach (\$includeFiles as \$fileIdentifier => \$file) {
- composerRequire$suffix(\$fileIdentifier, \$file);
- }
- INCLUDE_FILES;
- }
- $file .= <<<METHOD_FOOTER
- return \$loader;
- }
- METHOD_FOOTER;
- $file .= $targetDirLoader;
- if ($useIncludeFiles) {
- return $file . <<<FOOTER
- }
- function composerRequire$suffix(\$fileIdentifier, \$file)
- {
- if (empty(\$GLOBALS['__composer_autoload_files'][\$fileIdentifier])) {
- require \$file;
- \$GLOBALS['__composer_autoload_files'][\$fileIdentifier] = true;
- }
- }
- FOOTER;
- }
- return $file . <<<FOOTER
- }
- FOOTER;
- }
- protected function getStaticFile($suffix, $targetDir, $vendorPath, $basePath, &$staticPhpVersion)
- {
- $staticPhpVersion = 50600;
- $file = <<<HEADER
- <?php
- // autoload_static.php @generated by Composer
- namespace Composer\Autoload;
- class ComposerStaticInit$suffix
- {
- HEADER;
- $loader = new ClassLoader();
- $map = require $targetDir . '/autoload_namespaces.php';
- foreach ($map as $namespace => $path) {
- $loader->set($namespace, $path);
- }
- $map = require $targetDir . '/autoload_psr4.php';
- foreach ($map as $namespace => $path) {
- $loader->setPsr4($namespace, $path);
- }
- $classMap = require $targetDir . '/autoload_classmap.php';
- if ($classMap) {
- $loader->addClassMap($classMap);
- }
- $filesystem = new Filesystem();
- $vendorPathCode = ' => ' . $filesystem->findShortestPathCode(realpath($targetDir), $vendorPath, true, true) . " . '/";
- $appBaseDirCode = ' => ' . $filesystem->findShortestPathCode(realpath($targetDir), $basePath, true, true) . " . '/";
- $absoluteVendorPathCode = ' => ' . substr(var_export(rtrim($vendorDir, '\\/') . '/', true), 0, -1);
- $absoluteAppBaseDirCode = ' => ' . substr(var_export(rtrim($baseDir, '\\/') . '/', true), 0, -1);
- $initializer = '';
- $prefix = "\0Composer\Autoload\ClassLoader\0";
- $prefixLen = strlen($prefix);
- if (file_exists($targetDir . '/autoload_files.php')) {
- $maps = array('files' => require $targetDir . '/autoload_files.php');
- } else {
- $maps = array();
- }
- foreach ((array) $loader as $prop => $value) {
- if ($value && 0 === strpos($prop, $prefix)) {
- $maps[substr($prop, $prefixLen)] = $value;
- }
- }
- foreach ($maps as $prop => $value) {
- if (count($value) > 32767) {
- // Static arrays are limited to 32767 values on PHP 5.6
- // See https://bugs.php.net/68057
- $staticPhpVersion = 70000;
- }
- $value = var_export($value, true);
- $value = str_replace($absoluteVendorPathCode, $vendorPathCode, $value);
- $value = str_replace($absoluteAppBaseDirCode, $appBaseDirCode, $value);
- $value = ltrim(preg_replace('/^ */m', ' $0$0', $value));
- $file .= sprintf(" public static $%s = %s;\n\n", $prop, $value);
- if ('files' !== $prop) {
- $initializer .= " \$loader->$prop = ComposerStaticInit$suffix::\$$prop;\n";
- }
- }
- return $file . <<<INITIALIZER
- public static function getInitializer(ClassLoader \$loader)
- {
- return \Closure::bind(function () use (\$loader) {
- $initializer
- }, null, ClassLoader::class);
- }
- }
- INITIALIZER;
- }
- protected function parseAutoloadsType(array $packageMap, $type, PackageInterface $mainPackage)
- {
- $autoloads = array();
- foreach ($packageMap as $item) {
- list($package, $installPath) = $item;
- $autoload = $package->getAutoload();
- if ($this->devMode && $package === $mainPackage) {
- $autoload = array_merge_recursive($autoload, $package->getDevAutoload());
- }
- // skip misconfigured packages
- if (!isset($autoload[$type]) || !is_array($autoload[$type])) {
- continue;
- }
- if (null !== $package->getTargetDir() && $package !== $mainPackage) {
- $installPath = substr($installPath, 0, -strlen('/'.$package->getTargetDir()));
- }
- foreach ($autoload[$type] as $namespace => $paths) {
- foreach ((array) $paths as $path) {
- if (($type === 'files' || $type === 'classmap' || $type === 'exclude-from-classmap') && $package->getTargetDir() && !is_readable($installPath.'/'.$path)) {
- // remove target-dir from file paths of the root package
- if ($package === $mainPackage) {
- $targetDir = str_replace('\\<dirsep\\>', '[\\\\/]', preg_quote(str_replace(array('/', '\\'), '<dirsep>', $package->getTargetDir())));
- $path = ltrim(preg_replace('{^'.$targetDir.'}', '', ltrim($path, '\\/')), '\\/');
- } else {
- // add target-dir from file paths that don't have it
- $path = $package->getTargetDir() . '/' . $path;
- }
- }
- if ($type === 'exclude-from-classmap') {
- // first escape user input
- $path = preg_replace('{/+}', '/', preg_quote(trim(strtr($path, '\\', '/'), '/')));
- // add support for wildcards * and **
- $path = str_replace('\\*\\*', '.+?', $path);
- $path = str_replace('\\*', '[^/]+?', $path);
- // add support for up-level relative paths
- $updir = null;
- $path = preg_replace_callback(
- '{^((?:(?:\\\\\\.){1,2}+/)+)}',
- function ($matches) use (&$updir) {
- if (isset($matches[1])) {
- // undo preg_quote for the matched string
- $updir = str_replace('\\.', '.', $matches[1]);
- }
- return '';
- },
- $path
- );
- if (empty($installPath)) {
- $installPath = strtr(getcwd(), '\\', '/');
- }
- $resolvedPath = realpath($installPath . '/' . $updir);
- $autoloads[] = preg_quote(strtr($resolvedPath, '\\', '/')) . '/' . $path;
- continue;
- }
- $relativePath = empty($installPath) ? (empty($path) ? '.' : $path) : $installPath.'/'.$path;
- if ($type === 'files') {
- $autoloads[$this->getFileIdentifier($package, $path)] = $relativePath;
- continue;
- } elseif ($type === 'classmap') {
- $autoloads[] = $relativePath;
- continue;
- }
- $autoloads[$namespace][] = $relativePath;
- }
- }
- }
- return $autoloads;
- }
- protected function getFileIdentifier(PackageInterface $package, $path)
- {
- return md5($package->getName() . ':' . $path);
- }
- /**
- * Sorts packages by dependency weight
- *
- * Packages of equal weight retain the original order
- *
- * @param array $packageMap
- * @return array
- */
- protected function sortPackageMap(array $packageMap)
- {
- $packages = array();
- $paths = array();
- $usageList = array();
- foreach ($packageMap as $item) {
- list($package, $path) = $item;
- $name = $package->getName();
- $packages[$name] = $package;
- $paths[$name] = $path;
- foreach (array_merge($package->getRequires(), $package->getDevRequires()) as $link) {
- $target = $link->getTarget();
- $usageList[$target][] = $name;
- }
- }
- $computing = array();
- $computed = array();
- $computeImportance = function ($name) use (&$computeImportance, &$computing, &$computed, $usageList) {
- // reusing computed importance
- if (isset($computed[$name])) {
- return $computed[$name];
- }
- // canceling circular dependency
- if (isset($computing[$name])) {
- return 0;
- }
- $computing[$name] = true;
- $weight = 0;
- if (isset($usageList[$name])) {
- foreach ($usageList[$name] as $user) {
- $weight -= 1 - $computeImportance($user);
- }
- }
- unset($computing[$name]);
- $computed[$name] = $weight;
- return $weight;
- };
- $weightList = array();
- foreach ($packages as $name => $package) {
- $weight = $computeImportance($name);
- $weightList[$name] = $weight;
- }
- $stable_sort = function (&$array) {
- static $transform, $restore;
- $i = 0;
- if (!$transform) {
- $transform = function (&$v, $k) use (&$i) {
- $v = array($v, ++$i, $k, $v);
- };
- $restore = function (&$v, $k) {
- $v = $v[3];
- };
- }
- array_walk($array, $transform);
- asort($array);
- array_walk($array, $restore);
- };
- $stable_sort($weightList);
- $sortedPackageMap = array();
- foreach (array_keys($weightList) as $name) {
- $sortedPackageMap[] = array($packages[$name], $paths[$name]);
- }
- return $sortedPackageMap;
- }
- /**
- * Copy file using stream_copy_to_stream to work around https://bugs.php.net/bug.php?id=6463
- *
- * @param string $source
- * @param string $target
- */
- protected function safeCopy($source, $target)
- {
- $source = fopen($source, 'r');
- $target = fopen($target, 'w+');
- stream_copy_to_stream($source, $target);
- fclose($source);
- fclose($target);
- }
- }
|