CatalogMgr.php
7.91 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
<?php
/**
* @class CatalogMgr
*/
class CatalogMgr extends TimeTableMgr
{
function __construct($sharedObject = FALSE) {
parent::__construct('Tt.xml', $sharedObject);
$this->contentRootId = 'catalog-treeRootNode';
$this->contentRootTag = 'catalogList';
$this->attributes = array('name' => '', 'intervals' => ''); // + 'parameters'
$this->optionalAttributes = array();
$this->objTagName = 'catalog';
$this->id_prefix = 'cat_'; // 'tt_' ?
if (!$sharedObject && !file_exists($this->xmlName)) {
$this->createDom();
$this->xp = new domxpath($this->contentDom);
}
}
public function getTmpObject($folderId, $name, $onlyDescription = false)
{
$result = parent::getTmpObject($folderId, $name, $onlyDescription);
if (!isset($result['success']) || !$result['success']) {
return $result;
}
return $result + array('parameters' => $this->getCatalogParamDescription(array('folder' => $folderId, 'name' => $name)));
}
public function loadIntervalsFromObject($id, $type, $start = NULL, $limit = NULL)
{
$result = parent::loadIntervalsFromObject($id, $type, $start, $limit);
if (!isset($result['success']) || !$result['success']) {
return $result;
}
return $result + array('parameters' => $this->getCatalogParamDescription(array('id' => $id, 'type' => $type)));
}
/*
* catalog header
*/
protected function setParamDescription($params)
{
$paramsElement = $this->objectDom->createElement('parameters');
foreach ($params as $param)
{
$paramElement = $this->objectDom->createElement('parameter');
$attrArray = (array)$param;
foreach ($attrArray as $key => $value)
$paramElement->setAttribute($key, $value);
$paramsElement->appendChild($paramElement);
}
return $paramsElement;
}
protected function createIntervalElement($interval, $options = array())
{
$newInterval = $this->objectDom->createElement('intervals');
$newInterval->appendChild($this->objectDom->createElement('start',$interval['start']));
$newInterval->appendChild($this->objectDom->createElement('stop',$interval['stop']));
if (!empty($options['parameters'])) {
foreach ($options['parameters'] as $parameter) {
$newInterval->appendChild($this->objectDom->createElement('param', $interval[$parameter['id']]));
}
}
return $newInterval;
}
public function createObject($p, $folder)
{
if ($p -> leaf)
{
$result = $this->createParameter($p, $folder);
if ($result['error'])
return $result;
$cacheMgr = new CatalogCacheMgr();
if (isset($p->cacheToken) && ($p->cacheToken != ''))
{
$resultSaveInt = $cacheMgr->saveInObject($result['id'], "update", $p->cacheToken);
if (!$resultSaveInt['success'])
{
if ($resultSaveInt['message'])
return array('error' => $resultSaveInt['message']);
else
return array('error' => 'Unknown error during intervals save');
}
}
return $result;
}
// else return $this->createFolder($p);
//TODO check if this is possible?
else return array('error' => 'createFolder should be called from RENAME');
}
public function initForChart($id, $folderId, $name, $isTmpObject, $type)
{
if ($isTmpObject)
$options = array(
'name' => $name,
'folder' => empty($folderId) ? USERTEMPDIR : USERWORKINGDIR.$folderId,
'type' => $type,
);
else
$options = array(
'id' => $id,
'type' => $type,
);
$intervals_res = $this->getCatalogParamDescription($options);
if (!$intervals_res['success'])
return $intervals_res;
$paramHeaders = array();
foreach ( $intervals_res['parameters'] as $param ) {
if ($param['size'] > 1) {
for ($i = 0; $i < $param['size']; $i++) {
$paramComp = array();
$paramComp['id'] = $param['id'].'_'.$i;
$paramComp['name'] = $param['name'].'_'.$i;
// $paramComp['size'] = 1;
$paramHeaders[] = $paramComp;
}
}
else {
$paramHeaders[] = $param;
}
}
// unset($intervals_res);
return array('success' => true, 'parameters' => $paramHeaders,
'totalCount' => $intervals_res['totalCount'], 'name' => $intervals_res['name']);
}
public function getIntervalsForChart($id, $name, $isTmpObject, $type) {
if ($isTmpObject)
$intervals_res = $this->getTmpObject($id, $name);
else
$intervals_res = $this->loadIntervalsFromObject($id,$type);
if (!$intervals_res['success'])
return $intervals_res;
$newIntervals = array();
foreach ($intervals_res['intervals'] as $interval)
{
$newIntervalComp = array();
$k = 0;
for ( $j = 0; $j < count($interval['paramTable']); $j++ ) {
$param = $interval['paramTable'][$j];
$tempArr = explode(',',$param);
if (count($tempArr) > 1) {
for ($i = 0; $i < count($tempArr); $i++) {
$newIntervalComp['param'.$k] = $tempArr[$i];
$k++;
}
}
else {
$newIntervalComp['param'.$k] = $param;
$k++;
}
}
$newIntervals[] = $newIntervalComp;
}
return array('success' => true, 'intervals' => $newIntervals);
}
public function getCatalogParamDescription($options)
{
if (!empty($options['id'])) {
if (isset($options['type']) && ($options['type'] == 'sharedcatalog')) {
$sharedObjMgr = new SharedObjectsMgr();
$path = $sharedObjMgr->getDataFilePath('catalog', $options['id']);
}
else {
$path = USERTTDIR.$options['id'].'.xml';
}
}
else {
$path = $options['folder'].'/'.$options['name'].'.xml';
}
//load intervals from Catalog id
if (!file_exists($path))
return array('success' => false, 'message' => "Cannot find Catalog file");
if (!$this->objectDom->load($path))
return array('success' => false, 'message' => "Cannot load Catalog file");
$xpath = new DOMXPath($this->objectDom);
// params header
$paramsNodes = $xpath->query('//parameters/parameter');
$paramsArray = array();
if ($paramsNodes->length > 0)
{
foreach ($paramsNodes as $paramNode)
{
$oneParam = array();
foreach ($paramNode->attributes as $attr)
$oneParam[$attr->nodeName] = $attr->nodeValue;
$paramsArray[] = $oneParam;
}
}
return array(
'parameters' => $paramsArray,
'success' => true
);
}
public function getUploadedObject($name, $format, $onlyDescription = false)
{
$result = parent::getUploadedObject($name, $format, $onlyDescription);
if (!isset($result['success']) || !$result['success']) {
return array('success' => FALSE, 'error' => 'Error to retrieve catalog info');
}
return $result + array('parameters' => $this->getCatalogParamDescription(array('folder' => USERTEMPDIR, 'name' => $name)));
}
/**
* Load interval from DOMElement
* @param DOMElement
* @return interval
*/
protected function loadIntervalElement($intervalNode)
{
$interval = parent::loadIntervalElement($intervalNode);
if ($interval === FALSE) {
return FALSE;
}
$paramNodes = $intervalNode->getElementsByTagName('param');
$interval['paramTable'] = array();
if ($paramNodes->length > 0)
foreach ( $paramNodes as $paramNode ) $interval['paramTable'][] = $paramNode->nodeValue;
return $interval;
}
// public function modifyObject($p) {
// $folder = $this->getObjectFolder($p->id);
//
// //Copy TT in a tempory file
// $ttFilePath = USERTTDIR.$p->id.'.xml';
// $tmpFileExist = FALSE;
// if (file_exists($ttFilePath))
// $tmpFileExist = copy($ttFilePath,$ttFilePath.".tmp");
//
// //Delete TT
// $this->deleteObject($p);
//
// //Save modifications
// try {
// $result = $this->createObject($p, $folder);
// if ($result['error'])
// throw new Exception($result['error']);
// if ($tmpFileExist)
// unlink($ttFilePath.".tmp");
// return array('id' => $p->id, 'info' => $result['nbIntervals'].' intervals' );
// }
// catch (Exception $e) {
// //Restore TT file
// if ($tmpFileExist)
// {
// copy($ttFilePath.".tmp", $ttFilePath);
// unlink($ttFilePath.".tmp");
// }
// return array ('error' => $e->getMessage());
// }
// }
}
?>