123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <?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\Config;
- use Composer\Repository\Vcs\HgDriver;
- use Composer\IO\NullIO;
- use Composer\Semver\VersionParser as SemverVersionParser;
- use Composer\Util\Git as GitUtil;
- use Composer\Util\ProcessExecutor;
- use Composer\Util\Svn as SvnUtil;
- /**
- * Try to guess the current version number based on different VCS configuration.
- *
- * @author Jordi Boggiano <j.boggiano@seld.be>
- * @author Samuel Roze <samuel.roze@gmail.com>
- */
- class VersionGuesser
- {
- /**
- * @var Config
- */
- private $config;
- /**
- * @var ProcessExecutor
- */
- private $process;
- /**
- * @var SemverVersionParser
- */
- private $versionParser;
- /**
- * @param Config $config
- * @param ProcessExecutor $process
- * @param SemverVersionParser $versionParser
- */
- public function __construct(Config $config, ProcessExecutor $process, SemverVersionParser $versionParser)
- {
- $this->config = $config;
- $this->process = $process;
- $this->versionParser = $versionParser;
- }
- /**
- * @param array $packageConfig
- * @param string $path Path to guess into
- */
- public function guessVersion(array $packageConfig, $path)
- {
- if (function_exists('proc_open')) {
- $version = $this->guessGitVersion($packageConfig, $path);
- if (null !== $version) {
- return $version;
- }
- $version = $this->guessHgVersion($packageConfig, $path);
- if (null !== $version) {
- return $version;
- }
- return $this->guessSvnVersion($packageConfig, $path);
- }
- }
- private function guessGitVersion(array $packageConfig, $path)
- {
- GitUtil::cleanEnv();
- // try to fetch current version from git tags
- if (0 === $this->process->execute('git describe --exact-match --tags', $output, $path)) {
- try {
- return $this->versionParser->normalize(trim($output));
- } catch (\Exception $e) {
- }
- }
- // try to fetch current version from git branch
- if (0 === $this->process->execute('git branch --no-color --no-abbrev -v', $output, $path)) {
- $branches = array();
- $isFeatureBranch = false;
- $version = null;
- // find current branch and collect all branch names
- foreach ($this->process->splitLines($output) as $branch) {
- if ($branch && preg_match('{^(?:\* ) *(\(no branch\)|\(detached from \S+\)|\S+) *([a-f0-9]+) .*$}', $branch, $match)) {
- if ($match[1] === '(no branch)' || substr($match[1], 0, 10) === '(detached ') {
- $version = 'dev-'.$match[2];
- $isFeatureBranch = true;
- } else {
- $version = $this->versionParser->normalizeBranch($match[1]);
- $isFeatureBranch = 0 === strpos($version, 'dev-');
- if ('9999999-dev' === $version) {
- $version = 'dev-'.$match[1];
- }
- }
- }
- if ($branch && !preg_match('{^ *[^/]+/HEAD }', $branch)) {
- if (preg_match('{^(?:\* )? *(\S+) *([a-f0-9]+) .*$}', $branch, $match)) {
- $branches[] = $match[1];
- }
- }
- }
- if (!$isFeatureBranch) {
- return $version;
- }
- // try to find the best (nearest) version branch to assume this feature's version
- $version = $this->guessFeatureVersion($packageConfig, $version, $branches, 'git rev-list %candidate%..%branch%', $path);
- return $version;
- }
- }
- private function guessHgVersion(array $packageConfig, $path)
- {
- // try to fetch current version from hg branch
- if (0 === $this->process->execute('hg branch', $output, $path)) {
- $branch = trim($output);
- $version = $this->versionParser->normalizeBranch($branch);
- $isFeatureBranch = 0 === strpos($version, 'dev-');
- if ('9999999-dev' === $version) {
- $version = 'dev-'.$branch;
- }
- if (!$isFeatureBranch) {
- return $version;
- }
- // re-use the HgDriver to fetch branches (this properly includes bookmarks)
- $driver = new HgDriver(array('url' => $path), new NullIO(), $this->config, $this->process);
- $branches = array_keys($driver->getBranches());
- // try to find the best (nearest) version branch to assume this feature's version
- $version = $this->guessFeatureVersion($packageConfig, $version, $branches, 'hg log -r "not ancestors(\'%candidate%\') and ancestors(\'%branch%\')" --template "{node}\\n"', $path);
- return $version;
- }
- }
- private function guessFeatureVersion(array $packageConfig, $version, array $branches, $scmCmdline, $path)
- {
- // ignore feature branches if they have no branch-alias or self.version is used
- // and find the branch they came from to use as a version instead
- if ((isset($packageConfig['extra']['branch-alias']) && !isset($packageConfig['extra']['branch-alias'][$version]))
- || strpos(json_encode($packageConfig), '"self.version"')
- ) {
- $branch = preg_replace('{^dev-}', '', $version);
- $length = PHP_INT_MAX;
- $nonFeatureBranches = '';
- if (!empty($packageConfig['non-feature-branches'])) {
- $nonFeatureBranches = implode('|', $packageConfig['non-feature-branches']);
- }
- foreach ($branches as $candidate) {
- // return directly, if branch is configured to be non-feature branch
- if ($candidate === $branch && preg_match('{^(' . $nonFeatureBranches . ')$}', $candidate)) {
- return $version;
- }
- // do not compare against other feature branches
- if ($candidate === $branch || !preg_match('{^(master|trunk|default|develop|\d+\..+)$}', $candidate, $match)) {
- continue;
- }
- $cmdLine = str_replace(array('%candidate%', '%branch%'), array($candidate, $branch), $scmCmdline);
- if (0 !== $this->process->execute($cmdLine, $output, $path)) {
- continue;
- }
- if (strlen($output) < $length) {
- $length = strlen($output);
- $version = $this->versionParser->normalizeBranch($candidate);
- if ('9999999-dev' === $version) {
- $version = 'dev-'.$match[1];
- }
- }
- }
- }
- return $version;
- }
- private function guessSvnVersion(array $packageConfig, $path)
- {
- SvnUtil::cleanEnv();
- // try to fetch current version from svn
- if (0 === $this->process->execute('svn info --xml', $output, $path)) {
- $trunkPath = isset($packageConfig['trunk-path']) ? preg_quote($packageConfig['trunk-path'], '#') : 'trunk';
- $branchesPath = isset($packageConfig['branches-path']) ? preg_quote($packageConfig['branches-path'], '#') : 'branches';
- $tagsPath = isset($packageConfig['tags-path']) ? preg_quote($packageConfig['tags-path'], '#') : 'tags';
- $urlPattern = '#<url>.*/('.$trunkPath.'|('.$branchesPath.'|'. $tagsPath .')/(.*))</url>#';
- if (preg_match($urlPattern, $output, $matches)) {
- if (isset($matches[2]) && ($branchesPath === $matches[2] || $tagsPath === $matches[2])) {
- // we are in a branches path
- $version = $this->versionParser->normalizeBranch($matches[3]);
- if ('9999999-dev' === $version) {
- $version = 'dev-'.$matches[3];
- }
- return $version;
- }
- return $this->versionParser->normalize(trim($matches[1]));
- }
- }
- }
- }
|