Page MenuHomePhorge

ArcanistMercurialWorkEngine.php
No OneTemporary

ArcanistMercurialWorkEngine.php

<?php
final class ArcanistMercurialWorkEngine
extends ArcanistWorkEngine {
protected function getDefaultStartSymbol() {
$api = $this->getRepositoryAPI();
return $api->getWorkingCopyRevision();
}
protected function newMarker($symbol, $start) {
$api = $this->getRepositoryAPI();
$log = $this->getLogEngine();
$log->writeStatus(
pht('NEW BOOKMARK'),
pht(
'Creating new bookmark "%s" from "%s".',
$symbol,
$start));
if ($start !== $this->getDefaultStartSymbol()) {
$future = $api->newFuture('update -- %s', $start);
$future->resolve();
}
$future = $api->newFuture('bookmark %s --', $symbol);
$future->resolve();
}
protected function moveToMarker(ArcanistMarkerRef $marker) {
$api = $this->getRepositoryAPI();
$log = $this->getLogEngine();
if ($marker->isBookmark()) {
$log->writeStatus(
pht('BOOKMARK'),
pht(
'Checking out bookmark "%s".',
$marker->getName()));
} else {
$log->writeStatus(
pht('BRANCH'),
pht(
'Checking out branch "%s".',
$marker->getName()));
}
$future = $api->newFuture(
'checkout %s --',
$marker->getName());
$future->resolve();
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Mar 24, 08:06 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1115312
Default Alt Text
ArcanistMercurialWorkEngine.php (1 KB)

Event Timeline