-
Notifications
You must be signed in to change notification settings - Fork 0
/
HgInitTask.php
89 lines (83 loc) · 2.15 KB
/
HgInitTask.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/**
* Utilise Mercurial from within Phing.
*
* PHP Version 5.4
*
* @category Tasks
* @package phing.tasks.ext
* @author Ken Guest <[email protected]>
* @license LGPL (see http://www.gnu.org/licenses/lgpl.html)
* @link https://github.com/kenguest/Phing-HG
*/
namespace Phing\Task\Ext\Hg;
use Phing\Exception\BuildException;
use Phing\Project;
/**
* Integration/Wrapper for hg init
*
* @category Tasks
* @package phing.tasks.ext.hg
* @author Ken Guest <[email protected]>
* @license LGPL (see http://www.gnu.org/licenses/lgpl.html)
* @link HgInitTask.php
*/
class HgInitTask extends HgBaseTask
{
/**
* Path to target directory
*
* @var string
*/
protected $targetPath;
/**
* Set path to source repo
*
* @param string $targetPath Path to repository used as source
*
* @return void
*/
public function setTargetPath($targetPath)
{
$this->targetPath = $targetPath;
}
/**
* Main entry point for this task.
*
* @return void
*/
public function main()
{
$clone = $this->getFactoryInstance('init');
$this->log('Initializing', Project::MSG_INFO);
$clone->setQuiet($this->getQuiet());
$clone->setInsecure($this->getInsecure());
$cwd = getcwd();
if ($this->repository === '') {
$project = $this->getProject();
$dir = $project->getProperty('application.startdir');
} else {
$dir = $this->repository;
}
if (!is_dir($dir)) {
throw new BuildException("$dir is not a directory.");
}
chdir($dir);
try {
$this->log("Executing: " . $clone->asString(), Project::MSG_INFO);
$output = $clone->execute();
if ($output !== '') {
$this->log($output);
}
} catch (\Exception $ex) {
$msg = $ex->getMessage();
$p = strpos($msg, 'hg returned:');
if ($p !== false) {
$msg = substr($msg, $p + 13);
}
chdir($cwd);
throw new BuildException($msg);
}
chdir($cwd);
}
}