-
Notifications
You must be signed in to change notification settings - Fork 0
/
HgUpdateTask.php
137 lines (124 loc) · 2.88 KB
/
HgUpdateTask.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?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;
use Phing\Util\StringHelper;
/**
* Integration/Wrapper for hg update
*
* @category Tasks
* @package phing.tasks.ext.hg
* @author Ken Guest <[email protected]>
* @license LGPL (see http://www.gnu.org/licenses/lgpl.html)
* @link HgUpdateTask.php
*/
class HgUpdateTask extends HgBaseTask
{
/**
* Branch argument
*
* Defaults to 'default'
*
* @var string
*/
protected $branch = 'default';
/**
* Clean argument
*
* @var bool
*/
protected $clean = false;
/**
* Set 'clean' attribute.
*
* @param string $value Clean attribute value
*
* @return void
*/
public function setClean($value)
{
$this->clean = StringHelper::booleanValue($value);
}
/**
* Get 'clean' attribute.
*
* @return bool
*/
public function getClean()
{
return $this->clean;
}
/**
* Set branch attribute
*
* @param string $value Branch name
*
* @return void
*/
public function setBranch($value)
{
$this->branch = $value;
}
/**
* Get branch attribute
*
* @return string
*/
public function getBranch()
{
return $this->branch;
}
/**
* The main entry point method.
*
* @throws BuildException
* @return void
*/
public function main()
{
$pull = $this->getFactoryInstance('update');
try {
$pull->setBranch($this->getBranch());
} catch (\Exception $ex) {
$this->log("Caught: " . $ex->getMessage(), Project::MSG_DEBUG);
}
$pull->setClean($this->getClean());
$pull->setQuiet($this->getQuiet());
$cwd = getcwd();
if ($this->repository === '') {
$prog = $this->getProject();
$dir = $prog->getProperty('application.startdir');
} else {
$dir = $this->repository;
}
$this->checkRepositoryIsDirAndExists($dir);
chdir($dir);
try {
$this->log("Executing: " . $pull->asString(), Project::MSG_INFO);
$output = $pull->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);
}
}