IHMUserParamLoaderClass.php
11.4 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
<?php
/**
* @class IHMUserParamLoaderClass
* @brief Loader for IHM user parameter properties
* @details
*/
class IHMUserParamLoaderClass
{
protected $userParamsList = null;
//derived parameter in manager file
private static $mgrDerivedNode = 'paramList';
private static $mgrDerivedParamNode = 'param';
private static $mgrDerivedParamIdAtt = 'xml:id';
private static $mgrDerivedParamNameAtt = 'name';
private static $mgrDerivedParamExpressionAtt = 'buildchain';
private static $mgrDerivedParamTimeStepAtt = 'timestep';
//additional info for derived parameter
private static $infoDerivedUnitsNode = 'units';
private static $infoDerivedDescriptionNode = 'description';
//uploaded parameters in manager file
private static $mgrUploadedNode = 'mydataList';
private static $mgrUploadedParamNode = 'mydata';
private static $mgrUploadedParamIdAtt = 'xml:id';
private static $mgrUploadedParamNameAtt = 'name';
//additional info for uploaded parameter
private static $infoUploadedMinSamplingNode = 'minsampling';
private static $infoUploadedMaxSamplingNode = 'maxsampling';
private static $infoUploadedRealVarNode = 'realvar';
private static $infoUploadedTypeNode = 'type';
private static $infoUploadedSizeNode = 'size';
private static $infoUploadedVIIdNode = 'vi';
private static $infoUploadedPlotTypeNode = 'plottype';
private static $infoUploadedTableDefNode = 'tableDef';
private static $infoUploadedUnitsNode = 'units';
private static $infoUploadedYTitleNode = 'ytitle';
/*
* @brief Constructor
*/
function __construct()
{
}
/*
* @brief Get derived parameter info from name ("ws_***")
*/
public function getDerivedParameterFromName($paramName)
{
if (!preg_match("#^ws_#",$paramName))
return array("success" => false, "message" => "Bad derived parameter name");
//extract real parameter name
$realName = substr($paramName , 3);
//try to load user parameters definition if not already done
if (!isset($this->userParamsList))
$this->userParamsList = $this->loadUserParamManagerFile();
if (!$this->userParamsList["success"])
return $this->userParamsList["success"];
if (isset($this->userParamsList["params"]) && isset($this->userParamsList["params"]["derived"]))
{
//find the parameter info
foreach($this->userParamsList["params"]["derived"] as $paramInfo)
{
if ($paramInfo["name"] == $realName)
return array("success" => true, "param" => $paramInfo);
}
}
return array("success" => false, "message" => "Cannot find derived parameter");
}
/*
* @brief Get derived parameter name from id
*/
public function getDerivedParameterNameFromId($paramId)
{
if (!preg_match("#^ws_#",$paramId))
return array("success" => false, "message" => "Bad derived parameter id");
//try to load user parameters definition if not already done
if (!isset($this->userParamsList))
$this->userParamsList = $this->loadUserParamManagerFile();
if (!$this->userParamsList["success"])
return $this->userParamsList["success"];
if (isset($this->userParamsList["params"]) && isset($this->userParamsList["params"]["derived"]))
{
//find the parameter name
foreach($this->userParamsList["params"]["derived"] as $paramInfo)
{
if ($paramInfo["id"] == $paramId)
return array("success" => true, "name" => $paramInfo["name"]);
}
}
return array("success" => false, "message" => "Cannot find derived parameter");
}
/*
* @brief Get uploaded parameter info from name ("wsd_***")
*/
public function getUploadedParameterFromName($paramName)
{
if (!preg_match("#^wsd_#",$paramName))
return array("success" => false, "message" => "Bad uploaded parameter name");
//extract real parameter name
$realName = substr($paramName , 4);
//try to load user parameters definition if not already done
if (!isset($this->userParamsList))
$this->userParamsList = $this->loadUserParamManagerFile();
if (!$this->userParamsList["success"])
return $this->userParamsList["success"];
if (isset($this->userParamsList["params"]) && isset($this->userParamsList["params"]["uploaded"]))
{
//find the parameter info
foreach($this->userParamsList["params"]["uploaded"] as $paramInfo)
{
if ($paramInfo["name"] == $realName)
return array("success" => true, "param" => $paramInfo);
}
}
return array("success" => false, "message" => "Cannot find uploaded parameter");
}
/*
* @brief Get uploaded parameter name from id
*/
public function getUploadedParameterNameFromId($paramId)
{
if (!preg_match("#^wsd_#",$paramId))
return array("success" => false, "message" => "Bad uploaded parameter id");
//try to load user parameters definition if not already done
if (!isset($this->userParamsList))
$this->userParamsList = $this->loadUserParamManagerFile();
if (!$this->userParamsList["success"])
return $this->userParamsList["success"];
if (isset($this->userParamsList["params"]) && isset($this->userParamsList["params"]["uploaded"]))
{
//find the parameter info
foreach($this->userParamsList["params"]["uploaded"] as $paramInfo)
{
if ($paramInfo["id"] == $paramId)
return array("success" => true, "name" => $paramInfo["name"]);
}
}
return array("success" => false, "message" => "Cannot find uploaded parameter");
}
/*
* @brief Load derived parameter manager file
*/
private function loadUserParamManagerFile()
{
//load xml file
$dom = new DomDocument("1.0");
if (!$dom->load(IHMConfigClass::getUserParamManagerFilePath()))
return array("success" => false, "message" => "Cannot load user parameter manager file");
$userParams = array();
//get derived parameter node
$derivedNodes = $dom->getElementsByTagName(self::$mgrDerivedNode);
$derivedParams = array();
if (count($derivedNodes) > 0)
{
$derivedParamNodes = $derivedNodes->item(0)->getElementsByTagName(self::$mgrDerivedParamNode);
foreach ($derivedParamNodes as $derivedParamNode)
{
//id
$paramId = $derivedParamNode->getAttribute(self::$mgrDerivedParamIdAtt);
//modification date
$dateModif = filemtime(IHMConfigClass::getUserDerivedParamFilePath($paramId));
//name
$paramName = $derivedParamNode->getAttribute(self::$mgrDerivedParamNameAtt);
//expression
$paramExpression = $derivedParamNode->getAttribute(self::$mgrDerivedParamExpressionAtt);
//timestep
$paramTimeStep = $derivedParamNode->getAttribute(self::$mgrDerivedParamTimeStepAtt);
array_push($derivedParams,array(
"id" => $paramId,
"name" => $paramName,
"expression" => $paramExpression,
"timestep" => $paramTimeStep,
"info" => $this->loadDerivedParameterInfo($paramId),
"dateModif" => $dateModif
));
}
}
$userParams["derived"] = $derivedParams;
//get uploaded parameter node
$uploadedNodes = $dom->getElementsByTagName(self::$mgrUploadedNode);
$uploadedParams = array();
if (count($uploadedNodes) > 0)
{
$uploadedParamNodes = $uploadedNodes->item(0)->getElementsByTagName(self::$mgrUploadedParamNode);
foreach ($uploadedParamNodes as $uploadedParamNode)
{
//id
$paramId = $uploadedParamNode->getAttribute(self::$mgrUploadedParamIdAtt);
//modification date
$dateModif = filemtime(IHMConfigClass::getUserUploadedParamFilePath($paramId));
//name
$paramName = $uploadedParamNode->getAttribute(self::$mgrUploadedParamNameAtt);
array_push($uploadedParams,array(
"id" => $paramId,
"name" => $paramName,
"info" => $this->loadUploadedParameterInfo($paramId),
"dateModif" => $dateModif
));
}
}
$userParams["uploaded"] = $uploadedParams;
return array("success" => true, "params" => $userParams);
}
/*
* @brief Load additionnal derived parameter info from paramId
*/
private function loadDerivedParameterInfo($paramId)
{
//get full path
$path = IHMConfigClass::getUserDerivedParamFilePath($paramId);
$result = array(
"units" => "",
"description" => ""
);
if (!file_exists($path))
return $result;
//load xml file
$dom = new DomDocument("1.0");
if (!$dom->load($path))
return $result;
//get parameter units
$unitsNodes = $dom->getElementsByTagName(self::$infoDerivedUnitsNode);
if (count($unitsNodes) > 0)
$result["units"] = $unitsNodes->item(0)->nodeValue;
//get parameter description
$descNodes = $dom->getElementsByTagName(self::$infoDerivedDescriptionNode);
if (count($descNodes) > 0)
$result["description"] = $descNodes->item(0)->nodeValue;
return $result;
}
/*
* @brief Load additionnal uploaded parameter info from paramId
*/
private function loadUploadedParameterInfo($paramId)
{
//get full path
$path = IHMConfigClass::getUserUploadedParamFilePath($paramId);
$result = array();
if (!file_exists($path))
return $result;
//load xml file
$dom = new DomDocument("1.0");
if (!$dom->load($path))
return $result;
//get parameter min sampling
$minSamplingNodes = $dom->getElementsByTagName(self::$infoUploadedMinSamplingNode);
if (count($minSamplingNodes) > 0)
$result["minSampling"] = $minSamplingNodes->item(0)->nodeValue;
//get parameter max sampling
$maxSamplingNodes = $dom->getElementsByTagName(self::$infoUploadedMaxSamplingNode);
if (count($maxSamplingNodes) > 0)
$result["maxSampling"] = $maxSamplingNodes->item(0)->nodeValue;
//get parameter real var
$realVarNodes = $dom->getElementsByTagName(self::$infoUploadedRealVarNode);
if (count($realVarNodes) > 0)
$result["realVar"] = $realVarNodes->item(0)->nodeValue;
//get parameter type
$typeNodes = $dom->getElementsByTagName(self::$infoUploadedTypeNode);
if (count($typeNodes) > 0)
$result["type"] = $typeNodes->item(0)->nodeValue;
//get parameter size
$sizeNodes = $dom->getElementsByTagName(self::$infoUploadedSizeNode);
if (count($sizeNodes) > 0)
$result["size"] = $sizeNodes->item(0)->nodeValue;
//get parameter VirtualInstrument ID
$viIdNodes = $dom->getElementsByTagName(self::$infoUploadedVIIdNode);
if (count($viIdNodes) > 0)
$result["viId"] = $viIdNodes->item(0)->nodeValue;
//get parameter plot type
$plotTypeNodes = $dom->getElementsByTagName(self::$infoUploadedPlotTypeNode);
if (count($plotTypeNodes) > 0)
$result["plotType"] = $plotTypeNodes->item(0)->nodeValue;
//get parameter y units
$unitsNodes = $dom->getElementsByTagName(self::$infoUploadedUnitsNode);
if (count($unitsNodes) > 0)
$result["units"] = $unitsNodes->item(0)->nodeValue;
//get parameter y title
$yTitleNodes = $dom->getElementsByTagName(self::$infoUploadedYTitleNode);
if (count($yTitleNodes) > 0)
$result["yTitle"] = $yTitleNodes->item(0)->nodeValue;
//get table definition
$tableDefNodes = $dom->getElementsByTagName(self::$infoUploadedTableDefNode);
if (count($tableDefNodes) > 0)
{
$tableDefNode = $tableDefNodes->item(0);
$tableDefType = $tableDefNode->getAttribute('tableDefType');
$channelsDefType = $tableDefNode->getAttribute('channelsDefType');
$tableData = array();
foreach ($tableDefNode->childNodes as $tableDataNode)
{
if ($tableDataNode->nodeType != XML_ELEMENT_NODE)
continue;
$tableData[$tableDataNode->tagName] = $tableDataNode->nodeValue;
}
$result["tableDef"] = array('tableDefType' => $tableDefType, 'channelsDefType' => $channelsDefType, 'data' => $tableData);
}
return $result;
}
}