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
|
<?php
namespace SimpleSAML\Module\statistics\Statistics\Rulesets;
use SimpleSAML\Configuration;
use SimpleSAML\Module\statistics\RatioDataset;
/**
* @author Andreas Åkre Solberg <andreas.solberg@uninett.no>
* @package SimpleSAMLphp
*/
class Ratio extends BaseRule
{
/** @var \SimpleSAML\Module\statistics\Statistics\Rulesets\BaseRule $refrule1 */
protected $refrule1;
/** @var \SimpleSAML\Module\statistics\Statistics\Rulesets\BaseRule $refrule2 */
protected $refrule2;
/**
* Constructor
*
* @param \SimpleSAML\Configuration $statconfig
* @param \SimpleSAML\Configuration $ruleconfig
* @param string $ruleid
* @param array $available
*/
public function __construct(Configuration $statconfig, Configuration $ruleconfig, $ruleid, array $available)
{
parent::__construct($statconfig, $ruleconfig, $ruleid, $available);
$refNames = $this->ruleconfig->getArray('ref');
$statrulesConfig = $this->statconfig->getConfigItem('statrules');
$statruleConfig1 = $statrulesConfig->getConfigItem($refNames[0]);
$statruleConfig2 = $statrulesConfig->getConfigItem($refNames[1]);
$this->refrule1 = new BaseRule($this->statconfig, $statruleConfig1, $refNames[0], $available);
$this->refrule2 = new BaseRule($this->statconfig, $statruleConfig2, $refNames[1], $available);
}
/**
* @return array
*/
public function availableTimeRes()
{
return $this->refrule1->availableTimeRes();
}
/**
* @param string $timeres
* @return array
*/
public function availableFileSlots($timeres)
{
return $this->refrule1->availableFileSlots($timeres);
}
/**
* @param string $preferTimeRes
* @return string
*/
protected function resolveTimeRes($preferTimeRes)
{
return $this->refrule1->resolveTimeRes($preferTimeRes);
}
/**
* @param string $timeres
* @param string $preferTime
* @return int
*/
protected function resolveFileSlot($timeres, $preferTime)
{
return $this->refrule1->resolveFileSlot($timeres, $preferTime);
}
/**
* @param string $timeres
* @param string $preferTime
* @return array
*/
public function getTimeNavigation($timeres, $preferTime)
{
return $this->refrule1->getTimeNavigation($timeres, $preferTime);
}
/**
* @param string $preferTimeRes
* @param string $preferTime
* @return \SimpleSAML\Module\statistics\RatioDataset
*/
public function getDataSet($preferTimeRes, $preferTime)
{
$timeres = $this->resolveTimeRes($preferTimeRes);
$fileslot = $this->resolveFileSlot($timeres, $preferTime);
$refNames = $this->ruleconfig->getArray('ref');
$dataset = new RatioDataset(
$this->statconfig,
$this->ruleconfig,
$refNames,
$timeres,
$fileslot
);
return $dataset;
}
}
|