icingadb-web/library/Icingadb/Util/PerfDataFormat.php
Alexander A. Klimov 3c8ed68cc6 Upgrade license from GPLv2 to GPLv2+
This was easy because only README.md and doc/01-About.md were redacted manually, everything else via:
git ls-files -z |xargs -0 perl -pi -e 's/Icinga GmbH \| GPLv2/Icinga GmbH | GPLv2+/'

This is legal because we have only merged PRs with label:cla/signed or made by Icinga staff:
https://github.com/Icinga/icingadb-web/pulls?page=1&q=is%3Apr+is%3Aclosed+-label%3Acla%2Fsigned+-author%3Anilmerg

This has no risk for us in people distributing their own version under GPLv3 only.
After all, we won't take their patches anyway, unless they sign our CLA.

This is the cleanest solution for having e.g. these in one address space:

* Icinga Web, GPLv2+
* K8s Web, AGPLv3
* Thirdparty, some LGPLv3 and Apache-2.0

Apropos, K8s Web is even v3-licensed on purpose, to have a stronger protection against cloud ops.
2025-11-21 13:31:24 +01:00

171 lines
4.4 KiB
PHP

<?php
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2+ */
namespace Icinga\Module\Icingadb\Util;
class PerfDataFormat
{
protected static $instance;
protected static $generalBase = 1000;
protected static $bitPrefix = ['b', 'kb', 'mb', 'gb', 'tb', 'pb', 'eb', 'zb', 'yb'];
protected static $bytePrefix = ['B', 'kB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
protected static $wattHourPrefix = ['Wh', 'kWh', 'MWh', 'GWh', 'TWh', 'PWh', 'EWh', 'ZWh', 'YWh'];
protected static $wattPrefix = [-1 => 'mW', 'W', 'kW', 'MW', 'GW'];
protected static $amperePrefix = [-3 => 'nA', -2 => 'µA', -1 => 'mA', 'A', 'kA', 'MA', 'GA'];
protected static $ampSecondPrefix = [-2 => 'µAs', -1 => 'mAs', 'As', 'kAs', 'MAs', 'GAs'];
protected static $voltPrefix = [-2 => 'µV', -1 => 'mV', 'V', 'kV', 'MV', 'GV'];
protected static $ohmPrefix = ['Ω'];
protected static $gramPrefix = [
-5 => 'fg',
-4 => 'pg',
-3 => 'ng',
-2 => 'µg',
-1 => 'mg',
'g',
'kg',
't',
'ktǂ',
'Mt',
'Gt'
];
protected static $literPrefix = [
-5 => 'fl',
-4 => 'pl',
-3 => 'nl',
-2 => 'µl',
-1 => 'ml',
'l',
'kl',
'Ml',
'Gl',
'Tl',
'Pl'
];
protected static $secondPrefix = [-3 => 'ns', -2 => 'µs', -1 => 'ms', 's'];
public static function getInstance(): self
{
if (self::$instance === null) {
self::$instance = new PerfDataFormat();
}
return self::$instance;
}
public static function bits($value): string
{
return self::formatForUnits($value, self::$bitPrefix, self::$generalBase);
}
public static function bytes($value): string
{
return self::formatForUnits($value, self::$bytePrefix, self::$generalBase);
}
public static function wattHours($value): string
{
return self::formatForUnits($value, self::$wattHourPrefix, self::$generalBase);
}
public static function watts($value): string
{
return self::formatForUnits($value, self::$wattPrefix, self::$generalBase);
}
public static function amperes($value): string
{
return self::formatForUnits($value, self::$amperePrefix, self::$generalBase);
}
public static function ampereSeconds($value): string
{
return self::formatForUnits($value, self::$ampSecondPrefix, self::$generalBase);
}
public static function volts($value): string
{
return self::formatForUnits($value, self::$voltPrefix, self::$generalBase);
}
public static function ohms($value): string
{
return self::formatForUnits($value, self::$ohmPrefix, self::$generalBase);
}
public static function grams($value): string
{
return self::formatForUnits($value, self::$gramPrefix, self::$generalBase);
}
public static function liters($value): string
{
return self::formatForUnits($value, self::$literPrefix, self::$generalBase);
}
public static function seconds($value): string
{
$value = (float) $value;
$absValue = abs($value);
if ($absValue < 60) {
return self::formatForUnits($value, self::$secondPrefix, self::$generalBase);
} elseif ($absValue < 3600) {
return sprintf('%0.2f m', $value / 60);
} elseif ($absValue < 86400) {
return sprintf('%0.2f h', $value / 3600);
}
return sprintf('%0.2f d', $value / 86400);
}
protected static function formatForUnits(float $value, array &$units, int $base): string
{
$sign = '';
if ($value < 0) {
$value = abs($value);
$sign = '-';
}
if ($value == 0) {
$pow = $result = 0;
} else {
$pow = floor(log($value, $base));
// Identify nearest unit if unknown
while (! isset($units[$pow])) {
if ($pow < 0) {
$pow++;
} else {
$pow--;
}
}
$result = $value / pow($base, $pow);
}
// 1034.23 looks better than 1.03, but 2.03 is fine:
if ($pow > 0 && $result < 2) {
$result = $value / pow($base, --$pow);
}
return sprintf(
'%s%0.2f %s',
$sign,
$result,
$units[$pow]
);
}
}