123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- <?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\Installer;
- use Composer\Package\PackageInterface;
- use Composer\Package\AliasPackage;
- use Composer\Repository\RepositoryInterface;
- use Composer\Repository\NotifiableRepositoryInterface;
- use Composer\Repository\InstalledRepositoryInterface;
- use Composer\DependencyResolver\Operation\OperationInterface;
- use Composer\DependencyResolver\Operation\InstallOperation;
- use Composer\DependencyResolver\Operation\UpdateOperation;
- use Composer\DependencyResolver\Operation\UninstallOperation;
- use Composer\DependencyResolver\Operation\MarkAliasInstalledOperation;
- use Composer\DependencyResolver\Operation\MarkAliasUninstalledOperation;
- use Composer\Util\Filesystem;
- /**
- * Package operation manager.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class InstallationManager
- {
- private $installers = array();
- private $cache = array();
- private $vendorPath;
- /**
- * Creates an instance of InstallationManager
- *
- * @param string $vendorDir Relative path to the vendor directory
- * @throws \InvalidArgumentException
- */
- public function __construct($vendorDir = 'vendor')
- {
- $fs = new Filesystem();
- if ($fs->isAbsolutePath($vendorDir)) {
- $basePath = getcwd();
- $relativePath = $fs->findShortestPath($basePath.'/file', $vendorDir);
- if ($fs->isAbsolutePath($relativePath)) {
- throw new \InvalidArgumentException("Vendor dir ($vendorDir) must be accessible from the directory ($basePath).");
- }
- $this->vendorPath = $relativePath;
- } else {
- $this->vendorPath = rtrim($vendorDir, '/');
- }
- }
- /**
- * Adds installer
- *
- * @param InstallerInterface $installer installer instance
- */
- public function addInstaller(InstallerInterface $installer)
- {
- array_unshift($this->installers, $installer);
- $this->cache = array();
- }
- /**
- * Returns installer for a specific package type.
- *
- * @param string $type package type
- *
- * @return InstallerInterface
- *
- * @throws InvalidArgumentException if installer for provided type is not registered
- */
- public function getInstaller($type)
- {
- $type = strtolower($type);
- if (isset($this->cache[$type])) {
- return $this->cache[$type];
- }
- foreach ($this->installers as $installer) {
- if ($installer->supports($type)) {
- return $this->cache[$type] = $installer;
- }
- }
- throw new \InvalidArgumentException('Unknown installer type: '.$type);
- }
- /**
- * Checks whether provided package is installed in one of the registered installers.
- *
- * @param InstalledRepositoryInterface $repo repository in which to check
- * @param PackageInterface $package package instance
- *
- * @return Boolean
- */
- public function isPackageInstalled(InstalledRepositoryInterface $repo, PackageInterface $package)
- {
- if ($package instanceof AliasPackage) {
- return $repo->hasPackage($package) && $this->isPackageInstalled($repo, $package->getAliasOf());
- }
- return $this->getInstaller($package->getType())->isInstalled($repo, $package);
- }
- /**
- * Executes solver operation.
- *
- * @param RepositoryInterface $repo repository in which to check
- * @param OperationInterface $operation operation instance
- */
- public function execute(RepositoryInterface $repo, OperationInterface $operation)
- {
- $method = $operation->getJobType();
- $this->$method($repo, $operation);
- }
- /**
- * Executes install operation.
- *
- * @param RepositoryInterface $repo repository in which to check
- * @param InstallOperation $operation operation instance
- */
- public function install(RepositoryInterface $repo, InstallOperation $operation)
- {
- $package = $operation->getPackage();
- $installer = $this->getInstaller($package->getType());
- $installer->install($repo, $package);
- $this->notifyInstall($package);
- }
- /**
- * Executes update operation.
- *
- * @param RepositoryInterface $repo repository in which to check
- * @param InstallOperation $operation operation instance
- */
- public function update(RepositoryInterface $repo, UpdateOperation $operation)
- {
- $initial = $operation->getInitialPackage();
- $target = $operation->getTargetPackage();
- $initialType = $initial->getType();
- $targetType = $target->getType();
- if ($initialType === $targetType) {
- $installer = $this->getInstaller($initialType);
- $installer->update($repo, $initial, $target);
- $this->notifyInstall($target);
- } else {
- $this->getInstaller($initialType)->uninstall($repo, $initial);
- $this->getInstaller($targetType)->install($repo, $target);
- }
- }
- /**
- * Uninstalls package.
- *
- * @param RepositoryInterface $repo repository in which to check
- * @param UninstallOperation $operation operation instance
- */
- public function uninstall(RepositoryInterface $repo, UninstallOperation $operation)
- {
- $package = $operation->getPackage();
- $installer = $this->getInstaller($package->getType());
- $installer->uninstall($repo, $package);
- }
- /**
- * Executes markAliasInstalled operation.
- *
- * @param RepositoryInterface $repo repository in which to check
- * @param MarkAliasInstalledOperation $operation operation instance
- */
- public function markAliasInstalled(RepositoryInterface $repo, MarkAliasInstalledOperation $operation)
- {
- $package = $operation->getPackage();
- if (!$repo->hasPackage($package)) {
- $repo->addPackage(clone $package);
- }
- }
- /**
- * Executes markAlias operation.
- *
- * @param RepositoryInterface $repo repository in which to check
- * @param MarkAliasUninstalledOperation $operation operation instance
- */
- public function markAliasUninstalled(RepositoryInterface $repo, MarkAliasUninstalledOperation $operation)
- {
- $package = $operation->getPackage();
- $repo->removePackage($package);
- }
- /**
- * Returns the installation path of a package
- *
- * @param PackageInterface $package
- * @return string path
- */
- public function getInstallPath(PackageInterface $package)
- {
- $installer = $this->getInstaller($package->getType());
- return $installer->getInstallPath($package);
- }
- /**
- * Returns the vendor path
- *
- * @param boolean $absolute Whether or not to return an absolute path
- * @return string path
- */
- public function getVendorPath($absolute = false)
- {
- if (!$absolute) {
- return $this->vendorPath;
- }
- return getcwd().DIRECTORY_SEPARATOR.$this->vendorPath;
- }
- private function notifyInstall(PackageInterface $package)
- {
- if ($package->getRepository() instanceof NotifiableRepositoryInterface) {
- $package->getRepository()->notifyInstall($package);
- }
- }
- }
|