* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Fxp\Composer\AssetPlugin\Repository\Vcs; use Composer\Cache; use Composer\Repository\Vcs\HgDriver as BaseHgDriver; use Composer\Util\Filesystem; use Composer\Util\ProcessExecutor; /** * Mercurial vcs driver. * * @author François Pluchino */ class HgDriver extends BaseHgDriver { /** * @var Cache */ protected $cache; /** * {@inheritdoc} */ public function initialize() { parent::initialize(); $cacheUrl = Filesystem::isLocalPath($this->url) ? realpath($this->url) : $this->url; $this->cache = new Cache($this->io, $this->config->get('cache-repo-dir').'/'.preg_replace('{[^a-z0-9.]}i', '-', $cacheUrl)); } /** * {@inheritdoc} */ public function getComposerInformation($identifier) { $resource = sprintf('%s %s', ProcessExecutor::escape($identifier), $this->repoConfig['filename']); return ProcessUtil::getComposerInformation($this->cache, $this->infoCache, $this->repoConfig['asset-type'], $this->process, $identifier, $resource, sprintf('hg cat -r %s', $resource), sprintf('hg log --template "{date|rfc3339date}" -r %s', ProcessExecutor::escape($identifier)), $this->repoDir); } }