Blame view

src/InputOutput/IHMImpl/Tools/IHMParamManagerClass.php 32.8 KB
22521f1c   Benjamin Renard   First commit
1
2
3
4
5
6
7
<?php

/**
 * @class IHMParamManagerClass
 * @brief Parameter manager
 * @details
 */
22521f1c   Benjamin Renard   First commit
8
9
class IHMParamManagerClass
{
96c9cffa   Benjamin Renard   Keep expression p...
10
	protected $userParameterMgr = null;
bf27ba04   Benjamin Renard   Add templated par...
11
	protected $templateParamsManager = null;
ffc5cb81   Elena.Budnik   temporary commit
12
	protected $paramImpexMgr     = null;
52c1e291   Benjamin Renard   Generate TT and c...
13
	protected $ttCatMgr = null;
f03c62e3   Benjamin Renard   Keep in cache res...
14
	protected $cacheExpressionParser = null;
22521f1c   Benjamin Renard   First commit
15
16
17
18
19
20
	
	/*
	 * @brief Constructor
	*/
	function __construct()
	{
bf27ba04   Benjamin Renard   Add templated par...
21
		$this->templateParamsManager = new IHMParamTemplateClass();
f03c62e3   Benjamin Renard   Keep in cache res...
22
		$this->cacheExpressionParser = array();
22521f1c   Benjamin Renard   First commit
23
24
	}

4c975261   Benjamin Renard   Add modif. time f...
25
	public function addGeneratedParam($paramId, $expression, $sampling_mode, $sampling_step, $ref_param, $paramsData)
cd28a380   Benjamin Renard   Generate param in...
26
	{
a928f9d3   Benjamin Renard   New parser integr...
27
28
29
30
		$expressionInfo = $this->parseExpression($expression, $paramsData->getWorkingPath());
		if (!$expressionInfo['success']) {
			throw new Exception($expressionInfo['message']);
		}
cd28a380   Benjamin Renard   Generate param in...
31
32
33

                //create a process param for the derived parameter
                $this->addProcessParam($paramId, $expressionInfo["expression"], $expression,
4c975261   Benjamin Renard   Add modif. time f...
34
                                $expressionInfo['params'], $sampling_mode, $sampling_step, $ref_param,
cd28a380   Benjamin Renard   Generate param in...
35
36
37
                                0, time(), "", "", $paramsData);
	}

22521f1c   Benjamin Renard   First commit
38
39
40
	/*
	 * @brief Add an existing parameter
	*/
52859c27   Benjamin Renard   Give the possibil...
41
	public function addExistingParam($param, $paramsData, $templateArgs = NULL, $tableLink = NULL)
d1a35428   Benjamin Renard   Update template a...
42
	{
22521f1c   Benjamin Renard   First commit
43
44
45
46
		if ($this->isDerivedParam($param))
			return $this->addDerivedParam($param,$paramsData);
		else if ($this->isUploadedParam($param))
			return $this->addUploadedParam($param,$paramsData);
ffc5cb81   Elena.Budnik   temporary commit
47
48
		else if ($this->isImpexParam($param))
			return $this->addImpexParam($param,$paramsData,$templateArgs);	
22521f1c   Benjamin Renard   First commit
49
		else
52859c27   Benjamin Renard   Give the possibil...
50
			return $this->addLocalParam($param,$paramsData,$templateArgs, $tableLink);
22521f1c   Benjamin Renard   First commit
51
52
53
54
55
56
		return "";
	}

	/*
	 * @brief Add a process parameter
	*/
4c975261   Benjamin Renard   Add modif. time f...
57
	public function addProcessParam($paramId,$expression,$expression_info,$params, $sampling_mode, $sampling_step, $ref_param, $gap,$dateModif,$units,$ytitle,$paramsData)
c0535e83   Benjamin Renard   Use units and yTi...
58
	{
4c975261   Benjamin Renard   Add modif. time f...
59
		$paramsData->addProcessParamToCreate($paramId, $expression, $expression_info, $params, $sampling_mode, $sampling_step, $ref_param, $gap,$dateModif, $units, $ytitle); 
ffc5cb81   Elena.Budnik   temporary commit
60
	 
e4545ed5   Benjamin Renard   Implement templat...
61
		foreach ($params as $param) {
ffc5cb81   Elena.Budnik   temporary commit
62
63
			$template_args = NULL; 
			 
e4545ed5   Benjamin Renard   Implement templat...
64
65
			if (array_key_exists("template_args", $param))
				$template_args = $param["template_args"];
ffc5cb81   Elena.Budnik   temporary commit
66
	 		 
e4545ed5   Benjamin Renard   Implement templat...
67
68
			$this->addExistingParam($param["paramid"],$paramsData,$template_args);
		}
4c975261   Benjamin Renard   Add modif. time f...
69
70
71
		if (!empty($ref_param)) {
			$this->addExistingParam($ref_param, $paramsData,$template_args);
		}
22521f1c   Benjamin Renard   First commit
72
73
74
75
76

		return true;
	}

