1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
5
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
6
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
7
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
8
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
9
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
10
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
11
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
12
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
13
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
14
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
15
|
|
|
* |
16
|
|
|
* This software consists of voluntary contributions made by many individuals |
17
|
|
|
* and is licensed under the LGPL. For more information please see |
18
|
|
|
* <http://phing.info>. |
19
|
|
|
*/ |
20
|
|
|
|
21
|
|
|
namespace Phing; |
22
|
|
|
|
23
|
|
|
use Error; |
24
|
|
|
use Exception; |
25
|
|
|
use Phing\Dispatch\DispatchUtils; |
26
|
|
|
use Phing\Exception\BuildException; |
27
|
|
|
use Phing\Listener\BuildEvent; |
28
|
|
|
use Phing\Listener\BuildListener; |
29
|
|
|
use Phing\Util\Register; |
30
|
|
|
use Phing\Util\RegisterSlot; |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* The base class for all Tasks. |
34
|
|
|
* |
35
|
|
|
* Use {@link Project#createTask} to register a new Task. |
36
|
|
|
* |
37
|
|
|
* @author Andreas Aderhold <[email protected]> |
38
|
|
|
* @copyright 2001,2002 THYRELL. All rights reserved |
39
|
|
|
* |
40
|
|
|
* @see Project#createTask() |
41
|
|
|
*/ |
42
|
|
|
abstract class Task extends ProjectComponent |
43
|
|
|
{ |
44
|
|
|
/** |
45
|
|
|
* Owning Target object. |
46
|
|
|
* |
47
|
|
|
* @var Target |
48
|
|
|
*/ |
49
|
|
|
protected $target; |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* Internal taskname (req). |
53
|
|
|
* |
54
|
|
|
* @var string |
55
|
|
|
*/ |
56
|
|
|
protected $taskType; |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* Taskname for logger. |
60
|
|
|
* |
61
|
|
|
* @var string |
62
|
|
|
*/ |
63
|
|
|
protected $taskName; |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* Wrapper of the task. |
67
|
|
|
* |
68
|
|
|
* @var RuntimeConfigurable |
69
|
|
|
*/ |
70
|
|
|
protected $wrapper; |
71
|
|
|
private $invalid; |
72
|
|
|
/** |
73
|
|
|
* Replacement element used if this task is invalidated. |
74
|
|
|
* |
75
|
|
|
* @var UnknownElement |
76
|
|
|
*/ |
77
|
|
|
private $replacement; |
78
|
|
|
|
79
|
|
|
/** |
80
|
|
|
* @return RuntimeConfigurable |
81
|
|
|
*/ |
82
|
|
|
public function getWrapper() |
83
|
|
|
{ |
84
|
|
|
return $this->wrapper; |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
/** |
88
|
|
|
* Provides a project level log event to the task. |
89
|
|
|
* |
90
|
|
|
* @param string $msg The message to log |
91
|
|
|
* @param int $level The priority of the message |
92
|
|
|
* |
93
|
|
|
* @see BuildEvent |
94
|
|
|
* @see BuildListener |
95
|
|
|
*/ |
96
|
|
|
public function log($msg, $level = Project::MSG_INFO, ?Exception $t = null) |
97
|
|
|
{ |
98
|
|
|
if (null !== $this->getProject()) { |
99
|
|
|
$this->getProject()->logObject($this, $msg, $level, $t); |
100
|
|
|
} else { |
101
|
|
|
parent::log($msg, $level); |
102
|
|
|
} |
103
|
|
|
} |
104
|
|
|
|
105
|
|
|
/** |
106
|
|
|
* Called by the parser to let the task initialize properly. |
107
|
|
|
* Should throw a BuildException if something goes wrong with the build. |
108
|
|
|
* |
109
|
|
|
* This is abstract here, but may not be overloaded by subclasses. |
110
|
|
|
* |
111
|
|
|
* @throws BuildException |
112
|
|
|
*/ |
113
|
|
|
public function init() |
114
|
|
|
{ |
115
|
|
|
} |
116
|
|
|
|
117
|
|
|
/** |
118
|
|
|
* Called by the project to let the task do it's work. This method may be |
119
|
|
|
* called more than once, if the task is invoked more than once. For |
120
|
|
|
* example, if target1 and target2 both depend on target3, then running |
121
|
|
|
* <em>phing target1 target2</em> will run all tasks in target3 twice. |
122
|
|
|
* |
123
|
|
|
* Should throw a BuildException if someting goes wrong with the build |
124
|
|
|
* |
125
|
|
|
* This is abstract here. Must be overloaded by real tasks. |
126
|
|
|
*/ |
127
|
|
|
abstract public function main(); |
128
|
|
|
|
129
|
|
|
/** |
130
|
|
|
* Returns the wrapper object for runtime configuration. |
131
|
|
|
* |
132
|
|
|
* @return RuntimeConfigurable The wrapper object used by this task |
133
|
|
|
*/ |
134
|
|
|
public function getRuntimeConfigurableWrapper() |
135
|
|
|
{ |
136
|
|
|
if (null === $this->wrapper) { |
137
|
|
|
$this->wrapper = new RuntimeConfigurable($this, $this->getTaskName()); |
138
|
|
|
} |
139
|
|
|
|
140
|
|
|
return $this->wrapper; |
141
|
|
|
} |
142
|
|
|
|
143
|
|
|
/** |
144
|
|
|
* Returns the name of task, used only for log messages. |
145
|
|
|
* |
146
|
|
|
* @return string Name of this task |
147
|
|
|
*/ |
148
|
|
|
public function getTaskName() |
149
|
|
|
{ |
150
|
|
|
if (null === $this->taskName) { |
151
|
|
|
// if no task name is set, then it's possible |
152
|
|
|
// this task was created from within another task. We don't |
153
|
|
|
// therefore know the XML tag name for this task, so we'll just |
154
|
|
|
// use the class name stripped of "task" suffix. This is only |
155
|
|
|
// for log messages, so we don't have to worry much about accuracy. |
156
|
|
|
return preg_replace('/task$/i', '', get_class($this)); |
157
|
|
|
} |
158
|
|
|
|
159
|
|
|
return $this->taskName; |
160
|
|
|
} |
161
|
|
|
|
162
|
|
|
/** |
163
|
|
|
* Sets the name of this task for log messages. |
164
|
|
|
* |
165
|
|
|
* @param string $name |
166
|
|
|
*/ |
167
|
|
|
public function setTaskName($name) |
168
|
|
|
{ |
169
|
|
|
$this->taskName = (string) $name; |
170
|
|
|
} |
171
|
|
|
|
172
|
|
|
/** |
173
|
|
|
* Marks this task as invalid. Any further use of this task |
174
|
|
|
* will go through a replacement with the updated definition. |
175
|
|
|
*/ |
176
|
|
|
public function markInvalid() |
177
|
|
|
{ |
178
|
|
|
$this->invalid = true; |
179
|
|
|
} |
180
|
|
|
|
181
|
|
|
/** |
182
|
|
|
* Perfrom this task. |
183
|
|
|
* |
184
|
|
|
* @throws BuildException |
185
|
|
|
* @throws Error |
186
|
|
|
*/ |
187
|
|
|
public function perform(): void |
188
|
|
|
{ |
189
|
|
|
if ($this->invalid) { |
190
|
|
|
$this->getReplacement()->getTask()->perform(); |
191
|
|
|
} else { |
192
|
|
|
$reason = null; |
193
|
|
|
|
194
|
|
|
try { // try executing task |
195
|
|
|
$this->project->fireTaskStarted($this); |
196
|
|
|
$this->maybeConfigure(); |
197
|
|
|
DispatchUtils::main($this); |
198
|
|
|
} catch (BuildException $ex) { |
199
|
|
|
$loc = $ex->getLocation(); |
200
|
|
|
if (null === $loc || '' === (string) $loc) { |
201
|
|
|
$ex->setLocation($this->getLocation()); |
202
|
|
|
} |
203
|
|
|
$reason = $ex; |
204
|
|
|
|
205
|
|
|
throw $ex; |
206
|
|
|
} catch (Exception $ex) { |
207
|
|
|
$reason = $ex; |
208
|
|
|
$be = new BuildException($ex); |
209
|
|
|
$be->setLocation($this->getLocation()); |
210
|
|
|
|
211
|
|
|
throw $be; |
212
|
|
|
} catch (Error $ex) { |
213
|
|
|
$reason = $ex; |
214
|
|
|
|
215
|
|
|
throw $ex; |
216
|
|
|
} finally { |
217
|
|
|
$this->project->fireTaskFinished($this, $reason); |
218
|
|
|
} |
219
|
|
|
} |
220
|
|
|
} |
221
|
|
|
|
222
|
|
|
/** |
223
|
|
|
* Configure this task if it hasn't been done already. |
224
|
|
|
*/ |
225
|
|
|
public function maybeConfigure() |
226
|
|
|
{ |
227
|
|
|
if ($this->invalid) { |
228
|
|
|
$this->getReplacement(); |
229
|
|
|
} elseif (null !== $this->wrapper) { |
230
|
|
|
$this->wrapper->maybeConfigure($this->project); |
231
|
|
|
} |
232
|
|
|
} |
233
|
|
|
|
234
|
|
|
/** |
235
|
|
|
* Force the task to be reconfigured from its RuntimeConfigurable. |
236
|
|
|
*/ |
237
|
|
|
public function reconfigure() |
238
|
|
|
{ |
239
|
|
|
if (null !== $this->wrapper) { |
240
|
|
|
$this->wrapper->reconfigure($this->getProject()); |
241
|
|
|
} |
242
|
|
|
} |
243
|
|
|
|
244
|
|
|
/** |
245
|
|
|
* Sets the owning target this task belongs to. |
246
|
|
|
* |
247
|
|
|
* @param Target Reference to owning target |
|
|
|
|
248
|
|
|
*/ |
249
|
|
|
public function setOwningTarget(Target $target): void |
250
|
|
|
{ |
251
|
|
|
$this->target = $target; |
252
|
|
|
} |
253
|
|
|
|
254
|
|
|
/** |
255
|
|
|
* Sets the wrapper object this task should use for runtime |
256
|
|
|
* configurable elements. |
257
|
|
|
* |
258
|
|
|
* @param RuntimeConfigurable $wrapper The wrapper object this task should use |
259
|
|
|
*/ |
260
|
|
|
public function setRuntimeConfigurableWrapper(RuntimeConfigurable $wrapper): void |
261
|
|
|
{ |
262
|
|
|
$this->wrapper = $wrapper; |
263
|
|
|
} |
264
|
|
|
|
265
|
|
|
/** |
266
|
|
|
* Bind a task to another; use this when configuring a newly created |
267
|
|
|
* task to do work on behalf of another. |
268
|
|
|
* Project, OwningTarget, TaskName, Location and Description are all copied. |
269
|
|
|
* |
270
|
|
|
* Important: this method does not call {@link Task#init()}. |
271
|
|
|
* If you are creating a task to delegate work to, call {@link Task#init()} |
272
|
|
|
* to initialize it. |
273
|
|
|
* |
274
|
|
|
* @param Task $owner owning target |
275
|
|
|
*/ |
276
|
|
|
public function bindToOwner(Task $owner): void |
277
|
|
|
{ |
278
|
|
|
$this->setProject($owner->getProject()); |
279
|
|
|
$this->setOwningTarget($owner->getOwningTarget()); |
280
|
|
|
$this->setTaskName($owner->getTaskName()); |
281
|
|
|
$this->setDescription($owner->getDescription()); |
282
|
|
|
$this->setLocation($owner->getLocation()); |
283
|
|
|
$this->setTaskType($owner->getTaskType()); |
284
|
|
|
} |
285
|
|
|
|
286
|
|
|
/** |
287
|
|
|
* Returns the owning target of this task. |
288
|
|
|
* |
289
|
|
|
* @return Target The target object that owns this task |
290
|
|
|
*/ |
291
|
|
|
public function getOwningTarget() |
292
|
|
|
{ |
293
|
|
|
return $this->target; |
294
|
|
|
} |
295
|
|
|
|
296
|
|
|
/** |
297
|
|
|
* Returns the name of the task under which it was invoked, |
298
|
|
|
* usually the XML tagname. |
299
|
|
|
* |
300
|
|
|
* @return string The type of this task (XML Tag) |
301
|
|
|
*/ |
302
|
|
|
public function getTaskType() |
303
|
|
|
{ |
304
|
|
|
return $this->taskType; |
305
|
|
|
} |
306
|
|
|
|
307
|
|
|
/** |
308
|
|
|
* Sets the type of the task. Usually this is the name of the XML tag. |
309
|
|
|
* |
310
|
|
|
* @param string $name The type of this task (XML Tag) |
311
|
|
|
*/ |
312
|
|
|
public function setTaskType($name) |
313
|
|
|
{ |
314
|
|
|
$this->taskType = (string) $name; |
315
|
|
|
} |
316
|
|
|
|
317
|
|
|
/** |
318
|
|
|
* Returns a name. |
319
|
|
|
* |
320
|
|
|
* @param string $slotName |
321
|
|
|
* |
322
|
|
|
* @return RegisterSlot |
323
|
|
|
*/ |
324
|
|
|
protected function getRegisterSlot($slotName) |
325
|
|
|
{ |
326
|
|
|
return Register::getSlot('task.' . $this->getTaskName() . '.' . $slotName); |
327
|
|
|
} |
328
|
|
|
|
329
|
|
|
/** |
330
|
|
|
* Has this task been marked invalid? |
331
|
|
|
* |
332
|
|
|
* @return bool true if this task is no longer valid. A new task should be |
333
|
|
|
* configured in this case. |
334
|
|
|
*/ |
335
|
|
|
protected function isInvalid() |
336
|
|
|
{ |
337
|
|
|
return $this->invalid; |
338
|
|
|
} |
339
|
|
|
|
340
|
|
|
private function getReplacement(): UnknownElement |
341
|
|
|
{ |
342
|
|
|
if (null === $this->replacement) { |
343
|
|
|
$this->replacement = new UnknownElement($this->taskType); |
344
|
|
|
$this->replacement->setProject($this->getProject()); |
345
|
|
|
$this->replacement->setTaskType($this->taskType); |
346
|
|
|
$this->replacement->setTaskName($this->taskName); |
347
|
|
|
$this->replacement->setLocation($this->getLocation()); |
348
|
|
|
$this->replacement->setOwningTarget($this->target); |
349
|
|
|
$this->replacement->setRuntimeConfigurableWrapper($this->wrapper); |
350
|
|
|
$this->wrapper->setProxy($this->replacement); |
351
|
|
|
$this->replaceChildren($this->wrapper, $this->replacement); |
352
|
|
|
$this->target->replaceChild($this, $this->replacement); |
353
|
|
|
$this->replacement->maybeConfigure(); |
354
|
|
|
} |
355
|
|
|
|
356
|
|
|
return $this->replacement; |
357
|
|
|
} |
358
|
|
|
|
359
|
|
|
/** |
360
|
|
|
* Recursively adds an UnknownElement instance for each child |
361
|
|
|
* element of replacement. |
362
|
|
|
*/ |
363
|
|
|
private function replaceChildren(RuntimeConfigurable $wrapper, UnknownElement $parentElement): void |
364
|
|
|
{ |
365
|
|
|
foreach ($wrapper->getChildren() as $childWrapper) { |
366
|
|
|
$childElement = new UnknownElement($childWrapper->getElementTag()); |
367
|
|
|
$parentElement->addChild($childElement); |
368
|
|
|
$childElement->setProject($this->getProject()); |
369
|
|
|
$childElement->setRuntimeConfigurableWrapper($childWrapper); |
370
|
|
|
$childWrapper->setProxy($childElement); |
371
|
|
|
$this->replaceChildren($childWrapper, $childElement); |
372
|
|
|
} |
373
|
|
|
} |
374
|
|
|
} |
375
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths