ParamsRequestDataClass.php
1.86 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
<?php
/**
* @class ParamsRequestDataClass
* @brief Data for a params request. Inherits from ProcessRequestDataClass
* @details
*/
class ParamsRequestDataClass extends ProcessRequestDataClass
{
private $requestNode = null;
private $compilationPath = "";
private $waitingResults = array();
private $processParamsToCreate = array();
private $paramsToCopy = array();
function __construct()
{
parent::__construct();
$this->requestNode = new RequestNodeClass();
}
public function getCompilationPath()
{
return $this->compilationPath;
}
public function setCompilationPath($compilationPath)
{
$this->compilationPath = $compilationPath;
}
public function getRequestNode()
{
return $this->requestNode;
}
public function getWaitingResult($key)
{
return $this->waitingResults[$key];
}
public function addWaitingResult($key, $result)
{
$this->waitingResults[$key] = $result;
}
public function getParamsToCopy()
{
return $this->paramsToCopy;
}
public function addParamToCopy($paramId,$paramFilePath)
{
$this->paramsToCopy[$paramId] = $paramFilePath;
}
public function getProcessParamsToCreate()
{
return $this->processParamsToCreate;
}
public function addProcessParamToCreate($paramId, $expression, $getParams, $sampling, $gap, $dateModif)
{
$newParam = new ParamNodeClass();
$newParam->setId($paramId);
$newParam->setSampling($sampling);
if (isset($gap) && ($gap > 0))
$newParam->setGap($gap);
foreach ($getParams as $getParam)
{
$amdaParamNode = $newParam->addParamGet(ParamGetTypeEnum::AMDAPARAM);
$amdaParamNode->setParamName($getParam);
}
$newParam->setProcess($expression);
$newParam->setOutput();
$this->processParamsToCreate[$paramId] = array('param' => $newParam, 'dateModif' => $dateModif);
}
}
?>