123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- <?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\Package\Version;
- use Composer\Package\BasePackage;
- use Composer\Package\PackageInterface;
- use Composer\Package\Link;
- use Composer\Package\LinkConstraint\MultiConstraint;
- use Composer\Package\LinkConstraint\VersionConstraint;
- /**
- * Version parser
- *
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class VersionParser
- {
- private static $modifierRegex = '[._-]?(?:(stable|beta|b|RC|alpha|a|patch|pl|p)(?:[.-]?(\d+))?)?([.-]?dev)?';
- /**
- * Returns the stability of a version
- *
- * @param string $version
- * @return string
- */
- public static function parseStability($version)
- {
- $version = preg_replace('{#[a-f0-9]+$}i', '', $version);
- if ('dev-' === substr($version, 0, 4) || '-dev' === substr($version, -4)) {
- return 'dev';
- }
- preg_match('{'.self::$modifierRegex.'$}i', strtolower($version), $match);
- if (!empty($match[3])) {
- return 'dev';
- }
- if (!empty($match[1])) {
- if ('beta' === $match[1] || 'b' === $match[1]) {
- return 'beta';
- }
- if ('alpha' === $match[1] || 'a' === $match[1]) {
- return 'alpha';
- }
- if ('rc' === $match[1]) {
- return 'RC';
- }
- }
- return 'stable';
- }
- public static function normalizeStability($stability)
- {
- $stability = strtolower($stability);
- return $stability === 'rc' ? 'RC' : $stability;
- }
- public static function formatVersion(PackageInterface $package, $truncate = true)
- {
- if (!$package->isDev() || !in_array($package->getSourceType(), array('hg', 'git'))) {
- return $package->getPrettyVersion();
- }
- // if source reference is a sha1 hash -- truncate
- if ($truncate && strlen($package->getSourceReference()) === 40) {
- return $package->getPrettyVersion() . ' ' . substr($package->getSourceReference(), 0, 7);
- }
- return $package->getPrettyVersion() . ' ' . $package->getSourceReference();
- }
- /**
- * Normalizes a version string to be able to perform comparisons on it
- *
- * @param string $version
- * @param string $fullVersion optional complete version string to give more context
- * @return array
- */
- public function normalize($version, $fullVersion = null)
- {
- $version = trim($version);
- if (null === $fullVersion) {
- $fullVersion = $version;
- }
- // ignore aliases and just assume the alias is required instead of the source
- if (preg_match('{^([^,\s]+) +as +([^,\s]+)$}', $version, $match)) {
- $version = $match[1];
- }
- // match master-like branches
- if (preg_match('{^(?:dev-)?(?:master|trunk|default)$}i', $version)) {
- return '9999999-dev';
- }
- if ('dev-' === strtolower(substr($version, 0, 4))) {
- return 'dev-'.substr($version, 4);
- }
- // match classical versioning
- if (preg_match('{^v?(\d{1,3})(\.\d+)?(\.\d+)?(\.\d+)?'.self::$modifierRegex.'$}i', $version, $matches)) {
- $version = $matches[1]
- .(!empty($matches[2]) ? $matches[2] : '.0')
- .(!empty($matches[3]) ? $matches[3] : '.0')
- .(!empty($matches[4]) ? $matches[4] : '.0');
- $index = 5;
- } elseif (preg_match('{^v?(\d{4}(?:[.:-]?\d{2}){1,6}(?:[.:-]?\d{1,3})?)'.self::$modifierRegex.'$}i', $version, $matches)) { // match date-based versioning
- $version = preg_replace('{\D}', '-', $matches[1]);
- $index = 2;
- }
- // add version modifiers if a version was matched
- if (isset($index)) {
- if (!empty($matches[$index])) {
- if ('stable' === $matches[$index]) {
- return $version;
- }
- $version .= '-' . $this->expandStability($matches[$index]) . (!empty($matches[$index+1]) ? $matches[$index+1] : '');
- }
- if (!empty($matches[$index+2])) {
- $version .= '-dev';
- }
- return $version;
- }
- // match dev branches
- if (preg_match('{(.*?)[.-]?dev$}i', $version, $match)) {
- try {
- return $this->normalizeBranch($match[1]);
- } catch (\Exception $e) {}
- }
- $extraMessage = '';
- if (preg_match('{ +as +'.preg_quote($version).'$}', $fullVersion)) {
- $extraMessage = ' in "'.$fullVersion.'", the alias must be an exact version';
- } elseif (preg_match('{^'.preg_quote($version).' +as +}', $fullVersion)) {
- $extraMessage = ' in "'.$fullVersion.'", the alias source must be an exact version, if it is a branch name you should prefix it with dev-';
- }
- throw new \UnexpectedValueException('Invalid version string "'.$version.'"'.$extraMessage);
- }
- /**
- * Normalizes a branch name to be able to perform comparisons on it
- *
- * @param string $name
- * @return array
- */
- public function normalizeBranch($name)
- {
- $name = trim($name);
- if (in_array($name, array('master', 'trunk', 'default'))) {
- return $this->normalize($name);
- }
- if (preg_match('#^v?(\d+)(\.(?:\d+|[x*]))?(\.(?:\d+|[x*]))?(\.(?:\d+|[x*]))?$#i', $name, $matches)) {
- $version = '';
- for ($i = 1; $i < 5; $i++) {
- $version .= isset($matches[$i]) ? str_replace('*', 'x', $matches[$i]) : '.x';
- }
- return str_replace('x', '9999999', $version).'-dev';
- }
- return 'dev-'.$name;
- }
- /**
- * @param string $source source package name
- * @param string $sourceVersion source package version (pretty version ideally)
- * @param string $description link description (e.g. requires, replaces, ..)
- * @param array $links array of package name => constraint mappings
- * @return Link[]
- */
- public function parseLinks($source, $sourceVersion, $description, $links)
- {
- $res = array();
- foreach ($links as $target => $constraint) {
- if ('self.version' === $constraint) {
- $parsedConstraint = $this->parseConstraints($sourceVersion);
- } else {
- $parsedConstraint = $this->parseConstraints($constraint);
- }
- $res[strtolower($target)] = new Link($source, $target, $parsedConstraint, $description, $constraint);
- }
- return $res;
- }
- /**
- * Parses as constraint string into LinkConstraint objects
- *
- * @param string $constraints
- * @return \Composer\Package\LinkConstraint\LinkConstraintInterface
- */
- public function parseConstraints($constraints)
- {
- $prettyConstraint = $constraints;
- if (preg_match('{^([^,\s]*?)@('.implode('|', array_keys(BasePackage::$stabilities)).')$}i', $constraints, $match)) {
- $constraints = empty($match[1]) ? '*' : $match[1];
- }
- if (preg_match('{^(dev-[^,\s@]+?|[^,\s@]+?\.x-dev)#[a-f0-9]+$}i', $constraints, $match)) {
- $constraints = $match[1];
- }
- $constraints = preg_split('{\s*,\s*}', trim($constraints));
- if (count($constraints) > 1) {
- $constraintObjects = array();
- foreach ($constraints as $constraint) {
- $constraintObjects = array_merge($constraintObjects, $this->parseConstraint($constraint));
- }
- } else {
- $constraintObjects = $this->parseConstraint($constraints[0]);
- }
- if (1 === count($constraintObjects)) {
- $constraint = $constraintObjects[0];
- } else {
- $constraint = new MultiConstraint($constraintObjects);
- }
- $constraint->setPrettyString($prettyConstraint);
- return $constraint;
- }
- private function parseConstraint($constraint)
- {
- if (preg_match('{^([^,\s]+?)@('.implode('|', array_keys(BasePackage::$stabilities)).')$}i', $constraint, $match)) {
- $constraint = $match[1];
- if ($match[2] !== 'stable') {
- $stabilityModifier = $match[2];
- }
- }
- if (preg_match('{^[x*](\.[x*])*$}i', $constraint)) {
- return array();
- }
- if (preg_match('{^~(\d+)(?:\.(\d+))?(?:\.(\d+))?(?:\.(\d+))?'.self::$modifierRegex.'?$}i', $constraint, $matches)) {
- if (isset($matches[4]) && '' !== $matches[4]) {
- $highVersion = $matches[1] . '.' . $matches[2] . '.' . ($matches[3] + 1) . '.0-dev';
- $lowVersion = $matches[1] . '.' . $matches[2] . '.' . $matches[3]. '.' . $matches[4];
- } elseif (isset($matches[3]) && '' !== $matches[3]) {
- $highVersion = $matches[1] . '.' . ($matches[2] + 1) . '.0.0-dev';
- $lowVersion = $matches[1] . '.' . $matches[2] . '.' . $matches[3]. '.0';
- } else {
- $highVersion = ($matches[1] + 1) . '.0.0.0-dev';
- if (isset($matches[2]) && '' !== $matches[2]) {
- $lowVersion = $matches[1] . '.' . $matches[2] . '.0.0';
- } else {
- $lowVersion = $matches[1] . '.0.0.0';
- }
- }
- if (!empty($matches[5])) {
- $lowVersion .= '-' . $this->expandStability($matches[5]) . (!empty($matches[6]) ? $matches[6] : '');
- }
- if (!empty($matches[7])) {
- $lowVersion .= '-dev';
- }
- return array(
- new VersionConstraint('>=', $lowVersion),
- new VersionConstraint('<', $highVersion),
- );
- }
- // match wildcard constraints
- if (preg_match('{^(\d+)(?:\.(\d+))?(?:\.(\d+))?\.[x*]$}', $constraint, $matches)) {
- if (isset($matches[3])) {
- $highVersion = $matches[1] . '.' . $matches[2] . '.' . $matches[3] . '.9999999';
- if ($matches[3] === '0') {
- $lowVersion = $matches[1] . '.' . ($matches[2] - 1) . '.9999999.9999999';
- } else {
- $lowVersion = $matches[1] . '.' . $matches[2] . '.' . ($matches[3] - 1). '.9999999';
- }
- } elseif (isset($matches[2])) {
- $highVersion = $matches[1] . '.' . $matches[2] . '.9999999.9999999';
- if ($matches[2] === '0') {
- $lowVersion = ($matches[1] - 1) . '.9999999.9999999.9999999';
- } else {
- $lowVersion = $matches[1] . '.' . ($matches[2] - 1) . '.9999999.9999999';
- }
- } else {
- $highVersion = $matches[1] . '.9999999.9999999.9999999';
- if ($matches[1] === '0') {
- return array(new VersionConstraint('<', $highVersion));
- } else {
- $lowVersion = ($matches[1] - 1) . '.9999999.9999999.9999999';
- }
- }
- return array(
- new VersionConstraint('>', $lowVersion),
- new VersionConstraint('<', $highVersion),
- );
- }
- // match operators constraints
- if (preg_match('{^(<>|!=|>=?|<=?|==?)?\s*(.*)}', $constraint, $matches)) {
- try {
- $version = $this->normalize($matches[2]);
- if (!empty($stabilityModifier) && $this->parseStability($version) === 'stable') {
- $version .= '-' . $stabilityModifier;
- } elseif ('<' === $matches[1]) {
- if (!preg_match('/-stable$/', strtolower($matches[2]))) {
- $version .= '-dev';
- }
- }
- return array(new VersionConstraint($matches[1] ?: '=', $version));
- } catch (\Exception $e) { }
- }
- $message = 'Could not parse version constraint '.$constraint;
- if (isset($e)) {
- $message .= ': '.$e->getMessage();
- }
- throw new \UnexpectedValueException($message);
- }
- private function expandStability($stability)
- {
- $stability = strtolower($stability);
- switch ($stability) {
- case 'a':
- return 'alpha';
- case 'b':
- return 'beta';
- case 'p':
- case 'pl':
- return 'patch';
- case 'rc':
- return 'RC';
- default:
- return $stability;
- }
- }
- /**
- * Parses a name/version pairs and returns an array of pairs + the
- *
- * @param array $pairs a set of package/version pairs separated by ":", "=" or " "
- * @return array[] array of arrays containing a name and (if provided) a version
- */
- public function parseNameVersionPairs(array $pairs)
- {
- $pairs = array_values($pairs);
- $result = array();
- for ($i = 0; $i < count($pairs); $i++) {
- $pair = preg_replace('{^([^=: ]+)[=: ](.*)$}', '$1 $2', trim($pairs[$i]));
- if (false === strpos($pair, ' ') && isset($pairs[$i+1]) && false === strpos($pairs[$i+1], '/')) {
- $pair .= ' '.$pairs[$i+1];
- $i++;
- }
- if (strpos($pair, ' ')) {
- list($name, $version) = explode(" ", $pair, 2);
- $result[] = array('name' => $name, 'version' => $version);
- } else {
- $result[] = array('name' => $pair);
- }
- }
- return $result;
- }
- }
|