* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Package; use Composer\Json\JsonFile; use Composer\Repository\RepositoryManager; use Composer\Package\AliasPackage; /** * Reads/writes project lockfile (composer.lock). * * @author Konstantin Kudryashiv */ class Locker { private $lockFile; private $repositoryManager; private $hash; private $lockDataCache; /** * Initializes packages locker. * * @param JsonFile $lockFile lockfile loader * @param RepositoryManager $repositoryManager repository manager instance * @param string $hash unique hash of the current composer configuration */ public function __construct(JsonFile $lockFile, RepositoryManager $repositoryManager, $hash) { $this->lockFile = $lockFile; $this->repositoryManager = $repositoryManager; $this->hash = $hash; } /** * Checks whether locker were been locked (lockfile found). * * @param Boolean $dev true to check if dev packages are locked * @return Boolean */ public function isLocked($dev = false) { if (!$this->lockFile->exists()) { return false; } $data = $this->getLockData(); if ($dev) { return isset($data['packages-dev']); } return isset($data['packages']); } /** * Checks whether the lock file is still up to date with the current hash * * @return Boolean */ public function isFresh() { $lock = $this->lockFile->read(); return $this->hash === $lock['hash']; } /** * Searches and returns an array of locked packages, retrieved from registered repositories. * * @param Boolean $dev true to retrieve the locked dev packages * @return array */ public function getLockedPackages($dev = false) { $lockList = $this->getLockData(); $packages = array(); $lockedPackages = $dev ? $lockList['packages-dev'] : $lockList['packages']; $repo = $dev ? $this->repositoryManager->getLocalDevRepository() : $this->repositoryManager->getLocalRepository(); foreach ($lockedPackages as $info) { $resolvedVersion = !empty($info['alias']) ? $info['alias'] : $info['version']; $package = $repo->findPackage($info['package'], $resolvedVersion); if (!$package) { $package = $this->repositoryManager->findPackage($info['package'], $info['version']); if ($package && !empty($info['alias'])) { $alias = new AliasPackage($package, $info['alias'], $info['alias']); $package->getRepository()->addPackage($alias); $package = $alias; } } if (!$package) { throw new \LogicException(sprintf( 'Can not find "%s-%s" package in registered repositories', $info['package'], $info['version'] )); } $packages[] = $package; } return $packages; } public function getAliases() { $lockList = $this->getLockData(); return isset($lockList['aliases']) ? $lockList['aliases'] : array(); } public function getLockData() { if (!$this->lockFile->exists()) { throw new \LogicException('No lockfile found. Unable to read locked packages'); } if (null !== $this->lockDataCache) { return $this->lockDataCache; } return $this->lockDataCache = $this->lockFile->read(); } /** * Locks provided data into lockfile. * * @param array $packages array of packages * @param mixed $packages array of dev packages or null if installed without --dev * @param array $aliases array of aliases * * @return Boolean */ public function setLockData(array $packages, $devPackages, array $aliases) { $lock = array( 'hash' => $this->hash, 'packages' => null, 'packages-dev' => null, 'aliases' => $aliases, ); $lock['packages'] = $this->lockPackages($packages); if (null !== $devPackages) { $lock['packages-dev'] = $this->lockPackages($devPackages); } if (!$this->isLocked() || $lock !== $this->getLockData()) { $this->lockFile->write($lock); $this->lockDataCache = null; return true; } return false; } private function lockPackages(array $packages) { $locked = array(); foreach ($packages as $package) { if ($package instanceof AliasPackage) { $package = $package->getAliasOf(); } $name = $package->getPrettyName(); $version = $package->getPrettyVersion(); if (!$name || !$version) { throw new \LogicException(sprintf( 'Package "%s" has no version or name and can not be locked', $package )); } $spec = array('package' => $name, 'version' => $version); if ($package->isDev()) { $spec['source-reference'] = $package->getSourceReference(); } if ($package->getAlias() && $package->isInstalledAsAlias()) { $spec['alias'] = $package->getAlias(); } $locked[] = $spec; } usort($locked, function ($a, $b) { return strcmp($a['package'], $b['package']); }); return $locked; } }