	/*
52c1e291   Benjamin Renard   Generate TT and c...
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
	 *  @brief Add a TT or catalog parameter
	 */
	public function addTTCatParam($paramId, $paramsData)
	{
		if (!isset($this->ttCatMgr)) {
			$this->ttCatMgr = new IHMTTCatLoaderClass();
		}
		$info = $this->ttCatMgr->getTTCatInfoFromId($paramId);

		if (!$info["success"]) {
			throw new Exception($info["message"]);
		}

		$status = array();
		$units = "";
		$ytitle = "";
		$flag = "";

		if ($info["info"]["isCatalog"]) {
			$parameters = $this->ttCatMgr->getCatalogParameters($paramId);
			if (!$parameters["success"] || empty($parameters["parameters"])) {
				throw new Exception("Error to extract first parameter of ".$paramId);
			}
			//For the moment, use the first parameter
			$parameter = $parameters["parameters"][0];
			$units     = $parameter["units"];
			$ytitle    = !empty($parameter["name"]) ? $parameter["name"] : $parameter["id"];
			$flag      = $parameter["id"];
			$description = $parameter["description"];
			$desc_parts = array();
71447305   Benjamin Renard   Plot catalog as T...
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
			$defs = explode("-",$description);
			if (empty($description)) {
				//No status defined
				$status = array(
					array(
						"min" => -PHP_FLOAT_MAX,
						"max" => PHP_FLOAT_MAX,
						"name" => "Inside",
						"color" => "[255,0,0]",
					),
				);
			}
			else {
				foreach ($defs as $def) {
					$def = trim($def);
					$p = strpos($def, ":");
					if ($p === FALSE) {
						continue;
					}
					$val = substr($def, 0, $p);
					$val = trim($val);
					$name = substr($def, $p+1);
52c1e291   Benjamin Renard   Generate TT and c...
129
					$name = trim($name);
71447305   Benjamin Renard   Plot catalog as T...
130
131
132
133
134
135
136
137
138
139
140
141
142
143
					$color = "";
					$p = strpos($name, "[");
					if ($p !== FALSE) {
						$color = substr($name, $p);
						$color = trim($color);
						$name = substr($name, 0, $p);
						$name = trim($name);
					}
					$status[] = array(
						"min" => floatval($val),
						"max" => floatval($val),
						"name" => $name,
						"color" => $color,
					);
52c1e291   Benjamin Renard   Generate TT and c...
144
				}
52c1e291   Benjamin Renard   Generate TT and c...
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
			}
		}
		else {
			$status = array(
				array(
					"min" => 1,
					"max" => 1,
					"name" => "Inside",
					"color" => "[255,0,0]",
				)
			);
			$ytitle = $info["info"]["name"];
		}

		$paramsData->addTTCatParamToCreate($paramId, $info["info"]["path"], $info["info"]["isShared"], filemtime($info["info"]["path"]), $units, $ytitle, $status, $flag);
		return array("id" => $paramId, "indexes" => array(), "calib_infos" => array());
	} 

	/*
22521f1c   Benjamin Renard   First commit
164
165
166
167
168
169
170
171
172
173
	 * @brief Detect if it's a derived parameter
	*/
	private function isDerivedParam($param)
	{
		return preg_match("#^ws_#",$param);
	}

	/*
	 * @brief Detect if it's a uploaded parameter
	*/
dcdacd5c   Benjamin Renard   Fill plot type in...
174
	public function isUploadedParam($param)
22521f1c   Benjamin Renard   First commit
175
176
177
	{
		return preg_match("#^wsd_#",$param);
	}
ffc5cb81   Elena.Budnik   temporary commit
178
179
180
181
182
183
184
185
	
	/*
	 * @brief Detect if it's IMPEX parameter
	*/
	private function isImpexParam($param)
	{
		return preg_match("#^".IHMImpexParamClass::$paramPrefix."#",$param);
	}
22521f1c   Benjamin Renard   First commit
186
187

	/*
b917498a   Benjamin Renard   Fix #10317
188
189
190
	 * @brief Split param components if defined
	 */
	private function splitParamComponents($param)
22521f1c   Benjamin Renard   First commit
191
	{
22521f1c   Benjamin Renard   First commit
192
		$indexes     = array();
22521f1c   Benjamin Renard   First commit
193
194
195
196
197
198
199
200
201
		$pattern = "/(?P<param>.*)\((?P<components>.*)\)/";
		preg_match_all($pattern, $param, $matches);
		if ((count($matches["param"]) > 0) && (count($matches["components"]) > 0))
		{
			$paramId       = $matches["param"][0];
			$indexes = explode(",",$matches["components"][0]);
		}
		else
			$paramId = $param;
b917498a   Benjamin Renard   Fix #10317
202
203
204
205
206
207
208
209
210
211
212
213
214
		return array('param' => $paramId, 'indexes' => $indexes);
	}

	/*
	 * @brief Add a local parameter
	*/
	private function addLocalParam($param, $paramsData, $templateArgs, $tableLink)
	{
		//local parameter
		$res = $this->splitParamComponents($param);
		$indexes = $res['indexes'];
		$paramId = $res['param'];
		$calib_infos = array();
ffc5cb81   Elena.Budnik   temporary commit
215
	 
bf27ba04   Benjamin Renard   Add templated par...
216
217
		//check templated parameter
		$real_param_id = $paramId;
0dd42438   Benjamin Renard   WS getDataset wit...
218
		$paramPath = "";
bf27ba04   Benjamin Renard   Add templated par...
219
		if ($this->templateParamsManager->isTemplatedParam($paramId)) {
52859c27   Benjamin Renard   Give the possibil...
220
			$paramPath = $this->templateParamsManager->generateTemplatedParamFile($paramId, $templateArgs, $tableLink);
bf27ba04   Benjamin Renard   Add templated par...
221
			$real_param_id = $this->templateParamsManager->getTemplatedParamId($paramId, $templateArgs);
bf27ba04   Benjamin Renard   Add templated par...
222
223
224
225
226
227
228
229
			if (empty($paramPath) || !file_exists($paramPath))
				throw new Exception('Cannot generate parameter template file '.$paramId);
		}
		else {
			$paramPath = IHMConfigClass::getLocalParamDBPath().$paramId.".xml";
			if (!file_exists($paramPath))
				throw new Exception('Cannot find parameter local file '.$paramId);
		}
22521f1c   Benjamin Renard   First commit
230

bf27ba04   Benjamin Renard   Add templated par...
231
		$paramsData->addParamToCopy($real_param_id,$paramPath);
22521f1c   Benjamin Renard   First commit
232

bf27ba04   Benjamin Renard   Add templated par...
233
		$this->addLinkedLocalParams($paramId, $paramsData, $templateArgs);
22521f1c   Benjamin Renard   First commit
234
			
0dd42438   Benjamin Renard   WS getDataset wit...
235
		return array("id" => $real_param_id, "indexes" => $indexes, "calib_infos" => $calib_infos, "path" => $paramPath);
22521f1c   Benjamin Renard   First commit
236
237
238
239
240
	}

