IHMUserParamManagerClass.php
14.5 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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<?php
/**
* @class IHMUserParamManagerClass
* @brief Manager for IHM user parameter properties file
* @details
*/
class IHMUserParamManagerClass
{
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 $infoDerivedYTitleNode = 'ytitle';
private static $infoDerivedDescriptionNode = 'description';
private static $infoDerivedParsedExpNode = 'parsedExp';
private static $infoDerivedParsedExpValAtt = 'exp';
private static $infoDerivedParsedExpHashAtt = 'hash';
private static $infoDerivedParsedExpParamsAtt = 'params';
private static $infoDerivedUndefined = 'undefined';
//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 ($derivedNodes->length > 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, $paramExpression),
"dateModif" => $dateModif
));
}
}
$userParams["derived"] = $derivedParams;
//get uploaded parameter node
$uploadedNodes = $dom->getElementsByTagName(self::$mgrUploadedNode);
$uploadedParams = array();
if ($uploadedNodes->length > 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, $paramExpression)
{
//get full path
$path = IHMConfigClass::getUserDerivedParamFilePath($paramId);
$result = array(
"units" => "",
"yTitle" => "",
"description" => "",
"parsedExpression" => NULL,
);
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 ($unitsNodes->length > 0) {
$result["units"] = $unitsNodes->item(0)->nodeValue;
if ($result["units"] == self::$infoDerivedUndefined) {
$result["units"] = "";
}
}
//get parameter y title
$yTitleNodes = $dom->getElementsByTagName(self::$infoDerivedYTitleNode);
if ($yTitleNodes->length > 0) {
$result["yTitle"] = $yTitleNodes->item(0)->nodeValue;
if ($result["yTitle"] == self::$infoDerivedUndefined) {
$result["yTitle"] = "";
}
}
//get parameter description
$descNodes = $dom->getElementsByTagName(self::$infoDerivedDescriptionNode);
if ($descNodes->length > 0)
$result["description"] = $descNodes->item(0)->nodeValue;
//get parsed expression if exists
$parsedExpNodes = $dom->getElementsByTagName(self::$infoDerivedParsedExpNode);
if ($parsedExpNodes->length > 0) {
$parsedExpNode = $parsedExpNodes->item(0);
$parsedExpVal = $parsedExpNode->getAttribute(self::$infoDerivedParsedExpValAtt);
$parsedExpHash = $parsedExpNode->getAttribute(self::$infoDerivedParsedExpHashAtt);
$parsedExpParams = $parsedExpNode->getAttribute(self::$infoDerivedParsedExpParamsAtt);
if (!empty($parsedExpVal) && !empty($parsedExpParams) && (md5($paramExpression) == $parsedExpHash)) {
$params = array();
foreach (explode(',',$parsedExpParams) as $param) {
$params[] = array(
'paramid' => $param,
);
}
$result['parsedExpression'] = array(
"expression" => $parsedExpVal,
"params" => $params,
);
}
}
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 ($minSamplingNodes->length > 0)
$result["minSampling"] = $minSamplingNodes->item(0)->nodeValue;
//get parameter max sampling
$maxSamplingNodes = $dom->getElementsByTagName(self::$infoUploadedMaxSamplingNode);
if ($maxSamplingNodes->length > 0)
$result["maxSampling"] = $maxSamplingNodes->item(0)->nodeValue;
else
$result["maxSampling"] = $result["minSampling"];
//get parameter real var
$realVarNodes = $dom->getElementsByTagName(self::$infoUploadedRealVarNode);
if ($realVarNodes->length > 0)
$result["realVar"] = $realVarNodes->item(0)->nodeValue;
//get parameter type
$typeNodes = $dom->getElementsByTagName(self::$infoUploadedTypeNode);
if ($typeNodes->length > 0)
$result["type"] = $typeNodes->item(0)->nodeValue;
//get parameter size
$sizeNodes = $dom->getElementsByTagName(self::$infoUploadedSizeNode);
if ($sizeNodes->length > 0)
$result["size"] = $sizeNodes->item(0)->nodeValue;
//get parameter VirtualInstrument ID
$viIdNodes = $dom->getElementsByTagName(self::$infoUploadedVIIdNode);
if ($viIdNodes->length > 0)
$result["viId"] = $viIdNodes->item(0)->nodeValue;
//get parameter plot type
$plotTypeNodes = $dom->getElementsByTagName(self::$infoUploadedPlotTypeNode);
if ($plotTypeNodes->length > 0)
$result["plotType"] = $plotTypeNodes->item(0)->nodeValue;
//get parameter y units
$unitsNodes = $dom->getElementsByTagName(self::$infoUploadedUnitsNode);
if ($unitsNodes->length > 0)
$result["units"] = $unitsNodes->item(0)->nodeValue;
//get parameter y title
$yTitleNodes = $dom->getElementsByTagName(self::$infoUploadedYTitleNode);
if ($yTitleNodes->length > 0)
$result["yTitle"] = $yTitleNodes->item(0)->nodeValue;
//get table definition
$tableDefNodes = $dom->getElementsByTagName(self::$infoUploadedTableDefNode);
if ($tableDefNodes->length > 0)
{
$tableDefNode = $tableDefNodes->item(0);
$tableDefType = $tableDefNode->getAttribute('tableDefType');
$channelsDefType = $tableDefNode->getAttribute('channelsDefType');
$tableName = $tableDefNode->getAttribute('tableName');
$tableUnits = $tableDefNode->getAttribute('tableUnits');
$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, 'tableName' => $tableName, 'tableUnits' => $tableUnits, 'data' => $tableData);
}
return $result;
}
public function saveDerivedParameterParsedExpression($paramId, $expression, $hash, $params) {
//get full path
$path = IHMConfigClass::getUserDerivedParamFilePath($paramId);
if (!file_exists($path))
return FALSE;
//load xml file
$dom = new DomDocument("1.0");
if (!$dom->load($path))
return FALSE;
$modifTime = filemtime($path);
$parsedExpNodes = $dom->getElementsByTagName(self::$infoDerivedParsedExpNode);
if ($parsedExpNodes->length == 0) {
//create node
$parsedExpNode = $dom->createElement(self::$infoDerivedParsedExpNode);
$dom->documentElement->appendChild($parsedExpNode);
}
else {
$parsedExpNode = $parsedExpNodes->item(0);
}
$parsedExpNode->setAttribute(self::$infoDerivedParsedExpValAtt, $expression);
$parsedExpNode->setAttribute(self::$infoDerivedParsedExpHashAtt, $hash);
$parsedExpNode->setAttribute(self::$infoDerivedParsedExpParamsAtt, implode(',',$params));
$dom->save($path);
//Restore file modification time to prevent librairie re-compilation
touch($path, $modifTime);
return TRUE;
}
}