-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoggerContent.php
654 lines (602 loc) · 20.5 KB
/
LoggerContent.php
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
<?php
namespace phpWTL;
use phpWTL\FormatDescriptorHelper;
require_once 'FormatDescriptorHelper.php';
/**
* Representation of the content of a single log entry/log event.
*
* This is a generic container class to store the field contents of a single logger entry.
* Instances of this class use dynamic getters and setters to deal with variable logging formats.
* This container is capable of character encoding.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.7
* @api
*/
class LoggerContent {
/** encoding */
protected $_encoding= null;
/** encoding assumption */
protected $_encoding_assumption= null;
/** encoding detection order */
protected $_encoding_detection_order= null;
/** datatype given (raw or formatted) */
protected $_datatype_class= null;
/** standard delimiter for toString methods */
protected $_field_delimiter= null;
/** store the format description object */
protected $_format_descriptor= null;
/** Store allowed field IDs */
protected $_allowed_attributes= null;
/**
* @param object $format_descriptor Provide a format descriptor class as the format blueprint.
* @param array $params Provide parameter array ("field_delimiter", "encoding", "encoding_assumption, "encoding_detection_order")
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.3
* @api
*/
public function __construct($format_descriptor, $params= null) {
if ($format_descriptor && $format_descriptor->getFieldNames()) {
$this->_field_delimiter= $format_descriptor->getFormatFieldDelimiter();
$this->_encoding_assumption= phpWTL::ENCODING_ASSUMPTION_SYSTEM;
$this->_encoding_detection_order= phpWTL::DEFAULT_ENCODING_DETECTION_ORDER;
if ($params && is_array($params)) {
if (array_key_exists("field_delimiter", $params)) {
$this->_field_delimiter= $params["field_delimiter"];
}
if (array_key_exists("encoding", $params)) {
if ($params["encoding"] == phpWTL::SYSTEM_ENCODING) {
$this->_encoding= phpWTL::getPhpDefaultEncoding();
} else {
$this->_encoding= $params["encoding"];
}
}
if (array_key_exists("encoding_assumption", $params)) {
$this->_encoding_assumption= $params["encoding_assumption"];
}
if (array_key_exists("encoding_detection_order", $params) &&
is_array($params["encoding_detection_order"]) &&
!empty($params["encoding_detection_order"])) {
$this->_encoding_detection_order= $params["encoding_detection_order"];
}
if (array_key_exists("datatype_class", $params)) {
switch ($params["datatype_class"]) {
case FormatDescriptorHelper::DATATYPE_FORMATTED:
$this->_datatype_class= FormatDescriptorHelper::DATATYPE_FORMATTED;
break;
case FormatDescriptorHelper::DATATYPE_RAW:
default:
$this->_datatype_class= FormatDescriptorHelper::DATATYPE_RAW;
break;
}
}
}
$fields= $format_descriptor->getFieldNames();
if ($fields && is_array($fields) && !empty($fields)) {
$this->_allowed_attributes= $fields;
$this->_format_descriptor= $format_descriptor;
foreach($fields as $k => $v) {
$this->{$v}= null;
}
}
}
}
/**
* @return object Get the format descriptor class this LoggerContent object was built upon.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function getFormatDescriptor() {
if (!(null === $this->_format_descriptor)) return $this->_format_descriptor;
}
/**
* @return string Get the log field delimiter.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function getFieldDelimiter() {
return $this->_field_delimiter;
}
/**
* @param string $delimiter Set the log field delimiter.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function setFieldDelimiter($delimiter= "") {
$this->_field_delimiter= $delimiter;
}
/**
* @return string Get the datatype class setting.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function getDatatypeClass() {
return $this->_datatype_class;
}
/**
* @param int $datatype_class Set the datatype class.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.1
* @api
*/
public function setDatatypeClass($datatype_class= null) {
switch ($datatype_class) {
case FormatDescriptorHelper::DATATYPE_FORMATTED:
$this->_datatype_class= FormatDescriptorHelper::DATATYPE_FORMATTED;
break;
case FormatDescriptorHelper::DATATYPE_RAW:
default:
$this->_datatype_class= FormatDescriptorHelper::DATATYPE_RAW;
break;
}
}
/**
* @return string Get the encoding setting.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function getEncoding() {
return $this->_encoding;
}
/**
* @param string $encoding Set the character encoding (null or empty to disable encoding).
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.1
* @api
*/
public function setEncoding($encoding= "") {
if ($encoding == phpWTL::SYSTEM_ENCODING) {
$this->_encoding= phpWTL::getPhpDefaultEncoding();
} else {
$this->_encoding= $encoding;
}
}
/**
* @return string Get the encoding assumption.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function getEncodingAssumption() {
return $this->_encoding_assumption;
}
/**
* @param string $encoding_assumption Set the character encoding assumption.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function setEncodingAssumption($encoding_assumption= "") {
$this->_encoding_assumption= $encoding_assumption;
}
/**
* @return string Get the encoding detection order.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function getEncodingDetectionOrder() {
return $this->_encoding_detection_order;
}
/**
* @param string $encoding Set the character encoding (CSV string, null or empty to disable encoding).
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function setEncodingDetectionOrder($order= null) {
$this->_encoding_detection_order= $order;
}
/**
* Helper method to try to detect the encoding for a given format field
* @param string $key Name of attribute (format field).
* @return string
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function probeFieldEncoding($key) {
$ret= null;
if (extension_loaded("mbstring")) {
$ret= mb_detect_encoding($val, $this->getEncodingDetectionOrder(), true);
}
return $ret;
}
/**
* Helper method to set the encoding for a given format field
* @param string $key Name of attribute (format field).
* @param string $encoding_assumption The character encoding assumption/strategy.
* @param string $encoding Character encoding.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function setFieldEncoding($key, $encoding_assumption, $encoding) {
if (in_array($key, $this->_allowed_attributes)) {
$val= $this->{$key};
if ($encoding == phpWTL::SYSTEM_ENCODING) {
$encoding= phpWTL::getPhpDefaultEncoding();
}
switch ($encoding_assumption) {
case phpWTL::ENCODING_ASSUMPTION_SYSTEM:
// try to detect default PHP encoding
$assumed_encoding= phpWTL::getPhpDefaultEncoding();
break;
case phpWTL::ENCODING_ASSUMPTION_PROBE_DATA:
$assumed_encoding= null;
break;
default:
$assumed_encoding= $encoding_assumption;
break;
}
if (!$assumed_encoding) {
// if mb extension is available, try to detect encoding from given attribute string
$assumed_encoding= $this->probeFieldEncoding($f);
}
// if we can assume an encoding and iconv is available, encode return string
if ($assumed_encoding && extension_loaded("iconv") && ($assumed_encoding != $encoding)) {
$val= iconv($assumed_encoding, $encoding, $val);
}
$this->__set($key, $val);
}
}
/**
* Helper method to set specific encoding for all attributes
* @param string $encoding_assumption The character encoding assumption/strategy.
* @param string $encoding Character encoding.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.1
* @api
*/
public function straightenUpEncodingAll($encoding_assumption, $encoding) {
if ($encoding_assumption && $encoding) {
foreach ($this->_allowed_attributes as $k=>$f) {
$this->setFieldEncoding($f, $encoding_assumption, $encoding);
}
}
}
/**
* Dynamic setter.
* @param string $key Name of attribute (format field) to set.
* @param string $value Value for attribute (format field) to set.
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function __set($key, $value) {
if (in_array($key, $this->_allowed_attributes)) $this->{$key}= $value;
}
/**
* Dynamic getter.
* @param string $key Name of attribute (format field).
* @return string Value of given attribute (format field).
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.2
* @api
*/
public function __get($key) {
$ret= null;
if (in_array($key, $this->_allowed_attributes)) {
$ret= $this->{$key};
if ($this->getEncoding() && $this->getEncoding() != "") {
switch ($this->getEncodingAssumption()) {
case phpWTL::ENCODING_ASSUMPTION_SYSTEM:
// try to detect default PHP encoding
$assumed_encoding= phpWTL::getPhpDefaultEncoding();
break;
case phpWTL::ENCODING_ASSUMPTION_PROBE_DATA:
break;
default:
$assumed_encoding= $this->getEncodingAssumption();
break;
}
if (!$assumed_encoding) {
// if mb extension is available, try to detect encoding from given attribute string
$assumed_encoding= $this->probeFieldEncoding($key);
}
// if we can assume an encoding and iconv is available, encode return string
if ($assumed_encoding && extension_loaded("iconv") && ($assumed_encoding != $this->getEncoding())) {
$ret= iconv($assumed_encoding, $this->getEncoding(), $ret);
}
}
}
return $ret;
}
/**
* String representation of the log-entry content, all default fields, no meta fields, separated by the line delimiter (this is a typical logfile line).
* @return string
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.2.1
* @api
*/
public function __toString() {
return $this->toString($this->_format_descriptor->getRegularFieldNames(FormatDescriptorHelper::DEFAULT_ONLY));
}
/**
* String representation of the log-entry content, regular (non-meta) fields according to whiteliste parameter, separated by the line delimiter (this is a typical logfile line).
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @return string
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.2.3
* @api
*/
public function toString($whitelist= null) {
$ret= null;
if (!$whitelist) $whitelist= $this->_format_descriptor->getRegularFieldNames(FormatDescriptorHelper::DEFAULT_ONLY);
$content= $this->toArray($whitelist);
$ret= implode($this->_field_delimiter, array_values($content));
return $ret;
}
/**
* String representation of the log-entry content meta fields according to whiteliste parameter, separated by the line delimiter.
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @return string
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.1
* @api
*/
public function toStringMeta($whitelist= null) {
$ret= null;
if (!$whitelist) $whitelist= $this->_format_descriptor->getMetaFieldNames(FormatDescriptorHelper::DEFAULT_ONLY);
$content= $this->toArray($whitelist);
$ret= implode($this->_field_delimiter, array_values($content));
return $ret;
}
/**
* Associative array representation of the regular (non-meta) log-entry content.
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.1
* @api
*/
public function toArrayTyped($whitelist= null) {
return $this->toArrayComplex($whitelist, false, false);
}
/**
* Associative array representation of the regular (non-meta) log-entry content.
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.1
* @api
*/
public function toArrayTypedTrimmed($whitelist= null) {
return $this->toArrayComplex($whitelist, true, false);
}
/**
* Associative array representation of the regular (non-meta) log-entry content.
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.1
* @api
*/
public function toArrayTypedMeta($whitelist= null) {
return $this->toArrayComplex($whitelist, false, true);
}
/**
* Associative array representation of the regular (non-meta) log-entry content.
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.1
* @api
*/
public function toArrayTypedMetaTrimmed($whitelist= null) {
return $this->toArrayComplex($whitelist, true, true);
}
/**
* Internal helper method for "toArrayTyped", "toArrayTypedMeta", "toArrayTypedTrimmed" and "toArrayTypedMetaTrimmed"
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @param boolean $trimmed Call "toArrayTrimmed" or check if $meta is set and...
* @param boolean $meta Call "toArrayMeta" or just "toArray"
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.3
*/
protected function toArrayComplex($whitelist, $trimmed, $meta) {
$ret= array();
if ($trimmed) {
$content= $this->toArrayTrimmed($whitelist);
} else {
if ($meta) {
$content= $this->toArrayMeta($whitelist);
} else {
$content= $this->toArray($whitelist);
}
}
switch ($this->getDatatypeClass()) {
case FormatDescriptorHelper::DATATYPE_FORMATTED:
$types= $this->_format_descriptor->getFieldData("datatype_formatted", $whitelist);
break;
case FormatDescriptorHelper::DATATYPE_RAW:
default:
$types= $this->_format_descriptor->getFieldData("datatype_raw", $whitelist);
break;
}
if ($content && is_array($content) && $types && is_array($types)) {
foreach ($content as $k=>$f) {
$ret[$k]= array(
"datatype" => $types[$k],
"content" => $f
);
}
}
return $ret;
}
/**
* Associative array representation of the regular (non-meta) log-entry content.
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.3.2
* @api
*/
public function toArray($whitelist= null) {
$ret= array();
if (!$whitelist) $whitelist= $this->_format_descriptor->getRegularFieldNames(FormatDescriptorHelper::DEFAULT_ONLY);
// check if $whitlist contains only valid field names, delete invalid names
if ($whitelist && is_array($whitelist)) {
foreach ($whitelist as $k=>$f) {
if (!in_array($f, $this->_allowed_attributes)) unset($whitelist[$k]);
}
}
// only return fields contained in $whitelist
foreach ($this->_allowed_attributes as $k=>$f) {
if ($whitelist && is_array($whitelist)) {
$pass= in_array($f, $whitelist);
} else {
$pass= true;
}
if ($pass) $ret[$f]= $this->__get($f);
}
// sort returned array according to $whitelist order
if ($whitelist && is_array($whitelist)) $ret= $this->sortArray($ret, $whitelist);
return $ret;
}
/**
* Associative array representation of the regular (non-meta) log-entry content, prefix+suffix trimmed.
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function toArrayTrimmed($whitelist= null) {
$ret= $this->toArray($whitelist);
foreach ($ret as $k=>$f) {
$ret[$k]= $this->getFieldContentTrimmed($k);
}
return $ret;
}
/**
* Associative array representation of the log-entry meta content.
* @param array $whitelist If given two things will be done: a) only fields matching the list will be included in the return array and b) the return array will be sorted according to the order of the whitelist.
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.2
* @api
*/
public function toArrayMeta($whitelist= null) {
$ret= array();
if (!$whitelist) {
$metas= $this->_format_descriptor->getMetaFieldNames(FormatDescriptorHelper::DEFAULT_ONLY);
} else {
$metas= $this->_format_descriptor->getMetaFieldNames();
}
// check if $whitlist contains only valid field names, delete invalid names
if ($whitelist && is_array($whitelist)) {
foreach ($whitelist as $k=>$f) {
if (!in_array($f, $metas)) unset($whitelist[$k]);
}
}
// only return fields contained in $whitelist
foreach ($metas as $k=>$f) {
if ($whitelist && is_array($whitelist)) {
$pass= in_array($f, $whitelist);
} else {
$pass= true;
}
if ($pass) $ret[$f]= $this->__get($f);
}
// sort returned array according to $whitelist order
if ($whitelist && is_array($whitelist)) $ret= $this->sortArray($ret, $whitelist);
return $ret;
}
/**
* Sort an (associative) array by a sequence defined in another array.
* @param array $arrayToSort
* @param array $arrayToSortBy
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function sortArray($arrayToSort, $arrayToSortBy) {
$ret= array();
if (is_array($arrayToSort) && is_array($arrayToSortBy) && $arrayToSort && $arrayToSortBy) {
// check if $arrayToSortBy contains only valid key names (according to $arrayToSort), delete invalid names
foreach ($arrayToSortBy as $k=>$f) {
if (!array_key_exists($f, $arrayToSort)) unset($arrayToSortBy[$k]);
}
// sort
$ret= array_merge(array_flip($arrayToSortBy), $arrayToSort);
}
return $ret;
}
/**
* Helper method to strip prefix/suffix from log field content.
*
* @param string $field_name ID of log format field.
* @return string Trimmed field content
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.1
* @api
*/
public function getFieldContentTrimmed($field_name) {
$fieldDescriptor= $this->getFormatDescriptor();
if ($fieldDescriptor && $field_name) {
$prefix= $fieldDescriptor->getPrefix($field_name);
$suffix= $fieldDescriptor->getSuffix($field_name);
return rtrim(ltrim($this->__get($field_name), $prefix), $suffix);
}
}
/**
* Helper method to replace field names (IDs) with their captions for a given content array
* @param array $contentArray
* @return array
*
* @author Michael Beyer <mgbeyer@gmx.de>
* @version v0.1.0
* @api
*/
public function fieldNames2Captions($contentArray) {
$ret= array();
if ($contentArray && is_array($contentArray)) {
$fieldDescriptor= $this->getFormatDescriptor();
foreach ($contentArray as $k=>$f) {
$caption= $fieldDescriptor->getCaption($k);
if (!$caption) $caption= $k;
$ret[$caption]= $f;
}
}
return $ret;
}
}
?>