	/*
	 * @brief Add linked parameter
	*/
bf27ba04   Benjamin Renard   Add templated par...
241
	private function addLinkedLocalParams($paramId,$paramsData,$templateArgs = NULL)
22521f1c   Benjamin Renard   First commit
242
	{
952dd7c7   elena   catalog integration
243
244
		$doc = new DOMDocument("1.0", "UTF-8");
		$doc->preserveWhiteSpace = false;
22521f1c   Benjamin Renard   First commit
245
246
		$doc->formatOutput = true;

cd3326be   Benjamin Renard   Fix function used...
247
		$real_param_id = $paramId;
bf27ba04   Benjamin Renard   Add templated par...
248
		if ($this->templateParamsManager->isTemplatedParam($paramId)) {
cd3326be   Benjamin Renard   Fix function used...
249
			$paramPath = $this->templateParamsManager->getTemplatePath($paramId);
8ade06fe   Benjamin Renard   Improve config load
250
			if (empty($paramPath) || !@$doc->load($paramPath))
f1252b32   Benjamin Renard   Add template for ...
251
				throw new Exception('Cannot find parameter template file '.$paramId);
bf27ba04   Benjamin Renard   Add templated par...
252
253
254
		}
		else {
			$paramPath = IHMConfigClass::getLocalParamDBPath().$paramId.".xml";
8ade06fe   Benjamin Renard   Improve config load
255
			if (empty($paramPath) || !@$doc->load($paramPath))
f1252b32   Benjamin Renard   Add template for ...
256
				throw new Exception('Cannot find parameter local file '.$paramId);
bf27ba04   Benjamin Renard   Add templated par...
257
258
		}
			
22521f1c   Benjamin Renard   First commit
259
260
261
262
263
264
265
266
267
268
269
270
271
272
		//<get>
		$getNodes = $doc->getElementsByTagName('get');

		if ($getNodes->length <= 0)
			throw new Exception('Parameter local file '.$paramId.' dont have a getter node');

		$getNode = $getNodes->item(0);

		//<amdaParam name="imf"/>
		$amdaParamNodes = $doc->getElementsByTagName('amdaParam');

		foreach($amdaParamNodes as $amdaParamNode)
		{
			$linkedParamId = $amdaParamNode->getAttribute('name');
cd3326be   Benjamin Renard   Fix function used...
273
			if (empty($linkedParamId))
22521f1c   Benjamin Renard   First commit
274
				continue;
7911f4bc   Benjamin Renard   Another bug with ...
275
			$template_id = $this->templateParamsManager->getTemplateId($linkedParamId);
d1a35428   Benjamin Renard   Update template a...
276
			$tempArgs = isset($templateArgs) ? $templateArgs : array();
7911f4bc   Benjamin Renard   Another bug with ...
277
278
279
			if ($template_id !== FALSE) {
				$linkedParamId = $template_id;
			}
7d35612a   Benjamin Renard   Fix ParamManager ...
280
281
			else {
				$linkedParamId = $this->templateParamsManager->replaceArgs($linkedParamId, $templateArgs);
97d1c981   Benjamin Renard   Fix bug with a te...
282
283
284
				$parsedParam = $this->templateParamsManager->parseTemplatedParam($linkedParamId);
				if ($parsedParam !== FALSE) {
					$linkedParamId = $parsedParam['paramid'];
d1a35428   Benjamin Renard   Update template a...
285
286
287
					foreach ($parsedParam['template_args'] as $key => $val) {
						$tempArgs[$key] = $val;
					}
97d1c981   Benjamin Renard   Fix bug with a te...
288
				}
7d35612a   Benjamin Renard   Fix ParamManager ...
289
			}
7911f4bc   Benjamin Renard   Another bug with ...
290
291

			if ($this->templateParamsManager->isTemplatedParam($linkedParamId)) {
d1a35428   Benjamin Renard   Update template a...
292
293
				$linkedParamPath = $this->templateParamsManager->generateTemplatedParamFile($linkedParamId, $tempArgs);
				$real_linked_param_id = $this->templateParamsManager->getTemplatedParamId($linkedParamId, $tempArgs);
cd3326be   Benjamin Renard   Fix function used...
294
295
			}
			else {
7911f4bc   Benjamin Renard   Another bug with ...
296
297
				$real_linked_param_id = $linkedParamId;
				$linkedParamPath = IHMConfigClass::getLocalParamDBPath().$real_linked_param_id.".xml";
bf27ba04   Benjamin Renard   Add templated par...
298
			}
7911f4bc   Benjamin Renard   Another bug with ...
299
300
			$paramsData->addParamToCopy($real_linked_param_id,$linkedParamPath);
			$this->addLinkedLocalParams($linkedParamId, $paramsData);
22521f1c   Benjamin Renard   First commit
301
302
303
304
305
306
307
308
		}
	}

