IHMParamTemplateClass.php
6.61 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 IHMParamTemplateClass
* @brief Class used to manage templated parameters
* @details
*/
class IHMParamTemplateClass
{
protected $paramTemplateList = null;
private static $paramTemplateNode = 'paramTemplate';
private static $paramTemplateIdAtt = 'paramId';
private static $paramTemplateFileNameAtt = 'fileName';
private static $paramTemplateArgumentsNode = 'arguments';
private static $paramTemplateArgumentNode = 'argument';
private static $paramTemplateArgumentKeyAtt = 'key';
private static $paramTemplateArgumentNameAtt = 'name';
private static $paramTemplateArgumentTypeAtt = 'type';
private static $paramTemplateArgumentDefaultAtt = 'default';
private static $paramTemplateArgumentListItemNode = 'item';
private static $paramTemplateArgumentListItemKeyAtt = 'key';
private static $paramTemplateArgumentListItemNameAtt = 'name';
/*
* @brief Constructor
*/
function __construct()
{
}
/*
* @brief Get list of templated parameters
*/
public function getParamTemplates() {
$this->loadUserParamManagerFile();
return $this->paramTemplateList;
}
/*
* @brief Check if param_id is a templated parameter
*/
public function isTemplatedParam($param_id) {
$list = $this->getParamTemplates();
return array_key_exists($param_id, $list);
}
/*
* @brief Get templated parameter id
*/
public function getTemplatedParamId($param_id, $template_args) {
$templatePath = $this->getTemplatePath($param_id);
if (empty($templatePath))
return "";
if (!isset($template_args))
$template_args = array();
//Enrich template args with default values
$this->addDefaultValues($param_id, $template_args);
return basename($this->replaceArgs($templatePath, $template_args), ".xml");
}
/*
* @brief Generate parameter file from template
*/
public function generateTemplatedParamFile($param_id, $template_args) {
$templatePath = $this->getTemplatePath($param_id);
if (empty($templatePath))
return "";
if (!isset($template_args))
$template_args = array();
//Enrich template args with default values
$this->addDefaultValues($param_id, $template_args);
$dst_param_id = $this->getTemplatedParamId($param_id, $template_args);
//Build destination file path
$dstDir = IHMConfigClass::getTemplateParamGeneratePath();
if (!is_dir($dstDir))
mkdir($dstDir);
$dstFilePath = $dstDir."/".$dst_param_id.".xml";
//Check if it's necessary to generate the parameter file
if (file_exists($dstFilePath)) {
$dateModifDst = filemtime($dstFilePath);
$dateModifTemplate = filemtime($templatePath);
if ($dateModifTemplate != $dateModifDst)
//no modification - reuse old generated file
return $dstFilePath;
}
//Generate file
$templateHandle = fopen($templatePath, "r");
$dstHandle = fopen($dstFilePath, "w");
if (!$templateHandle || !$dstHandle)
return "";
while (($line = fgets($templateHandle)) !== false) {
fwrite($dstHandle, $this->replaceArgs($line, $template_args));
}
fclose($templateHandle);
fclose($dstHandle);
$dateModifTemplate = filemtime($templatePath);
touch($dstFilePath, $dateModifTemplate);
return $dstFilePath;
}
/*
* @brief Get template file path
*/
private function getTemplatePath($param_id) {
if (!$this->isTemplatedParam($param_id))
return "";
return IHMConfigClass::getParamTemplateFilePath($this->paramTemplateList[$param_id]['fileName']);
}
/*
* @brief Replace args in string
*/
private function replaceArgs($string, $template_args) {
$result = $string;
foreach ($template_args as $template_arg_key => $template_arg_value) {
$result = str_replace("##".$template_arg_key."##", $template_arg_value, $result);
}
return $result;
}
/*
* @brief Enrich Template args with default values
*/
private function addDefaultValues($param_id, &$template_args) {
$list = $this->getParamTemplates();
if (!array_key_exists($param_id, $list))
return;
$arguments = $list[$param_id]->arguments;
foreach ($arguments as $arg_key => $arg_def) {
if (!array_key_exists($arg_key, $template_args))
$template_args[$arg_key] = $arg_def->default;
}
}
/*
* @brief Load list of templated parameters
*/
private function loadUserParamManagerFile()
{
if (isset($this->paramTemplateList))
return;
$this->paramTemplateList = array();
//load xml file
$dom = new DomDocument("1.0");
if (!$dom->load(IHMConfigClass::getParamTemplateListFilePath()))
return;
$paramTemplateNodes = $dom->getElementsByTagName(self::$paramTemplateNode);
foreach ($paramTemplateNodes as $paramTemplateNode) {
$paramId = $paramTemplateNode->getAttribute(self::$paramTemplateIdAtt);
$paramFileName = $paramTemplateNode->getAttribute(self::$paramTemplateFileNameAtt);
if (empty($paramId) || empty($paramFileName))
continue;
$arguments = array();
$argumentsNode = $paramTemplateNode->getElementsByTagName(self::$paramTemplateArgumentsNode);
if (count($argumentsNode) > 0) {
$argumentsNode = $argumentsNode->item(0);
$argumentNodes = $argumentsNode->getElementsByTagName(self::$paramTemplateArgumentNode);
foreach($argumentNodes as $argumentNode) {
$argumentKey = $argumentNode->getAttribute(self::$paramTemplateArgumentKeyAtt);
$argumentName = $argumentNode->getAttribute(self::$paramTemplateArgumentNameAtt);
$argumentType = $argumentNode->getAttribute(self::$paramTemplateArgumentTypeAtt);
$argumentDefault = $argumentNode->getAttribute(self::$paramTemplateArgumentDefaultAtt);
if (empty($argumentKey) || empty($argumentType))
continue;
$arguments[$argumentKey] = array(
"name" => (empty($argumentName) ? $argumentKey : $argumentName),
"type" => $argumentType,
"default" => $argumentDefault
);
switch ($argumentType) {
case "list" :
$arguments[$argumentKey]['items'] = array();
$itemNodes = $argumentNode->getElementsByTagName(self::$paramTemplateArgumentListItemNode);
foreach ($itemNodes as $itemNode) {
$itemKey = $itemNode->getAttribute(self::$paramTemplateArgumentListItemKeyAtt);
$itemName = $itemNode->getAttribute(self::$paramTemplateArgumentListItemNameAtt);
if ($itemKey == "")
continue;
$arguments[$argumentKey]['items'][$itemKey] = (empty($itemName) ? $itemKey : $itemName);
}
break;
default:
//Nothing to do
}
}
}
$this->paramTemplateList[$paramId] = array(
"fileName" => $paramFileName,
"arguments" => $arguments
);
}
}
}