LoggerAppenderSocket.php
6.01 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<?php
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @package log4php
*/
/**
* Serialize events and send them to a network socket.
*
* This appender can be configured by changing the following attributes:
*
* - locationInfo - Sets the location info for the xml layout (true or false)
* - log4jNamespace - Sets the namespace for log4j (true or false)
* - port - Sets the port of the socket.
* - remoteHost - Sets the remote host
* - timeout - Sets the timeout in ms
* - useXml - true, if xml should be transmitted.
* false, if a serialized php object should be transmitted
*
* Parameters are {@link $remoteHost}, {@link $port}, {@link $timeout},
* {@link $locationInfo}, {@link $useXml} and {@link $log4jNamespace}.
*
* An example:
*
* {@example ../../examples/php/appender_socket.php 19}
*
* {@example ../../examples/resources/appender_socket.properties 18}
*
* @version $Revision: 883108 $
* @package log4php
* @subpackage appenders
*/
class LoggerAppenderSocket extends LoggerAppender {
/**
* @var mixed socket connection resource
* @access private
*/
private $sp = false;
/**
* Target host. On how to define remote hostaname see
* {@link PHP_MANUAL#fsockopen}
* @var string
*/
private $remoteHost = '';
/**
* @var integer the network port.
*/
private $port = 4446;
/**
* @var boolean get event's location info.
*/
private $locationInfo = false;
/**
* @var integer connection timeout
*/
private $timeout = 30;
/**
* @var boolean output events via {@link LoggerXmlLayout}
*/
private $useXml = false;
/**
* @var boolean forward this option to {@link LoggerXmlLayout}.
* Ignored if {@link $useXml} is <i>false</i>.
*/
private $log4jNamespace = false;
/**
* @var LoggerXmlLayout
* @access private
*/
private $xmlLayout = null;
/** @var indiciates if this appender should run in dry mode */
private $dry = false;
public function __destruct() {
$this->close();
}
/**
* Create a socket connection using defined parameters
*/
public function activateOptions() {
if(!$this->dry) {
$this->sp = @fsockopen($this->getRemoteHost(), $this->getPort(), $errno, $errstr, $this->getTimeout());
if ($this->sp === false) {
throw new LoggerException("Could not open socket to ".$this->getRemoteHost().":".$this->getPort().": $errstr ($errno)");
}
}
if($this->getUseXml()) {
$this->xmlLayout = LoggerReflectionUtils::createObject('LoggerLayoutXml');
if($this->xmlLayout === null) {
$this->setUseXml(false);
} else {
$this->xmlLayout->setLocationInfo($this->getLocationInfo());
$this->xmlLayout->setLog4jNamespace($this->getLog4jNamespace());
$this->xmlLayout->activateOptions();
}
}
$this->closed = false;
}
public function close() {
if($this->closed != true) {
if(!$this->dry and $this->sp !== false) {
fclose($this->sp);
}
$this->closed = true;
}
}
public function setDry($dry) {
$this->dry = $dry;
}
/**
* @return string
*/
public function getHostname() {
return $this->getRemoteHost();
}
/**
* @return boolean
*/
public function getLocationInfo() {
return $this->locationInfo;
}
/**
* @return boolean
*/
public function getLog4jNamespace() {
return $this->log4jNamespace;
}
/**
* @return integer
*/
public function getPort() {
return $this->port;
}
public function getRemoteHost() {
return $this->remoteHost;
}
/**
* @return integer
*/
public function getTimeout() {
return $this->timeout;
}
/**
* @var boolean
*/
public function getUseXml() {
return $this->useXml;
}
public function reset() {
$this->close();
parent::reset();
}
/**
* @param mixed
*/
public function setLocationInfo($flag) {
$this->locationInfo = LoggerOptionConverter::toBoolean($flag, $this->getLocationInfo());
}
/**
* @param mixed
*/
public function setLog4jNamespace($flag) {
$this->log4jNamespace = LoggerOptionConverter::toBoolean($flag, $this->getLog4jNamespace());
}
/**
* @param integer
*/
public function setPort($port) {
$port = LoggerOptionConverter::toInt($port, 0);
if($port > 0 and $port < 65535) {
$this->port = $port;
}
}
/**
* @param string
*/
public function setRemoteHost($hostname) {
$this->remoteHost = $hostname;
}
/**
* @param integer
*/
public function setTimeout($timeout) {
$this->timeout = LoggerOptionConverter::toInt($timeout, $this->getTimeout());
}
/**
* @param mixed
*/
public function setUseXml($flag) {
$this->useXml = LoggerOptionConverter::toBoolean($flag, $this->getUseXml());
}
public function append(LoggerLoggingEvent $event) {
if($this->sp || $this->dry) {
if($this->getLocationInfo()) {
$event->getLocationInformation();
}
if(!$this->getUseXml()) {
$sEvent = serialize($event);
if(!$this->dry) {
fwrite($this->sp, $sEvent, strlen($sEvent));
} else {
echo "DRY MODE OF SOCKET APPENDER: ".$sEvent;
}
} else {
if(!$this->dry) {
fwrite($this->sp, $this->xmlLayout->format($event));
} else {
echo "DRY MODE OF SOCKET APPENDER: ".$this->xmlLayout->format($event);
}
}
// not sure about it...
if(!$this->dry) {
fflush($this->sp);
}
}
}
}