-
Notifications
You must be signed in to change notification settings - Fork 0
/
HgArchiveTask.php
101 lines (91 loc) · 2.21 KB
/
HgArchiveTask.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
<?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 archive
*
* @category Tasks
* @package phing.tasks.ext.hg
* @author Ken Guest <[email protected]>
* @license LGPL (see http://www.gnu.org/licenses/lgpl.html)
* @link HgArchiveTask.php
*/
class HgArchiveTask extends HgBaseTask
{
/**
* Which revision to archive.
*
* @var string
*/
protected $revision = '';
/**
* Name of destination archive file.
*
* @var string
*/
protected $destination = null;
/**
* Set revision attribute
*
* @param string $revision Revision
*
* @return void
*/
public function setRevision($revision)
{
$this->revision = $revision;
}
/**
* Set Destination attribute
*
* @param string $destination Destination filename
*
* @return void
*/
public function setDestination($destination)
{
$this->destination = $destination;
}
/**
* The main entry point for the task.
*
* @return void
*/
public function main()
{
$clone = $this->getFactoryInstance('archive');
if ($this->revision !== '') {
$clone->setRev($this->revision);
}
if ($this->destination === null) {
throw new BuildException("Destination must be set.");
}
$clone->setDestination($this->destination);
try {
$this->log("Executing: " . $clone->asString(), Project::MSG_INFO);
$output = $clone->execute();
if ($output !== '') {
$this->log(PHP_EOL . $output);
}
} catch (\Exception $ex) {
$msg = $ex->getMessage();
$p = strpos($msg, 'hg returned:');
if ($p !== false) {
$msg = substr($msg, $p + 13);
}
throw new BuildException($msg);
}
}
}