	/*
	 * @brief Add derived parameter
	*/
	private function addDerivedParam($param,$paramsData)
	{
b917498a   Benjamin Renard   Fix #10317
309
310
311
312
		$res = $this->splitParamComponents($param);
		$indexes = $res['indexes'];
		$param = $res['param'];

f03c62e3   Benjamin Renard   Keep in cache res...
313
		$time = time();
96c9cffa   Benjamin Renard   Keep expression p...
314
315
		if (!isset($this->userParameterMgr))
			$this->userParameterMgr = new IHMUserParamManagerClass();
22521f1c   Benjamin Renard   First commit
316
317
		
		//get derived parameter info
96c9cffa   Benjamin Renard   Keep expression p...
318
		$res = $this->userParameterMgr->getDerivedParameterFromName($param);
f03c62e3   Benjamin Renard   Keep in cache res...
319

22521f1c   Benjamin Renard   First commit
320
321
322
		if (!$res["success"])
			throw new Exception('Error to load derived parameter file : '.$res["message"]);

96c9cffa   Benjamin Renard   Keep expression p...
323
324
325
326
327
328
329
		if (isset($res["param"]["info"]["parsedExpression"])) {
			//Re use existing parsed expression info
			$expressionInfo = $res["param"]["info"]["parsedExpression"];
		}
		else {
			//parse expression
			$expressionInfo = $this->parseExpression($res["param"]["expression"], $paramsData->getWorkingPath());
a928f9d3   Benjamin Renard   New parser integr...
330

96c9cffa   Benjamin Renard   Keep expression p...
331
332
333
			if (!$expressionInfo['success']) {
				throw new Exception($expressionInfo['message']);
			}
ec67a1c5   Benjamin Renard   Store template ar...
334
			$this->userParameterMgr->saveDerivedParameterParsedExpression($res["param"]["id"], $expressionInfo["expression"], md5($res["param"]["expression"]), $expressionInfo['params']);
a928f9d3   Benjamin Renard   New parser integr...
335
		}
96c9cffa   Benjamin Renard   Keep expression p...
336

952dd7c7   elena   catalog integration
337
		$paramId = $param;
b917498a   Benjamin Renard   Fix #10317
338
339
340
341
342
343

		$reference_param = $res["param"]["info"]["reference_param"];
		if (!empty($res["param"]["info"]["reference_param"])) {
			$res_split = $this->splitParamComponents($reference_param);
			$reference_param = $res_split['param'];
		}
952dd7c7   elena   catalog integration
344
345
		
		//create a process param for the derived parameter
e9165342   Benjamin Renard   Write data mining...
346
		$this->addProcessParam($paramId, $expressionInfo["expression"], $res["param"]["expression"],
b917498a   Benjamin Renard   Fix #10317
347
				$expressionInfo['params'], $res["param"]["info"]["sampling_mode"], $res["param"]["info"]["timestep"], $reference_param,
c0535e83   Benjamin Renard   Use units and yTi...
348
349
				0,$res["param"]["dateModif"],!empty($res["param"]["info"]["units"]) ? $res["param"]["info"]["units"] : "",
				!empty($res["param"]["info"]["yTitle"]) ? $res["param"]["info"]["yTitle"] : "", $paramsData);
f03c62e3   Benjamin Renard   Keep in cache res...
350

b917498a   Benjamin Renard   Fix #10317
351
		return array("id" => $paramId, "indexes" => $indexes, "calib_infos" => array());
22521f1c   Benjamin Renard   First commit
352
	}
d1a35428   Benjamin Renard   Update template a...
353

ffc5cb81   Elena.Budnik   temporary commit
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
	/*
	 * @brief Add IMPEX parameter : create dynamically xml parameter descriptor in user WS
	*/
	private function addImpexParam($param,$paramsData,$templateArgs = NULL)	
	{		 	
		if (!isset($this->paramImpexMgr))
			$this->paramImpexMgr = new ImpexParamManager();
			
		$parameterID = $this->paramImpexMgr->getImpexFullParamId($param, $templateArgs);
		
		$requestNodes = $paramsData->getRequestNodes();
		 
		// it is PARAMSGEN 
		if (!$requestNodes) {
			return array("id" => $parameterID); 
		}
	 
		$timesNode = $requestNodes[0]->getTimesNode();
		$intervals = $timesNode->getIntervals();
		$originFile = IHMConfigClass::getUserWSPath().$parameterID.".xml";
	  
		if (!file_exists($originFile)) {
			// create IMPEX parameter info and data				
			$res = $this->paramImpexMgr->createImpexParameter($param, $intervals, $templateArgs);
			
			if (!$res["success"])
				throw new Exception('Error to create IMPEX parameter : '.$res["message"]);
				
			$newParamNode = $paramsData->addLocalParamToCreate($res["param"]["id"], 
				$res["param"]["info"]["viId"], $res["param"]["info"]["realVar"],
				$res["param"]["info"]["minSampling"], $res["param"]["info"]["maxSampling"],
				$res["param"]["info"]["type"],$res["param"]["info"]["size"],
e99d9ed4   Benjamin Renard   Support fillValue...
386
				NULL,$res["param"]["dateModif"],true);
ffc5cb81   Elena.Budnik   temporary commit
387
				
577d5c04   Elena.Budnik   IMPEX integration
388
389
390
391
				$newParamNode->getInfo()->setName($res["param"]["info"]['name']);
				$newParamNode->getInfo()->setShortName($res["param"]["info"]['name']);
				$newParamNode->getInfo()->setUnits($res["param"]["info"]['units']);
				
ffc5cb81   Elena.Budnik   temporary commit
392
393
394
				$tableDef = $res["param"]["info"]["tableDef"];
				if (isset($tableDef) && array_key_exists('tableDefType', $tableDef) && ($tableDef['tableDefType'] != 'NONE'))
				{
577d5c04   Elena.Budnik   IMPEX integration
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
					switch ($tableDef['channelsDefType'])
					{
						case 'BOUND'  :
							$boundTable = $newParamNode->getInfo()->addTable(InfoParamTableTypeEnum::BOUNDS, $res["param"]["info"]["yTitle"]);
							$boundTable->setUnits($res["param"]["info"]["yUnits"]);
							switch ($tableDef['tableDefType'])
							{
								case 'SELECT' :
									$boundTable->setBoundsName($tableDef['data']['bound']);
									$newParamNode->getParamGet()->getLocalParam($res["param"]["info"]["realVar"])->addCalibInfo($tableDef['data']['bound']);
									break;
								default :
									throw new Exception("Unknown tableDefType ".$tableDef['tableDefType']);
							}
							break;
						case 'CENTER' :
							$centerTable = $newParamNode->getInfo()->addTable(InfoParamTableTypeEnum::CENTER, $res["param"]["info"]["yTitle"]);
							$centerTable->setUnits($res["param"]["info"]["yUnits"]);
							$centerTable->setSize($tableDef['data']['width']);
							switch ($tableDef['tableDefType'])
							{
								case 'SELECT' :
									$centerTable->setCenterName($tableDef['data']['center']);
									$newParamNode->getParamGet()->getLocalParam($res["param"]["info"]["realVar"])->addCalibInfo($tableDef['data']['center']);
									break;
								default :
									throw new Exception("Unknown tableDefType ".$tableDef['tableDefType']);
							}
						break;
						default :
							throw new Exception("Unknown tableDefType ".$tableDef['channelsDefType']);
					}
ffc5cb81   Elena.Budnik   temporary commit
427
428
429
430
431
432
433
434
435
436
437
438
439
				}
				
				return array("id" => $res["param"]["id"], "plotType" => $res["param"]["info"]["plotType"]);
			}
		else {		     
			 // add IMPEX parameter data
			 $this->paramImpexMgr->addImpexData($param, $intervals, $templateArgs);			 
			 $paramsData->addParamToCopy($parameterID, $originFile);
			 
			 return array("id" => $parameterID);
		} 
	}
	
22521f1c   Benjamin Renard   First commit
440
441
442
443
444
	/*
	 * @brief Add uploaded parameter
	*/
	private function addUploadedParam($param,$paramsData)
	{
b917498a   Benjamin Renard   Fix #10317
445
446
447
448
		$res = $this->splitParamComponents($param);
		$indexes = $res['indexes'];
		$param = $res['param'];

96c9cffa   Benjamin Renard   Keep expression p...
449
450
		if (!isset($this->userParameterMgr))
			$this->userParameterMgr = new IHMUserParamManagerClass();
944199fe   Benjamin Renard   Use table definit...
451
452
		
		//get uploaded parameter info
96c9cffa   Benjamin Renard   Keep expression p...
453
		$res = $this->userParameterMgr->getUploadedParameterFromName($param);
944199fe   Benjamin Renard   Use table definit...
454
455
456
		
		if (!$res["success"])
			throw new Exception('Error to load uploaded parameter file : '.$res["message"]);
67c43328   Benjamin Renard   Fix uploaded para...
457
458

		$paramId = $param;
944199fe   Benjamin Renard   Use table definit...
459
		
67c43328   Benjamin Renard   Fix uploaded para...
460
		$newParamNode = $paramsData->addLocalParamToCreate($paramId, 
944199fe   Benjamin Renard   Use table definit...
461
462
				$res["param"]["info"]["viId"], $res["param"]["info"]["realVar"],
				$res["param"]["info"]["minSampling"], $res["param"]["info"]["maxSampling"],
e8ff4ba7   Elena.Budnik   integration of as...
463
				$res["param"]["info"]["type"],$res["param"]["info"]["size"],
e99d9ed4   Benjamin Renard   Support fillValue...
464
				$res["param"]["info"]["fillValue"],$res["param"]["dateModif"]);
e8ff4ba7   Elena.Budnik   integration of as...
465

8289ec06   Benjamin Renard   Y-Title and Units...
466
467
468
469
470
471
472
473
		if (!empty($res["param"]["info"]["yTitle"])) {
			$newParamNode->getInfo()->setName($res["param"]["info"]['yTitle']);
			$newParamNode->getInfo()->setShortName($res["param"]["info"]['yTitle']);
		}
		if (!empty($res["param"]["info"]['units'])) {
			$newParamNode->getInfo()->setUnits($res["param"]["info"]['units']);
		}

944199fe   Benjamin Renard   Use table definit...
474
475
476
477
		
		$tableDef = $res["param"]["info"]["tableDef"];
		if (isset($tableDef) && array_key_exists('tableDefType', $tableDef) && ($tableDef['tableDefType'] != 'NONE'))
		{
df380a21   Benjamin Renard   Fix table name de...
478
479
			$tableName = empty($tableDef['tableName']) ? 'Table' : $tableDef['tableName'];
			$tableUnits = empty($tableDef['tableUnits']) ? '' : $tableDef['tableUnits'];
944199fe   Benjamin Renard   Use table definit...
480
481
482
			switch ($tableDef['channelsDefType'])
			{
				case 'MINMAX' :
df380a21   Benjamin Renard   Fix table name de...
483
484
					$minMaxTable = $newParamNode->getInfo()->addTable(InfoParamTableTypeEnum::MINMAX, $tableName);
					$minMaxTable->setUnits($tableUnits);
944199fe   Benjamin Renard   Use table definit...
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
					switch ($tableDef['tableDefType'])
					{
						case 'SELECT' :
							$minMaxTable->setMinName($tableDef['data']['min']);
							$minMaxTable->setMaxName($tableDef['data']['max']);
							$newParamNode->getParamGet()->getLocalParam($res["param"]["info"]["realVar"])->addCalibInfo($tableDef['data']['min']);
							$newParamNode->getParamGet()->getLocalParam($res["param"]["info"]["realVar"])->addCalibInfo($tableDef['data']['max']);
							break;
						case 'MANUAL' :
							$minMaxTable->setMinName('min');
							$minMaxTable->setMaxName('max');
							$clbMinNode = $newParamNode->addClbManual('min');
							$clbMinValues = explode(',', $tableDef['data']['min']);
							foreach ($clbMinValues as $value)
								$clbMinNode->addClbValue($value);
							$clbMaxNode = $newParamNode->addClbManual('max');
							$clbMaxValues = explode(',', $tableDef['data']['max']);
							foreach ($clbMaxValues as $value)
								$clbMaxNode->addClbValue($value);
						break;
					}
					break;
				case 'BOUND'  :
df380a21   Benjamin Renard   Fix table name de...
508
509
					$boundTable = $newParamNode->getInfo()->addTable(InfoParamTableTypeEnum::BOUNDS, $tableName);
					$boundTable->setUnits($tableUnits);
944199fe   Benjamin Renard   Use table definit...
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
					switch ($tableDef['tableDefType'])
					{
						case 'SELECT' :
							$boundTable->setBoundsName($tableDef['data']['bound']);
							$newParamNode->getParamGet()->getLocalParam($res["param"]["info"]["realVar"])->addCalibInfo($tableDef['data']['bound']);
							break;
						case 'MANUAL' :
							$boundTable->setBoundsName('bound');
							$clbBoundNode = $newParamNode->addClbManual('bound');
							$clbBoundValues = explode(',', $tableDef['data']['bound']);
							foreach ($clbBoundValues as $value)
								$clbBoundNode->addClbValue($value);
							break;
					}
					break;
				case 'CENTER' :
df380a21   Benjamin Renard   Fix table name de...
526
527
					$centerTable = $newParamNode->getInfo()->addTable(InfoParamTableTypeEnum::CENTER, $tableName);
					$centerTable->setUnits($tableUnits);
944199fe   Benjamin Renard   Use table definit...
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
					$centerTable->setSize($tableDef['data']['width']);
					switch ($tableDef['tableDefType'])
					{
						case 'SELECT' :
							$centerTable->setCenterName($tableDef['data']['center']);
							$newParamNode->getParamGet()->getLocalParam($res["param"]["info"]["realVar"])->addCalibInfo($tableDef['data']['center']);
							break;
						case 'MANUAL' :
							$centerTable->setCenterName('center');
							$clbCenterNode = $newParamNode->addClbManual('center');
							$clbCenterValues = explode(',', $tableDef['data']['center']);
							foreach ($clbCenterValues as $value)
								$clbCenterNode->addClbValue($value);
							break;
					}
					break;
				case 'CENTERWIDTH' :
df380a21   Benjamin Renard   Fix table name de...
545
546
					$centerWidthTable = $newParamNode->getInfo()->addTable(InfoParamTableTypeEnum::CENTERWIDTH, $tableName);
					$centerWidthTable->setUnits($tableUnits);
944199fe   Benjamin Renard   Use table definit...
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
					switch ($tableDef['tableDefType'])
					{
						case 'SELECT' :
							$centerWidthTable->setCenterName($tableDef['data']['center']);
							$centerWidthTable->setWidthName($tableDef['data']['width']);
							$newParamNode->getParamGet()->getLocalParam($res["param"]["info"]["realVar"])->addCalibInfo($tableDef['data']['center']);
							$newParamNode->getParamGet()->getLocalParam($res["param"]["info"]["realVar"])->addCalibInfo($tableDef['data']['width']);
							break;
						case 'MANUAL' :
							$centerWidthTable->setCenterName('center');
							$centerWidthTable->setWidthName('width');
							$clbCenterNode = $newParamNode->addClbManual('center');
							$clbWidthNode = $newParamNode->addClbManual('width');
							$clbCenterValues = explode(',', $tableDef['data']['center']);
							foreach ($clbCenterValues as $value)
								$clbCenterNode->addClbValue($value);
							$clbWidthValues = explode(',', $tableDef['data']['width']);
							foreach ($clbWidthValues as $value)
								$clbWidthNode->addClbValue($value);
							break;
					}
					break;
			}
		}
		
b917498a   Benjamin Renard   Fix #10317
572
		return array("id" => $paramId, "indexes" => $indexes, "plotType" => $res["param"]["info"]["plotType"]);
22521f1c   Benjamin Renard   First commit
573
	}
96fa912d   Hacene SI HADJ MOHAND   ihm level instead...
574
575
576
577
578
579
580
581
582
583
584

