Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
<?php
|
|
2 |
/**
|
|
3 |
* Utilise Mercurial from within Phing.
|
|
4 |
*
|
|
5 |
* PHP Version 5.4
|
|
6 |
*
|
|
7 |
* @category Tasks
|
|
8 |
* @package phing.tasks.ext
|
|
9 |
* @author Ken Guest <kguest@php.net>
|
|
10 |
* @license LGPL (see http://www.gnu.org/licenses/lgpl.html)
|
|
11 |
* @link https://github.com/kenguest/Phing-HG
|
|
12 |
*/
|
|
13 |
|
|
14 |
/**
|
|
15 |
* Integration/Wrapper for hg init
|
|
16 |
*
|
|
17 |
* @category Tasks
|
|
18 |
* @package phing.tasks.ext.hg
|
|
19 |
* @author Ken Guest <kguest@php.net>
|
|
20 |
* @license LGPL (see http://www.gnu.org/licenses/lgpl.html)
|
|
21 |
* @link HgInitTask.php
|
|
22 |
*/
|
|
23 |
class HgInitTask extends HgBaseTask |
|
24 |
{
|
|
25 |
/**
|
|
26 |
* Path to target directory
|
|
27 |
*
|
|
28 |
* @var string
|
|
29 |
*/
|
|
30 |
protected $targetPath; |
|
31 |
|
|
32 |
/**
|
|
33 |
* Set path to source repo
|
|
34 |
*
|
|
35 |
* @param string $targetPath Path to repository used as source
|
|
36 |
*
|
|
37 |
* @return void
|
|
38 |
*/
|
|
39 |
public function setTargetPath($targetPath) |
|
40 |
{
|
|
41 |
$this->targetPath = $targetPath; |
|
42 |
}
|
|
43 |
|
|
44 |
/**
|
|
45 |
* Main entry point for this task.
|
|
46 |
*
|
|
47 |
* @return void
|
|
48 |
*/
|
|
49 | 1 |
public function main() |
50 |
{
|
|
51 | 1 |
$clone = $this->getFactoryInstance('init'); |
52 | 1 |
$this->log('Initializing', Project::MSG_INFO); |
53 | 1 |
$clone->setQuiet($this->getQuiet()); |
54 | 1 |
$clone->setInsecure($this->getInsecure()); |
55 | 1 |
$cwd = getcwd(); |
56 | 1 |
if ($this->repository === '') { |
57 |
$project = $this->getProject(); |
|
58 |
$dir = $project->getProperty('application.startdir'); |
|
59 |
} else { |
|
60 | 1 |
$dir = $this->repository; |
61 |
}
|
|
62 | 1 |
if (!is_dir($dir)) { |
63 | 1 |
throw new BuildException("$dir is not a directory."); |
64 |
}
|
|
65 | 1 |
chdir($dir); |
66 |
try { |
|
67 | 1 |
$this->log("Executing: " . $clone->asString(), Project::MSG_INFO); |
68 | 1 |
$output = $clone->execute(); |
69 | 1 |
if ($output !== '') { |
70 |
$this->log($output); |
|
71 |
}
|
|
72 |
} catch (Exception $ex) { |
|
73 |
$msg = $ex->getMessage(); |
|
74 |
$p = strpos($msg, 'hg returned:'); |
|
75 |
if ($p !== false) { |
|
76 |
$msg = substr($msg, $p + 13); |
|
77 |
}
|
|
78 |
chdir($cwd); |
|
79 |
throw new BuildException($msg); |
|
80 |
}
|
|
81 | 1 |
chdir($cwd); |
82 |
}
|
|
83 |
}
|
Read our documentation on viewing source code .