|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Robo\Log; |
|
4
|
|
|
|
|
5
|
|
|
use Robo\Result; |
|
6
|
|
|
use Robo\Contract\PrintedInterface; |
|
7
|
|
|
use Robo\Contract\ProgressIndicatorAwareInterface; |
|
8
|
|
|
use Robo\Contract\VerbosityThresholdInterface; |
|
9
|
|
|
use Robo\Common\ProgressIndicatorAwareTrait; |
|
10
|
|
|
use Psr\Log\LogLevel; |
|
11
|
|
|
use Psr\Log\LoggerAwareInterface; |
|
12
|
|
|
use Psr\Log\LoggerAwareTrait; |
|
13
|
|
|
use Consolidation\Log\ConsoleLogLevel; |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* Log the creation of Result objects. |
|
17
|
|
|
*/ |
|
18
|
|
|
class ResultPrinter implements LoggerAwareInterface, ProgressIndicatorAwareInterface |
|
19
|
|
|
{ |
|
20
|
|
|
use LoggerAwareTrait; |
|
21
|
|
|
use ProgressIndicatorAwareTrait; |
|
22
|
|
|
|
|
23
|
|
|
/** |
|
24
|
|
|
* Log the result of a Robo task. |
|
25
|
|
|
* |
|
26
|
|
|
* Returns 'true' if the message is printed, or false if it isn't. |
|
27
|
|
|
* |
|
28
|
|
|
* @param \Robo\Result $result |
|
29
|
|
|
* |
|
30
|
|
|
* @return null|bool |
|
31
|
|
|
*/ |
|
32
|
|
|
public function printResult(Result $result) |
|
33
|
|
|
{ |
|
34
|
|
|
$task = $result->getTask(); |
|
35
|
|
|
if ($task instanceof VerbosityThresholdInterface && !$task->verbosityMeetsThreshold()) { |
|
36
|
|
|
return; |
|
37
|
|
|
} |
|
38
|
|
|
if (!$result->wasSuccessful()) { |
|
39
|
|
|
return $this->printError($result); |
|
40
|
|
|
} else { |
|
41
|
|
|
return $this->printSuccess($result); |
|
42
|
|
|
} |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* Log that we are about to abort due to an error being encountered |
|
47
|
|
|
* in 'stop on fail' mode. |
|
48
|
|
|
* |
|
49
|
|
|
* @param \Robo\Result $result |
|
50
|
|
|
*/ |
|
51
|
|
|
public function printStopOnFail($result) |
|
52
|
|
|
{ |
|
53
|
|
|
$this->printMessage(LogLevel::NOTICE, 'Stopping on fail. Exiting....'); |
|
54
|
|
|
$this->printMessage(LogLevel::ERROR, 'Exit Code: {code}', ['code' => $result->getExitCode()]); |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* Log the result of a Robo task that returned an error. |
|
59
|
|
|
* |
|
60
|
|
|
* @param \Robo\Result $result |
|
61
|
|
|
* |
|
62
|
|
|
* @return bool |
|
63
|
|
|
*/ |
|
64
|
|
|
protected function printError(Result $result) |
|
65
|
|
|
{ |
|
66
|
|
|
$task = $result->getTask(); |
|
67
|
|
|
$context = $result->getContext() + ['timer-label' => 'Time', '_style' => []]; |
|
68
|
|
|
$context['_style']['message'] = ''; |
|
69
|
|
|
|
|
70
|
|
|
$printOutput = true; |
|
71
|
|
|
if ($task instanceof PrintedInterface) { |
|
72
|
|
|
$printOutput = !$task->getPrinted(); |
|
73
|
|
|
} |
|
74
|
|
|
if ($printOutput) { |
|
75
|
|
|
$this->printMessage(LogLevel::ERROR, "{message}", $context); |
|
76
|
|
|
} |
|
77
|
|
|
$this->printMessage(LogLevel::ERROR, 'Exit code {code}', $context); |
|
78
|
|
|
return true; |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
/** |
|
82
|
|
|
* Log the result of a Robo task that was successful. |
|
83
|
|
|
* |
|
84
|
|
|
* @param \Robo\Result $result |
|
85
|
|
|
* |
|
86
|
|
|
* @return bool |
|
87
|
|
|
*/ |
|
88
|
|
|
protected function printSuccess(Result $result) |
|
89
|
|
|
{ |
|
90
|
|
|
$task = $result->getTask(); |
|
|
|
|
|
|
91
|
|
|
$context = $result->getContext() + ['timer-label' => 'in']; |
|
92
|
|
|
$time = $result->getExecutionTime(); |
|
93
|
|
|
if ($time) { |
|
94
|
|
|
$this->printMessage(ConsoleLogLevel::SUCCESS, 'Done', $context); |
|
95
|
|
|
} |
|
96
|
|
|
return false; |
|
97
|
|
|
} |
|
98
|
|
|
|
|
99
|
|
|
/** |
|
100
|
|
|
* @param string $level |
|
101
|
|
|
* @param string $message |
|
102
|
|
|
* @param array $context |
|
103
|
|
|
*/ |
|
104
|
|
|
protected function printMessage($level, $message, $context = []) |
|
105
|
|
|
{ |
|
106
|
|
|
$inProgress = $this->hideProgressIndicator(); |
|
107
|
|
|
$this->logger->log($level, $message, $context); |
|
108
|
|
|
if ($inProgress) { |
|
109
|
|
|
$this->restoreProgressIndicator($inProgress); |
|
110
|
|
|
} |
|
111
|
|
|
} |
|
112
|
|
|
} |
|
113
|
|
|
|
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.