RequestOutputPlotAxesNodeClass.php
3.26 KB
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
<?php
require_once("RequestOutputPlotTimeAxisNodeClass.php");
require_once("RequestOutputPlotEpochAxisNodeClass.php");
require_once("RequestOutputPlotDigitalAxisNodeClass.php");
require_once("RequestOutputPlotColorAxisNodeClass.php");
define ("REQUESTOUTPUTPLOTAXES_NAME", "axes");
define ("REQUESTOUTPUTPLOTAXES_XAXIS", "xAxis");
define ("REQUESTOUTPUTPLOTAXES_YAXIS", "yAxis");
define ("REQUESTOUTPUTPLOTAXES_ZAXIS", "zAxis");
abstract class RequestOutputPlotAxisTypeEnum
{
const XAXIS = REQUESTOUTPUTPLOTAXES_XAXIS;
const YAXIS = REQUESTOUTPUTPLOTAXES_YAXIS;
const ZAXIS = REQUESTOUTPUTPLOTAXES_ZAXIS;
}
/**
* @class RequestOutputPlotAxesNodeClass
* @brief Definition of a axes element for a plot of a plot request
* @details
*/
class RequestOutputPlotAxesNodeClass extends NodeClass
{
public function __construct($noXAxis, $noYAxis, $noZAxis)
{
parent::__construct(REQUESTOUTPUTPLOTAXES_NAME);
//create skeleton
if (!$noXAxis)
$node = $this->getChildInstanceByName(REQUESTOUTPUTPLOTAXES_XAXIS, true);
if (!$noYAxis)
$node = $this->getChildInstanceByName(REQUESTOUTPUTPLOTAXES_YAXIS, true);
if (!$noZAxis)
$node = $this->getChildInstanceByName(REQUESTOUTPUTPLOTAXES_ZAXIS, true);
}
public function addDigitalAxis($axisType,$id)
{
if (($axisType != RequestOutputPlotAxisTypeEnum::XAXIS) && ($axisType != RequestOutputPlotAxisTypeEnum::YAXIS))
return NULL;
$axisNode = $this->getChildInstanceByName($axisType);
//add digital axis
$digitalAxisNode = new RequestOutputPlotDigitalAxisNodeClass();
$digitalAxisNode->setId($id);
$axisNode->addChild($digitalAxisNode);
return $digitalAxisNode;
}
public function getDigitalAxis($axisType,$id)
{
if (($axisType != RequestOutputPlotAxisTypeEnum::XAXIS) && ($axisType != RequestOutputPlotAxisTypeEnum::YAXIS))
return NULL;
$axisNode = $this->getChildInstanceByName($axisType);
$digitalAxisNodes = $axisNode->getChildrenByName(REQUESTOUTPUTPLOTDIGITALAXIS_NAME);
foreach ($digitalAxisNodes as $digitalAxisNode)
if ($digitalAxisNode->getId() == $id)
return $digitalAxisNode;
return NULL;
}
public function getTimeAxis()
{
$axisNode = $this->getChildInstanceByName(RequestOutputPlotAxisTypeEnum::XAXIS);
$timeAxisNode = $axisNode->getFirstChildByName(REQUESTOUTPUTPLOTTIMEAXIS_NAME);
if (!isset($timeAxisNode))
{
$timeAxisNode = new RequestOutputPlotTimeAxisNodeClass();
$axisNode->addChild($timeAxisNode);
}
return $timeAxisNode;
}
public function getEpochAxis()
{
$axisNode = $this->getChildInstanceByName(RequestOutputPlotAxisTypeEnum::XAXIS);
$epochAxisNode = $axisNode->getFirstChildByName(REQUESTOUTPUTPLOTEPOCHAXIS_NAME);
if (!isset($epochAxisNode))
{
$epochAxisNode = new RequestOutputPlotEpochAxisNodeClass();
$axisNode->addChild($epochAxisNode);
}
return $epochAxisNode;
}
public function getColorAxis()
{
$axisNode = $this->getChildInstanceByName(RequestOutputPlotAxisTypeEnum::ZAXIS);
$colorAxisNode = $axisNode->getFirstChildByName(REQUESTOUTPUTPLOTCOLORAXIS_NAME);
if (!isset($colorAxisNode))
{
$colorAxisNode = new RequestOutputPlotColorAxisNodeClass();
$axisNode->addChild($colorAxisNode);
}
return $colorAxisNode;
}
}
?>