    public function applyFilter($paramsData, $paramData, &$paramInfo) {
        $filter = (isset($paramData->{'param-drawing-object'}->{'filtering-activated'}) && ($paramData->{'param-drawing-object'}->{'filtering-activated'})) ? true : false;
        if (!$filter) {
            return;
        }
        $my_type = $paramData->{'type'};

        switch ($paramData->{'type'}) {
            case 0:
            case 1:
0f020be7   Hacene SI HADJ MOHAND   adding 2d
585
            case 2:
96fa912d   Hacene SI HADJ MOHAND   ihm level instead...
586
587
588
589
590
591
592
593
                // vector
                $dim1_index = ($dim1_is_range || !isset($paramData->{'dim1-index'}) || ($paramData->{'dim1-index'} == '')) ? '*' : $paramData->{'dim1-index'};
                $dim2_index = ($dim2_is_range || !isset($paramData->{'dim2-index'}) || ($paramData->{'dim2-index'} == '')) ? '*' : $paramData->{'dim2-index'};
                if (isset($paramData->{'param-drawing-object'}->{'filtering-level'})) {
                    switch ($paramData->{'param-drawing-object'}->{'filtering-level'}) {
                        case 1:
                            $factor = 6;
                            $nPoints = 100;
24e7e199   Hacene SI HADJ MOHAND   correcting filter...
594
                            $level = "weak";
96fa912d   Hacene SI HADJ MOHAND   ihm level instead...
595
596
597
598
                            break;
                        case 2:
                            $factor = 5;
                            $nPoints = 100;
24e7e199   Hacene SI HADJ MOHAND   correcting filter...
599
                            $level = "intermediate";
96fa912d   Hacene SI HADJ MOHAND   ihm level instead...
600
601
602
603
                            break;
                        case 3:
                            $factor = 4;
                            $nPoints = 100;
0f020be7   Hacene SI HADJ MOHAND   adding 2d
604
                            $level = "strong";
96fa912d   Hacene SI HADJ MOHAND   ihm level instead...
605
606
607
608
                            break;
                        default:
                            $factor = 6;
                            $nPoints = 100;
0f020be7   Hacene SI HADJ MOHAND   adding 2d
609
                            $level = "low";
96fa912d   Hacene SI HADJ MOHAND   ihm level instead...
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
                    }
                } else {
                    $factor = 5;
                    $nPoints = 100;
                }

                if ($dim1_index != '*') {
                    $template_args = array(
                        'paramid' => $paramInfo['id'],
                        'factor' => $factor,
                        'nPoints' => $nPoints,
                        'index' => $dim1_index,
                        'level' => $level
                    );
                    $paramInfo = $this->addExistingParam('filter_spikes_component', $paramsData, $template_args);
                } else {
                    $template_args = array(
                        'paramid' => $paramInfo['id'],
                        'factor' => $factor,
                        'nPoints' => $nPoints,
0f020be7   Hacene SI HADJ MOHAND   adding 2d
630
                        'level' => $level
96fa912d   Hacene SI HADJ MOHAND   ihm level instead...
631
632
633
634
                    );
                    $paramInfo = $this->addExistingParam('filter_spikes', $paramsData, $template_args);
                }
                break;
96fa912d   Hacene SI HADJ MOHAND   ihm level instead...
635
636
637
        }
    }

93c50989   Benjamin Renard   Support Tab2D par...
638
	public function applyRangesAndIndexes($paramsData, $paramData, $force_total_2d, &$paramInfo) {
db7ea505   Benjamin Renard   Fix min max range...
639
640
641
642
643
		$dim1_min = 0;
		$dim1_max = 0;
		$dim2_min = 0;
		$dim2_max = 0;

76792c0e   Benjamin Renard   Sum parameters un...
644
		$dim1_is_range = (isset($paramData->{'dim1-sum-type'}) && ($paramData->{'dim1-sum-type'} > 0));
2c9760b6   Benjamin Renard   Fix empty index d...
645
		$dim1_index = ($dim1_is_range || !isset($paramData->{'dim1-index'}) || ($paramData->{'dim1-index'} == '')) ? '*' : $paramData->{'dim1-index'};
db7ea505   Benjamin Renard   Fix min max range...
646
647
648
649
650
651
652
653
654
655
656
657
658
659
		if ($dim1_is_range) {
			switch ($paramData->{'dim1-sum-type'}) {
				case 1:
					//Sum between a range of value
					$dim1_min = !empty($paramData->{'dim1-min-value'}) ? $paramData->{'dim1-min-value'} : 0;
					$dim1_max = !empty($paramData->{'dim1-max-value'}) ? $paramData->{'dim1-max-value'} : 0;
					break;
				case 2:
					//Sum between indexes
					$dim1_min = !empty($paramData->{'dim1-min-index'}) ? $paramData->{'dim1-min-index'} : 0;
					$dim1_max = !empty($paramData->{'dim1-max-index'}) ? $paramData->{'dim1-max-index'} : 0;
					break;
			}
		}
93c50989   Benjamin Renard   Support Tab2D par...
660

76792c0e   Benjamin Renard   Sum parameters un...
661
		$dim2_is_range = (isset($paramData->{'dim2-sum-type'}) && ($paramData->{'dim2-sum-type'} > 0));
2c9760b6   Benjamin Renard   Fix empty index d...
662
		$dim2_index = ($dim2_is_range || !isset($paramData->{'dim2-index'}) || ($paramData->{'dim2-index'} == '')) ? '*' : $paramData->{'dim2-index'};
db7ea505   Benjamin Renard   Fix min max range...
663
664
665
666
667
668
669
670
671
672
673
674
675
676
		if ($dim2_is_range) {
			switch ($paramData->{'dim2-sum-type'}) {
				case 1:
					//Sum between a range of value
					$dim2_min = !empty($paramData->{'dim2-min-value'}) ? $paramData->{'dim2-min-value'} : 0;
					$dim2_max = !empty($paramData->{'dim2-max-value'}) ? $paramData->{'dim2-max-value'} : 0;
					break;
				case 2:
					//Sum between indexes
					$dim2_min = !empty($paramData->{'dim2-min-index'}) ? $paramData->{'dim2-min-index'} : 0;
					$dim2_max = !empty($paramData->{'dim2-max-index'}) ? $paramData->{'dim2-max-index'} : 0;
					break;
			}
		}
93c50989   Benjamin Renard   Support Tab2D par...
677
678
679
680
681
682
683
684
685
686
687
688
689
690

		switch ($paramData->{'type'}) {
			case 0:
				//scalar - nothing to do
				break;
			case 1:
				//Tab1D
				if ($dim1_is_range) {
					$template_args = array(
						'paramid' => $paramInfo['id'],
						'min' => $dim1_min,
						'max' => $dim1_max,
						'relateddim' => 0,
					);
76792c0e   Benjamin Renard   Sum parameters un...
691
					if ($paramData->{'dim1-sum-type'} == 2)
54219b37   Benjamin Renard   Add support for s...
692
693
694
						$paramInfo = $this->addExistingParam('sum_into_table_indexes', $paramsData, $template_args);
					else
						$paramInfo = $this->addExistingParam('sum_into_table_range', $paramsData, $template_args);
93c50989   Benjamin Renard   Support Tab2D par...
695
696
697
698
699
700
701
702
				}
				else if ($dim2_is_range) {
					$template_args = array(
						'paramid' => $paramInfo['id'],
						'min' => $dim2_min,
						'max' => $dim2_max,
						'relateddim' => 1,
					);
76792c0e   Benjamin Renard   Sum parameters un...
703
					if ($paramData->{'dim2-sum-type'} == 2)
54219b37   Benjamin Renard   Add support for s...
704
705
706
						$paramInfo = $this->addExistingParam('sum_into_table_indexes', $paramsData, $template_args);
					else
						$paramInfo = $this->addExistingParam('sum_into_table_range', $paramsData, $template_args);
93c50989   Benjamin Renard   Support Tab2D par...
707
708
709
710
711
712
713
714
715
716
717
				}
				else if ($dim1_index != '*') {
					$paramInfo['indexes'][] = $dim1_index;
				}
				else if ($dim2_index != '*') {
					$paramInfo['indexes'][] = $dim2_index;
				}
				break;
			case 2:
				//Tab2D
				if ($dim1_is_range && $dim2_is_range) {
76792c0e   Benjamin Renard   Sum parameters un...
718
					if ($paramData->{'dim1-sum-type'} != $paramData->{'dim2-sum-type'}) {
54219b37   Benjamin Renard   Add support for s...
719
720
						throw new Exception("Not supported - Dimensions ranges for ".$paramInfo['id']." must have the same type for each dimensions");
					}
93c50989   Benjamin Renard   Support Tab2D par...
721
722
723
724
725
726
727
728
					$template_args = array(
						'paramid' => $paramInfo['id'],
						'min1' => $dim1_min,
						'max1' => $dim1_max,
						'relateddim1' => 0,
						'min2' => $dim2_min,
						'max2' => $dim2_max,
					);
76792c0e   Benjamin Renard   Sum parameters un...
729
					if ($paramData->{'dim1-sum-type'} == 2)
54219b37   Benjamin Renard   Add support for s...
730
731
732
						$paramInfo = $this->addExistingParam('sum_into_table_indexes_2d', $paramsData, $template_args);
					else
						$paramInfo = $this->addExistingParam('sum_into_table_range_2d', $paramsData, $template_args);
93c50989   Benjamin Renard   Support Tab2D par...
733
734
735
736
737
738
739
740
				}
				else if ($dim1_is_range) {
					$template_args = array(
						'paramid' => $paramInfo['id'],
						'min' => $dim1_min,
						'max' => $dim1_max,
						'relateddim' => 0,
					);
52859c27   Benjamin Renard   Give the possibil...
741
742
743
744
					$tableLink = array(
						'paramid' => $paramInfo['id'],
						'relateddim' => 1,
					);
76792c0e   Benjamin Renard   Sum parameters un...
745
					if ($paramData->{'dim1-sum-type'} == 2)
54219b37   Benjamin Renard   Add support for s...
746
747
748
						$paramInfo = $this->addExistingParam('sum_into_table_indexes', $paramsData, $template_args, $tableLink);
					else
						$paramInfo = $this->addExistingParam('sum_into_table_range', $paramsData, $template_args, $tableLink);
93c50989   Benjamin Renard   Support Tab2D par...
749
750
751
752
753
754
755
756
757
758
759
					if ($dim2_index != '*') {
						$paramInfo['indexes'][] = $dim2_index;
					}
				}
				else if ($dim2_is_range) {
					$template_args = array(
						'paramid' => $paramInfo['id'],
						'min' => $dim2_min,
						'max' => $dim2_max,
						'relateddim' => 1,
					);
52859c27   Benjamin Renard   Give the possibil...
760
761
762
763
					$tableLink = array(
						'paramid' => $paramInfo['id'],
						'relateddim' => 0,
					);
76792c0e   Benjamin Renard   Sum parameters un...
764
					if ($paramData->{'dim2-sum-type'} == 2)
54219b37   Benjamin Renard   Add support for s...
765
766
767
						$paramInfo = $this->addExistingParam('sum_into_table_indexes', $paramsData, $template_args, $tableLink);
					else
						$paramInfo = $this->addExistingParam('sum_into_table_range', $paramsData, $template_args, $tableLink);
93c50989   Benjamin Renard   Support Tab2D par...
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
					if ($dim1_index != '*') {
						$paramInfo['indexes'][] = $dim1_index;
					}
				}
				else if (($dim1_index != '*') && ($dim2_index != '*')) {
					$paramInfo['indexes'][] = "[".$dim1_index.",".$dim2_index."]";
				}
				else if ($dim1_index != '*') {
					$paramInfo['indexes'][] = "[".$dim1_index.",*]";
				}
				else if ($dim2_index != '*') {
					$paramInfo['indexes'][] = "[*,".$dim2_index."]";
				}
				else if ($force_total_2d) {
					//total over 2 dims
					$template_args = array(
						'paramid' => $paramInfo['id'],
					);
					$paramInfo = $this->addExistingParam('total_2D', $paramsData, $template_args);
				}
				break;
		}
	}
a928f9d3   Benjamin Renard   New parser integr...
791
792

