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
|
<?php
namespace SimpleSAML\Module\statistics;
use SimpleSAML\Configuration;
/**
* @author Andreas Åkre Solberg <andreas.solberg@uninett.no>
* @package SimpleSAMLphp
*/
class RatioDataset extends StatDataset
{
/**
* Constructor
*
* @param \SimpleSAML\Configuration $statconfig
* @param \SimpleSAML\Configuration $ruleconfig
* @param string $ruleid
* @param string $timeres
* @param int $fileslot
*/
public function __construct(Configuration $statconfig, Configuration $ruleconfig, $ruleid, $timeres, $fileslot)
{
parent::__construct($statconfig, $ruleconfig, $ruleid, $timeres, $fileslot);
}
/**
* @return void
*/
public function aggregateSummary()
{
/**
* Aggregate summary table from dataset. To be used in the table view.
*/
$this->summary = [];
$noofvalues = [];
foreach ($this->results as $slot => $res) {
foreach ($res as $key => $value) {
if (array_key_exists($key, $this->summary)) {
$this->summary[$key] += $value;
if ($value > 0) {
$noofvalues[$key]++;
}
} else {
$this->summary[$key] = $value;
if ($value > 0) {
$noofvalues[$key] = 1;
} else {
$noofvalues[$key] = 0;
}
}
}
}
foreach ($this->summary as $key => $val) {
$this->summary[$key] = $this->divide($this->summary[$key], $noofvalues[$key]);
}
asort($this->summary);
$this->summary = array_reverse($this->summary, true);
}
/**
* @param string $k
* @param array $a
* @return int
*/
private function ag($k, array $a)
{
if (array_key_exists($k, $a)) {
return $a[$k];
}
return 0;
}
/**
* @param int $v1
* @param int $v2
* @return int|float
*/
private function divide($v1, $v2)
{
if ($v2 == 0) {
return 0;
}
return ($v1 / $v2);
}
/**
* @param array $result1
* @param array $result2
* @return array
*/
public function combine(array $result1, array $result2)
{
$combined = [];
foreach ($result2 as $tick => $val) {
$combined[$tick] = [];
foreach ($val as $index => $num) {
$combined[$tick][$index] = $this->divide(
$this->ag($index, $result1[$tick]),
$this->ag($index, $result2[$tick])
);
}
}
return $combined;
}
/**
* @return array
*/
public function getPieData()
{
return [];
}
}
|