ParamsRequestClass.php
6.77 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<?php
/**
* @class ParamsRequestClass
* @brief Treats a param request. This class inherits from ProcessRequestClass
* @details
*/
class ParamsRequestClass extends ProcessRequestClass
{
/*
* @brief Init a params request
*/
public function init()
{
if (!isset($this->requestData))
return false;
if ($this->requestData->getType(ProcessTypeEnumClass::KILL))
return true;
$this->requestData->setType(ProcessTypeEnumClass::RUN);
switch ($this->requestData->getRequestType())
{
case ParamsRequestTypeEnumClass::XMLREQUEST :
$cmd = "";
foreach ($this->requestData->getRequestNodes() as $requestNode)
{
if ($cmd != "")
$cmd .= " && ";
$cmd .= KernelConfigClass::getKernelBinPath()."amdaXMLRequestorTool ".$this->getRequestFilePath($requestNode->getRealIndex());
}
$this->requestData->setCmd($cmd);
break;
case ParamsRequestTypeEnumClass::PARAMGEN :
$this->requestData->setCmd(KernelConfigClass::getKernelBinPath()."amdaParameterGenerator -p ".$this->requestData->getParamId());
break;
}
$this->requestData->setEnvVars(KernelConfigClass::getExecEnvVarArray());
if (!parent::init())
return false;
$this->requestData->setSuccess(false);
$this->requestData->setLastErrorMessage('Cannot init params request');
if ($this->requestData->getCompilationPath() == '')
{
$this->requestData->setLastErrorMessage('Compilation path for params request not defined');
return false;
}
if (!is_dir($this->requestData->getCompilationPath()))
{
if (!mkdir($this->requestData->getCompilationPath(),0777))
{
$this->requestData->setLastErrorMessage('Cannot create compilation path for params request');
return false;
}
}
if ($this->requestData->getRequestType() == ParamsRequestTypeEnumClass::XMLREQUEST)
{
foreach ($this->requestData->getRequestNodes() as $requestNode)
{
//create XML request file
$doc = new DOMDocument("1.0", "UTF-8");
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
if (!$xmlNode = $requestNode->toXMLNode($doc))
{
$this->requestData->setLastErrorMessage('Cannot create params request XML file for request '.$requestNode->getRealIndex());
return false;
}
$doc->appendChild($xmlNode);
if (!$doc->save($this->getRequestFilePath($requestNode->getRealIndex())))
{
$this->requestData->setLastErrorMessage('Cannot save params request XML file for request '.$requestNode->getRealIndex());
return false;
}
//libxml_use_internal_errors(true);
if (!$doc->schemaValidate(KernelConfigClass::getXSDRequestFilePath()))
{
//$error_msg = "";
//$errors = libxml_get_errors();
//foreach ($errors as $error) {
// if ($error_msg != "")
// $error_msg .= PHP_EOL;
// $error_msg .= 'XML error "'.$error->message.'" ['.$error->level.'] (Code '.$error->code.') in '.$error->file.' on line '.$error->line.' column '.$error->column;
//}
//libxml_clear_errors();
$this->requestData->setLastErrorMessage('Params request XML file not valid for request '.$requestNode->getRealIndex()/*.' ('.$error_msg.')'*/);
return false;
}
//libxml_use_internal_errors(false);
}
}
//create config files
KernelConfigClass::write($this->requestData->getWorkingPath(), $this->requestData->getCompilationPath(), $this->requestData->getLocalBasePath());
//copy parameters files
foreach ($this->requestData->getParamsToCopy() as $key => $value)
{
if (!file_exists($value))
{
$this->requestData->setLastErrorMessage('Cannot find param definition file for '.$key);
return false;
}
$destinationFile = KernelConfigClass::getRequestParamsPath($this->requestData->getWorkingPath()).$key.".xml";
if (!copy($value,$destinationFile))
{
$this->requestData->setLastErrorMessage('Cannot copy param definition file for '.$key);
return false;
}
touch($destinationFile, filemtime($value));
}
//create processed params files
foreach ($this->requestData->getProcessParamsToCreate() as $key => $value)
{
$doc = new DOMDocument("1.0", "UTF-8");
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
if (!$xmlNode = $value["param"]->toXMLNode($doc))
{
$this->requestData->setLastErrorMessage('Cannot create params XML file for '.$key);
return false;
}
$doc->appendChild($xmlNode);
/*if (!$doc->schemaValidate(KernelConfigClass::getXSDParameterFilePath()))
{
$this->requestData->setLastErrorMessage('Params XML file not valid for '.$key);
return false;
}*/
$destinationFile = KernelConfigClass::getRequestParamsPath($this->requestData->getWorkingPath()).$key.".xml";
if (!$doc->save($destinationFile))
{
$this->requestData->setLastErrorMessage('Cannot save params XML file for '.$key);
return false;
}
touch($destinationFile, $value["dateModif"]);
}
//create local params files
foreach ($this->requestData->getLocalParamsToCreate() as $key => $value)
{
$doc = new DOMDocument("1.0", "UTF-8");
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
if (!$xmlNode = $value["param"]->toXMLNode($doc))
{
$this->requestData->setLastErrorMessage('Cannot create params XML file for '.$key);
return false;
}
$doc->appendChild($xmlNode);
$destinationFile = KernelConfigClass::getRequestParamsPath($this->requestData->getWorkingPath()).$key.".xml";
if (!$doc->save($destinationFile))
{
$this->requestData->setLastErrorMessage('Cannot save params XML file for '.$key);
return false;
}
touch($destinationFile, $value["dateModif"]);
}
//create and copy local params files
foreach ($this->requestData->getLocalParamsToCreateAndCopy() as $key => $value)
{
$doc = new DOMDocument("1.0", "UTF-8");
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
if (!$xmlNode = $value["param"]->toXMLNode($doc))
{
$this->requestData->setLastErrorMessage('Cannot create params XML file for '.$key);
return false;
}
$doc->appendChild($xmlNode);
$originFile = IHMConfigClass::getUserWSPath().$key.".xml";
$destinationFile = KernelConfigClass::getRequestParamsPath($this->requestData->getWorkingPath()).$key.".xml";
if (!$doc->save($destinationFile) || !$doc->save($originFile))
{
$this->requestData->setLastErrorMessage('Cannot save params XML file for '.$key);
return false;
}
touch($originFile, $value["dateModif"]);
touch($destinationFile, $value["dateModif"]);
}
return true;
}
/*
* @brief Run a params request
*/
public function run()
{
return parent::run();
}
/*
* @brief Get the request file path for AMDA_Kernel
*/
private function getRequestFilePath($requestIndex)
{
return $this->requestData->getWorkingPath()."request_".$requestIndex.".xml";
}
}
?>