	public function parseExpression($expression, $workingDir) {
f03c62e3   Benjamin Renard   Keep in cache res...
793
794
795
796
		$outputFileName = "parser_".md5($expression).".xml";
		if (array_key_exists($outputFileName, $this->cacheExpressionParser)) {
			return $this->cacheExpressionParser[$outputFileName];
		}
a928f9d3   Benjamin Renard   New parser integr...
797
798
799
800
801
802
803
		$parserData = new ParserRequestDataClass();
		$parserData->setManagerFilePath(IHMConfigClass::getProcessManagerFilePath());
		$parserData->addExpression($expression);
		$parserData->setWorkingPath($workingDir);
		$parserData->setLocalParamsPath(IHMConfigClass::getLocalParamDBPath());
		$parserData->setConstantsFilePath(IHMConfigClass::getConstantsFilePath());
		$parserData->setFunctionsFilePath(IHMConfigClass::getFunctionsFilePath());
65912bc8   Benjamin Renard   Templated paramet...
804
		$parserData->setParamTemplatesFilePath(IHMConfigClass::getParamTemplateListFilePath());
8cf39be4   Benjamin Renard   Add functions arg...
805
		$parserData->setFunctionsArgsListFilePath(IHMConfigClass::getFunctionsArgsListFilePath());
f03c62e3   Benjamin Renard   Keep in cache res...
806
		$parserData->setOutputFileName($outputFileName);
a928f9d3   Benjamin Renard   New parser integr...
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
		$resultFilePath = $workingDir."/".$outputFileName;

		$parserRequest = new ParserRequestClass();
		$parserRequest->setData($parserData);

		if (!$parserRequest->init() || !$parserRequest->run()) {
			if (file_exists($resultFilePath)) {
				unlink($resultFilePath);
			}
			return array('success' => FALSE, 'message' => 'Error to init or run expression parser');
		}

		//Load result file
		$doc = new DOMDocument();
		$doc->load($resultFilePath);
		if (!$doc->load($resultFilePath)) {
			if (file_exists($resultFilePath)) {
				unlink($resultFilePath);
			}
			return array('success' => FALSE, 'message' => 'Error to load parser result file');
		}

		$expressionNodes = $doc->getElementsByTagName('expression');
		if ($expressionNodes->length == 0) {
			unlink($resultFilePath);
			return array('success' => FALSE, 'message' => 'Cannot get expression nodes in parser result file');
		}

		$crtExpressionNode = NULL;
		foreach ($expressionNodes as $expressionNode) {
			$ihmExpressionNodes = $expressionNode->getElementsByTagName('ihm');
			if ($ihmExpressionNodes->length == 0) {
				continue;
			}
			if ($ihmExpressionNodes->item(0)->nodeValue == $expression) {
				$crtExpressionNode = $expressionNode;
				break;
			}
		}
		
		if (!isset($crtExpressionNode)) {
			unlink($resultFilePath);
			return array('success' => FALSE, 'message' => 'Cannot retrieve expression in parser result file');
		}

		if ($crtExpressionNode->getAttribute('success') != "true") {
			unlink($resultFilePath);
			return array('success' => FALSE, 'message' => 'Synthax error in expression '.$expression);
		}

		$kernelExpressionNodes = $crtExpressionNode->getElementsByTagName('kernel');
		if ($kernelExpressionNodes->length == 0) {
			unlink($resultFilePath);
			return array('success' => FALSE, 'message' => 'Cannot retrieve kernel expression in parser result file');
		}

		$kernelExpression = $kernelExpressionNodes->item(0)->nodeValue;

		if (empty($kernelExpression)) {
			unlink($resultFilePath);
			return array('success' => FALSE, 'message' => 'Parser return an empty expression');
		}

		$params = array();
		$paramsNodes = $crtExpressionNode->getElementsByTagName('params');
		if ($paramsNodes->length != 0) {
			$paramNodes = $paramsNodes->item(0)->getElementsByTagName('param');
			if ($paramNodes->length != 0) {
				foreach ($paramNodes as $paramNode) {
					if (!empty($paramNode->nodeValue)) {
						$params[] = array(
							'paramid' => $paramNode->nodeValue
						);
					}
				}
			}
		}

		unlink($resultFilePath);
		
		if (empty($params)) {
			return array('success' => FALSE, 'message' => 'Expression should contain at least one parameter');
		}

7fc2b4b7   Benjamin Renard   Fix templated par...
891
892
893
894
895
896
897
		foreach ($params as &$param) {
			$templated_param = $this->templateParamsManager->parseTemplatedParam($param['paramid']);
			if ($templated_param !== FALSE) {
				$param = $templated_param;
			}
		}

f03c62e3   Benjamin Renard   Keep in cache res...
898
899
		$this->cacheExpressionParser[$outputFileName] = array('success' => TRUE, 'expression' => $kernelExpression, 'params' => $params);
		return $this->cacheExpressionParser[$outputFileName];
a928f9d3   Benjamin Renard   New parser integr...
900
	}
c3e6d894   Benjamin Renard   Init IHMParamTemp...
901
902
903
904

	public function getTemplateParamsManager() {
		return $this->templateParamsManager;
	}
22521f1c   Benjamin Renard   First commit
905
}