-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIncludeResourceTask.php
144 lines (125 loc) · 3.39 KB
/
IncludeResourceTask.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
138
139
140
141
142
143
144
<?php
namespace TheBuild;
/**
* Copy or symlink a file or directory, depending on a flag.
*/
class IncludeResourceTask extends \Task {
/**
* Either 'symlink' or 'copy'.
*
* @var string
*/
protected $mode = 'symlink';
/**
* The source file or directory to include.
*
* @var \PhingFile
*/
protected $source;
/**
* The location to link the file to.
*
* @var \PhingFile
*/
protected $dest = NULL;
/**
* Whether to create relative symlinks.
*
* @var bool
*/
protected $relative = TRUE;
/**
* Init tasks.
*
* Inherits the mode from the project's includeresource.mode property. This
* can be overridden by setting the "mode" attribute.
*/
public function init() {
$mode = $this->getProject()->getProperty('includeresource.mode');
if (!is_null($mode)) {
$this->setMode($mode);
}
$relative = $this->getProject()->getProperty('includeresource.relative');
if (!is_null($relative)) {
$this->setRelative($relative);
}
}
/**
* Copy or link the resource.
*/
public function main() {
$this->validate();
// Remove existing destination first.
if ($this->dest->exists()) {
$this->log("Replacing existing resource '" . $this->dest->getPath() . "'");
if ($this->dest->delete(TRUE) === FALSE) {
throw new \BuildException("Failed to delete existing destination '$this->dest'");
}
}
// Link or copy the source artifact. @phpstan-ignore-next-line
$this->dest->getParentFile()->mkdirs();
if ($this->mode == 'copy') {
$this->log(sprintf("Copying '%s' to '%s'", $this->source->getPath(), $this->dest->getPath()));
$this->source->copyTo($this->dest);
}
else {
$this->log(sprintf("Linking '%s' to '%s'", $this->source->getPath(), $this->dest->getPath()));
/** @var \SymlinkTask $symlink_task */
$symlink_task = $this->project->createTask("symlink");
$symlink_task->setTarget($this->source->getPath());
$symlink_task->setLink($this->dest->getPath());
$symlink_task->setRelative($this->relative);
$symlink_task->main();
}
}
/**
* Verify that the required attributes are set.
*/
public function validate() {
if (!in_array($this->mode, ['symlink', 'copy'])) {
throw new \BuildException("mode attribute must be either 'symlink' or 'copy'", $this->location);
}
if (empty($this->source) || empty($this->dest)) {
throw new \BuildException("Both the 'source' and 'dest' attributes are required.");
}
}
/**
* Set the artifact mode.
*
* @param string $mode
* Use 'symlink' to link resources, and 'copy' to copy them.
*/
public function setMode(string $mode) {
$this->mode = $mode;
}
/**
* Set the source of the resource to include.
*
* @param \PhingFile $source
* Source file.
*/
public function setSource(\PhingFile $source) {
if (!$source->exists()) {
throw new \BuildException("resource '$source' is not available'");
}
$this->source = $source;
}
/**
* Set the destination for the resource.
*
* @param \PhingFile $dest
* File destination.
*/
public function setDest(\PhingFile $dest) {
$this->dest = $dest;
}
/**
* See SymlinkTask.
*
* @param bool $relative
* Whether to make relative symlinks.
*/
public function setRelative($relative) {
$this->relative = $relative;
}
}