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
|
<?php
// Icinga Reporting | (c) 2018 Icinga GmbH | GPLv2
namespace Icinga\Module\Reporting;
class ReportData implements \Countable
{
use Dimensions;
use Values;
/** @var ReportRow[]|null */
protected $rows;
public function getRows()
{
return $this->rows;
}
public function setRows(array $rows)
{
$this->rows = $rows;
return $this;
}
public function getAverages()
{
$totals = $this->getTotals();
$averages = [];
$count = \count($this);
foreach ($totals as $total) {
$averages[] = $total / $count;
}
return $averages;
}
// public function getMaximums()
// {
// }
// public function getMinimums()
// {
// }
public function getTotals()
{
$totals = [];
foreach ((array) $this->getRows() as $row) {
$i = 0;
foreach ((array) $row->getValues() as $value) {
if (! isset($totals[$i])) {
$totals[$i] = $value;
} else {
$totals[$i] += $value;
}
++$i;
}
}
return $totals;
}
public function count(): int
{
return count((array) $this->getRows());
}
}
|