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
|
<?php declare(strict_types = 0);
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
/**
* A parser for numbers with optional time or byte suffix.
*/
class CNumberParser extends CParser {
/**
* Parser options.
*
* @var array
*/
private $options = [
'with_minus' => true,
'with_float' => true,
'with_size_suffix' => false,
'with_time_suffix' => false,
'with_year' => false,
'is_binary_size' => true
];
/**
* Parsed number without time or byte suffix.
*
* @var string
*/
private $number;
/**
* Parsed time or byte suffix, or null, if wasn't found.
*
* @var string|null
*/
private $suffix;
/**
* Acceptable time and byte suffixes.
*
* @var string
*/
private $suffixes = '';
/**
* Suffix multiplier table for value calculation.
*
* @var array
*/
private $suffix_multipliers = [];
public function __construct(array $options = []) {
$this->options = array_replace($this->options, array_intersect_key($options, $this->options));
if (!$this->options['with_time_suffix'] && $this->options['with_year']) {
throw new Exception('Ambiguous options.');
}
if ($this->options['with_size_suffix']) {
$this->suffixes .= ZBX_SIZE_SUFFIXES;
$this->suffix_multipliers += $this->options['is_binary_size']
? ZBX_SIZE_SUFFIX_MULTIPLIERS_BINARY
: ZBX_SIZE_SUFFIX_MULTIPLIERS;
}
if ($this->options['with_time_suffix']) {
$this->suffixes .= $this->options['with_year'] ? ZBX_TIME_SUFFIXES_WITH_YEAR : ZBX_TIME_SUFFIXES;
$this->suffix_multipliers += ZBX_TIME_SUFFIX_MULTIPLIERS;
}
}
/**
* Parse number with optional time or byte suffix.
*
* !!! Don't forget sync code with C !!!
*
* @param string $source string to parse
* @param int $pos position to start from
*
* @return int
*/
public function parse($source, $pos = 0): int {
$this->length = 0;
$this->match = '';
$this->number = null;
$this->suffix = null;
$fragment = substr($source, $pos);
$pattern = $this->options['with_float'] ? ZBX_PREG_NUMBER : ZBX_PREG_INT;
$pattern = ($this->options['with_size_suffix'] || $this->options['with_time_suffix'])
? '/^'.$pattern.'(?<suffix>['.$this->suffixes.'])?/'
: '/^'.$pattern.'/';
if (!preg_match($pattern, $fragment, $matches)) {
return self::PARSE_FAIL;
}
$number = $this->options['with_float'] ? $matches['number'] : $matches['int'];
if ($number[0] === '-' && !$this->options['with_minus']) {
return self::PARSE_FAIL;
}
$this->length = strlen($matches[0]);
$this->match = $matches[0];
$this->number = $number;
$this->suffix = array_key_exists('suffix', $matches) ? $matches['suffix'] : null;
return ($pos + $this->length < strlen($source)) ? self::PARSE_SUCCESS_CONT : self::PARSE_SUCCESS;
}
/**
* Calculate value of parsed number in a decimal notation.
*
* @return float
*/
public function calcValue(): float {
$number = (float) $this->number;
if ($this->suffix !== null) {
$number *= $this->suffix_multipliers[$this->suffix];
}
return $number;
}
/**
* Get suffix of parsed number.
*
* @return string|null
*/
public function getSuffix(): ?string {
return $this->suffix;
}
}
|