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
<?php
declare(strict_types=1);
namespace Laminas\Log\Writer;
use Laminas\Log\Exception;
use Laminas\Log\Formatter\ChromePhp as ChromePhpFormatter;
use Laminas\Log\Logger;
use Laminas\Log\Writer\ChromePhp\ChromePhpBridge;
use Laminas\Log\Writer\ChromePhp\ChromePhpInterface;
use Traversable;
use function class_exists;
use function is_array;
use function iterator_to_array;
class ChromePhp extends AbstractWriter
{
/**
* The instance of ChromePhpInterface that is used to log messages to.
*
* @var ChromePhpInterface
*/
protected $chromephp;
/**
* Initializes a new instance of this class.
*
* @param null|ChromePhpInterface|array|Traversable $instance An instance of ChromePhpInterface
* that should be used for logging
*/
public function __construct($instance = null)
{
if ($instance instanceof Traversable) {
$instance = iterator_to_array($instance);
}
if (is_array($instance)) {
parent::__construct($instance);
$instance = $instance['instance'] ?? null;
}
if (! ($instance instanceof ChromePhpInterface || $instance === null)) {
throw new Exception\InvalidArgumentException(
'You must pass a valid Laminas\Log\Writer\ChromePhp\ChromePhpInterface'
);
}
$this->chromephp = $instance ?? $this->getChromePhp();
$this->formatter = new ChromePhpFormatter();
}
/**
* Write a message to the log.
*
* @param array $event event data
* @return void
*/
protected function doWrite(array $event)
{
$line = $this->formatter->format($event);
switch ($event['priority']) {
case Logger::EMERG:
case Logger::ALERT:
case Logger::CRIT:
case Logger::ERR:
$this->chromephp->error($line);
break;
case Logger::WARN:
$this->chromephp->warn($line);
break;
case Logger::NOTICE:
case Logger::INFO:
$this->chromephp->info($line);
break;
case Logger::DEBUG:
$this->chromephp->trace($line);
break;
default:
$this->chromephp->log($line);
break;
}
}
/**
* Gets the ChromePhpInterface instance that is used for logging.
*
* @return ChromePhpInterface
*/
public function getChromePhp()
{
// Remember: class names in strings are absolute; thus the class_exists
// here references the canonical name for the ChromePhp class
if (
! $this->chromephp instanceof ChromePhpInterface
&& class_exists('ChromePhp')
) {
$this->setChromePhp(new ChromePhpBridge());
}
return $this->chromephp;
}
/**
* Sets the ChromePhpInterface instance that is used for logging.
*
* @param ChromePhpInterface $instance The instance to set.
* @return ChromePhp
*/
public function setChromePhp(ChromePhpInterface $instance)
{
$this->chromephp = $instance;
return $this;
}
}