ConsoleOutputter::writeLog()   A
last analyzed

Complexity

Conditions 3
Paths 2

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 3

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 10
cc 3
nc 2
nop 1
crap 3
1
<?php
2
3
namespace WebStream\Log\Outputter;
4
5
/**
6
 * ConsoleOutputter
7
 * @author Ryuichi Tanaka
8
 * @since 2016/01/26
9
 * @version 0.7
10
 */
11
class ConsoleOutputter implements IOutputter, ILazyWriter
12
{
13
    /**
14
     * https://github.com/php/php-src/tree/master/sapi
15
     * PHP7以前のものは対応しない
16
     * @var array
17
     */
18
    private $sapis = [
19
        'apache2handler' => 'http',
20
        'cgi'            => 'http',
21
        'cli'            => 'console',
22
        'fpm'            => 'http',
23
        'embed'          => 'unsupported',
24
        'litespeed'      => 'unsupported',
25
        'phpdbg'         => 'unsupported',
26
        'tests'          => 'unsupported'
27
    ];
28
29
    /**
30
     * @var array<string> ログメッセージリスト
31
     */
32
    private array $logMessages;
33
34
    /**
35
     * @var int バッファリングサイズ
36
     */
37
    private int $bufferSize;
38
39
    /**
40
     * @var bool 遅延書き出しフラグ
41
     */
42
    private bool $isLazyWrite;
43
44
    /**
45
     * constructor
46 126
     * @param int $bufferSize
47
     */
48 126
    public function __construct($bufferSize = 1000)
49 126
    {
50 126
        $this->logMessages = [];
51 126
        $this->bufferSize = $bufferSize;
52
        $this->isLazyWrite = false;
53
    }
54
55
    /**
56
     * destructor
57
     */
58
    public function __destruct()
59
    {
60
        $this->writeLog(implode("", $this->logMessages));
61
    }
62
63
    /**
64 1
     * {@inheritdoc}
65
     */
66 1
    public function enableLazyWrite()
67 1
    {
68
        $this->isLazyWrite = true;
69
    }
70
71
    /**
72 2
     * {@inheritdoc}
73
     */
74 2
    public function enableDirectWrite()
75 2
    {
76 2
        $this->flush();
77
        $this->isLazyWrite = false;
78
    }
79
80
    /**
81 82
     * {@inheritdoc}
82
     */
83 82
    public function write(string $message)
84 1
    {
85
        if ($this->isLazyWrite) {
86
            if (count($this->logMessages) >= $this->bufferSize) {
87
                $this->flush();
88 1
                $this->clear();
89
            }
90 81
            $this->logMessages[] = $message;
91
        } else {
92 82
            $this->writeLog($message);
93
        }
94
    }
95
96
    /**
97 1
     * バッファをクリアする
98
     */
99 1
    private function clear()
100 1
    {
101
        $this->logMessages = [];
102
    }
103
104
    /**
105 2
     * バッファをログ出力する
106
     */
107 2
    private function flush()
108 1
    {
109 1
        if ($this->isLazyWrite && count($this->logMessages) > 0) {
110
            $this->writeLog(implode("", $this->logMessages));
111 2
            $this->clear();
112
        }
113
    }
114
115
    /**
116
     * ログファイルに書き出す
117 82
     * @param string $message ログメッセージ
118
     */
119 82
    private function writeLog(string $message)
120 82
    {
121 82
        $sapi = php_sapi_name();
122
        if (array_key_exists($sapi, $this->sapis) && $this->sapis[$sapi] === 'console') {
123 82
            echo $message;
124
        }
125
    }
126
}
127