RequestNodeClass.php
2.92 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
require_once "RequestTimesNodeClass.php";
require_once "RequestOutputsNodeClass.php";
define ("REQUESTPARAM_NAME", "param");
define ("REQUESTPARAM_ID", "id");
/**
* @class RequestParamNodeClass
* @brief Definition of a request param node for AMDA_Kernel
* @details
*/
class RequestParamNodeClass extends NodeClass
{
public function __construct()
{
parent::__construct(REQUESTPARAM_NAME);
}
public function setId($id)
{
$this->setAttribute(REQUESTPARAM_ID, $id);
}
public function getId()
{
return $this->getAttribute(REQUESTPARAM_ID);
}
public function loadFromNode($xmlNode)
{
$this->setId($this->getXmlNodeAttribute($xmlNode, REQUESTPARAM_ID));
}
}
define ("REQUESTPARAMS_NAME", "params");
/**
* @class RequestParamsNodeClass
* @brief Definition of a request params node for AMDA_Kernel
* @details
*/
class RequestParamsNodeClass extends NodeClass
{
public function __construct()
{
parent::__construct(REQUESTPARAMS_NAME);
}
public function addParam($id = "")
{
foreach ($this->getChildrenByName(REQUESTPARAM_NAME) as $paramNode)
if ($paramNode->getId() == $id)
return $paramNode;
$param = new RequestParamNodeClass();
$param->setId($id);
$this->addChild($param);
return $param;
}
public function getParamList()
{
return $this->getChildrenByName(REQUESTPARAM_NAME);
}
public function loadFromNode($xmlNode)
{
foreach ($this->getXmlNodeChildrenByTagName($xmlNode, REQUESTPARAM_NAME) as $requestParamXmlNode) {
$this->addParam()->loadFromNode($requestParamXmlNode);
}
}
}
define ("REQUEST_NAME", "request");
/**
* @class RequestNodeClass
* @brief Definition of a request node for AMDA_Kernel
* @details
*/
class RequestNodeClass extends NodeClass
{
private $realIndex = 0;
public function __construct()
{
parent::__construct(REQUEST_NAME);
$this->addChild(new RequestParamsNodeClass());
$this->addChild(new RequestTimesNodeClass());
$this->addChild(new RequestOutputsNodeClass());
}
public function getParamsNode()
{
return $this->getFirstChildByName(REQUESTPARAMS_NAME);
}
public function getTimesNode()
{
return $this->getFirstChildByName(REQUESTTIMES_NAME);
}
public function getOutputsNode()
{
return $this->getFirstChildByName(REQUESTOUTPUTS_NAME);
}
public function setRealIndex($index)
{
$this->realIndex = $index;
}
public function getRealIndex()
{
return $this->realIndex;
}
public function loadFromNode($xmlNode)
{
$paramsXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTPARAMS_NAME);
if (isset($paramsXmlNode))
$this->getParamsNode()->loadFromNode($paramsXmlNode);
$timesXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTTIMES_NAME);
if (isset($timesXmlNode))
$this->getTimesNode()->loadFromNode($timesXmlNode);
$outputsXmlNode = $this->getXmlNodeChildByTagName($xmlNode, REQUESTOUTPUTS_NAME);
if (isset($outputsXmlNode))
$this->getOutputsNode()->loadFromNode($outputsXmlNode);
}
}
?>