Blame view

php/classes/CatalogMgr.php 11.8 KB
d18b535d   elena   catalog draft + c...
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
<?php

/**
 * @class CatalogMgr
 */

class CatalogMgr extends TimeTableMgr {	
             
	function __construct() {
		parent::__construct('Tt.xml');
		$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 (!file_exists($this->xmlName)) {
			  $this->createDom();
			  $this->xp = new domxpath($this->contentDom); 
		}
	}	
 
	public function getTmpObject($folderId, $name, $onlyDescription = false) {
	
		$filePath = USERWORKINGDIR.$folderId.'/'.$name.'.xml';
		
		if (!file_exists($filePath)) 
			return array('error' => 'Cannot find result file');
		
		$dom = new DomDocument('1.0'); 
		$dom->formatOutput = true;
		
		if (!$dom -> load($filePath))
			return array('error' => 'Cannot load result file');
		$nameNodes = $dom->getElementsByTagName('name');
		if ($nameNodes->length > 0)
			$attributesToReturn['name'] = $nameNodes->item(0)->nodeValue;
		
		$descNodes = $dom->getElementsByTagName('description');
		if ($descNodes->length > 0)
			$attributesToReturn['description'] = $descNodes->item(0)->nodeValue;
		
		$creatNodes = $dom->getElementsByTagName('created');
		if ($creatNodes->length > 0)
			$attributesToReturn['created'] = $creatNodes->item(0)->nodeValue;
		
		$histNodes = $dom->getElementsByTagName('history');
		if ($histNodes->length > 0)
			$attributesToReturn['history'] = $histNodes->item(0)->nodeValue;
	
		$attributesToReturn['objName'] = $name;
		$attributesToReturn['folderId'] = $folderId;
		$attributesToReturn['success'] = true;
		
		if (!$onlyDescription)
		{
			$intNodes = $dom->getElementsByTagName('intervals');
			foreach ($intNodes as $intNode)
			{
				$startNodes = $intNode->getElementsByTagName('start');
				if ($startNodes->length <= 0)
					return array('error' => 'Error detected in result file');
					
				$stopNodes = $intNode->getElementsByTagName('stop');
				if ($stopNodes->length <= 0)
					return array('error' => 'Error detected in result file');
					
				// for catalog	
				$paramNodes = $intNode->getElementsByTagName('param');
				$params = array();
				if ($paramNodes->length > 0) 
					foreach ( $paramNodes as $paramNode ) $params[] = $paramNode->nodeValue;
					
					
				$attributesToReturn['intervals'][] = array('start' => $startNodes->item(0)->nodeValue,
									    'stop' => $stopNodes->item(0)->nodeValue,
									    'paramTable' =>  $params);
			}
			// for catalog
			$paramsNodes = $dom->getElementsByTagName('parameter');
			
			if ($paramsNodes->length > 0){
			
			  $paramsArray = array();		 
			  foreach ($paramsNodes as $paramNode) {
			  
			    $oneParam = array();
			    foreach ($paramNode->attributes as $attr) 			    
				    $oneParam[$attr->nodeName] = $attr->nodeValue;
			  
			     if (substr($paramNode->getAttribute('id'),0,8) == 'stat_cov') {		    
				    $oneParam['size'] = '1';
				    $oneParam['name'] = 'Flag';
			      }
			      
			    $paramsArray[] = $oneParam;
			  }
			$attributesToReturn['success'] = true;
			$attributesToReturn['parameters'] = $paramsArray;
			}
			else 
4a438b99   elena   catalog draft
103
104
			    return array('error' => 'No information on parameters in result file');	
		}
d18b535d   elena   catalog draft + c...
105
106
107
108
109
	
		return  $attributesToReturn;
	}

	
e82af71b   elena   catalog draft
110
111
	public function loadIntervalsFromTT($id, $typeTT, $start = NULL, $limit = NULL)
	{
e82af71b   elena   catalog draft
112
113
114
115
116
117
118
119
	    if ($typeTT == 'sharedcatalog') {			
		    $pathid = SHAREDPATH.'TT/'.$id;
	      }
	    else {
		    $pathid = USERTTDIR.$id;		
	    }
			  
	      //load intervals from TT id
4a438b99   elena   catalog draft
120
121
		if (!file_exists($pathid.'.xml'))
			return array('success' => false, 'message' => "Cannot find Catalog file ".$id);
e82af71b   elena   catalog draft
122
123
124
		
	      $this->objectDom->load($pathid.'.xml');
	      
4a438b99   elena   catalog draft
125
126
		if (!($objToGet = $this->objectDom->getElementById($id)))
			return array('success' => false, 'message' => NO_SUCH_ID." ".$id);
e82af71b   elena   catalog draft
127
128
129
130
131
132
	      
	      $xpath = new DOMXPath($this->objectDom);
	      $intervals =  $xpath->query('//intervals');
	      
	      $result = array();
	      
4a438b99   elena   catalog draft
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
		if (!isset($start) || !isset($limit))
		{
			foreach ($intervals as $interval)
			{
				$startTime = $interval->getElementsByTagName('start')->item(0)->nodeValue;
				$stopTime  = $interval->getElementsByTagName('stop')->item(0)->nodeValue;
				// for catalog	
				$paramNodes = $interval->getElementsByTagName('param');
				$params = array();
				if ($paramNodes->length > 0) 
					foreach ( $paramNodes as $paramNode ) $params[] = $paramNode->nodeValue;
									
				array_push($result, array('start' => $startTime, 'stop' => $stopTime,'paramTable' =>  $params));
				   
			}
		}
		else
e82af71b   elena   catalog draft
150
	      {
4a438b99   elena   catalog draft
151
152
			for ($i = 0; $i < $limit; ++$i)
			{
e82af71b   elena   catalog draft
153
154
			  if ($start+$i >= $intervals->length)
				  break;
4a438b99   elena   catalog draft
155
156
157
158
159
160
161
162
163
164
165
166
				$startTime = $intervals->item($start+$i)->getElementsByTagName('start')->item(0)->nodeValue;
				$stopTime  = $intervals->item($start+$i)->getElementsByTagName('stop')->item(0)->nodeValue;
				// for catalog
				$paramNodes = $intervals->item($start+$i)->getElementsByTagName('param');
				$params = array();
				if ($paramNodes->length > 0) 
					foreach ( $paramNodes as $paramNode ) $params[] = $paramNode->nodeValue;
									
				array_push($result, array('start' => $startTime, 'stop' => $stopTime,'paramTable' =>  $params));
			}
		}
		// for catalog : params header
40890ad7   elena   parameters
167
			$paramsNodes =  $xpath->query('//parameters/parameter');
4a438b99   elena   catalog draft
168
169
170
171
172
173
174
175
176
177
178
179
180
181
			$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(
e82af71b   elena   catalog draft
182
183
			  'totalCount' => $intervals->length,
			  'intervals'  => $result,
4a438b99   elena   catalog draft
184
			  'parameters' => $paramsArray,
e82af71b   elena   catalog draft
185
186
187
188
189
190
			  'start' => isset($start) ? $start : 0,
			  'limit' => isset($limit) ? $limit : 0,
			  'success'    => true
	      );
	  
      }
d18b535d   elena   catalog draft + c...
191
192
193
194

        /*
        *   catalog header
        */
4a438b99   elena   catalog draft
195
196
	protected function setParamDescription($params) 
	{		
40890ad7   elena   parameters
197
		$paramsElement = $this->objectDom->createElement('parameters');
4a438b99   elena   catalog draft
198
199
		foreach ($params as $param) 
		{
40890ad7   elena   parameters
200
			$paramElement = $this->objectDom->createElement('parameter');
4a438b99   elena   catalog draft
201
202
203
204
205
206
207
			$attrArray = (array)$param;            
			foreach ($attrArray as $key => $value)
				$paramElement->setAttribute($key, $value);
			$paramsElement->appendChild($paramElement);    
		}
	
	return $paramsElement;
d18b535d   elena   catalog draft + c...
208
	}
4a438b99   elena   catalog draft
209
210
211
212
213
214
215
216
217
218
219
        
      protected function createIntervalElement($interval) 
      {
		$newInterval = $this->objectDom->createElement('intervals');
		$newInterval->appendChild($this->objectDom->createElement('start',$interval['start']));
		$newInterval->appendChild($this->objectDom->createElement('stop',$interval['stop']));
		foreach ($interval as $key =>$value) {
			if (substr($key,0,5) == 'param')
			$newInterval->appendChild($this->objectDom->createElement('param', $value));
		
		}
d18b535d   elena   catalog draft + c...
220
221
222
	return $newInterval;
      }
      
4a438b99   elena   catalog draft
223
224
	public function createObject($p, $folder)
	{	 
d18b535d   elena   catalog draft + c...
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
		if ($p -> leaf)
		{
			$result = $this->createParameter($p, $folder);
			if ($result['error'])
				return $result;
				
			$cacheMgr = new CatalogCacheMgr();
			
			if (isset($p->cacheToken) && ($p->cacheToken != ''))
			{
				$resultSaveInt = $cacheMgr->saveInTT($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');
	
	}
	
9d412dda   elena   catalog tmp and r...
252
	public function initForChart($id, $name, $isTmpObject, $typeTT) 
86263051   elena   visu second draft
253
	{
9d412dda   elena   catalog tmp and r...
254
	       $intervals_res = $this->getCatalogParamDescription($id, $name, $isTmpObject, $typeTT);
86263051   elena   visu second draft
255
256
257
258
		
		if (!$intervals_res['success'])
			return $intervals_res;

9d412dda   elena   catalog tmp and r...
259
		$paramHeaders = array();
86263051   elena   visu second draft
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
		
		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;    
		  }
		}
			
9d412dda   elena   catalog tmp and r...
279
	//	unset($intervals_res);
86263051   elena   visu second draft
280
		 
9d412dda   elena   catalog tmp and r...
281
282
		return array('success' => true, 'parameters' => $paramHeaders, 
				'totalCount' =>  $intervals_res['totalCount'], 'name' => $intervals_res['name']);
86263051   elena   visu second draft
283
284
	}
	
9d412dda   elena   catalog tmp and r...
285
286
	   	
	public function getIntervalsForChart($id, $name, $isTmpObject, $type) {
86263051   elena   visu second draft
287
		
9d412dda   elena   catalog tmp and r...
288
289
290
291
		if ($isTmpObject)
			$intervals_res = $this->getTmpObject($id, $name); 
		else
			$intervals_res = $this->loadIntervalsFromTT($id,$type);  
86263051   elena   visu second draft
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
		
		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);
			
	}
d18b535d   elena   catalog draft + c...
325
	
9d412dda   elena   catalog tmp and r...
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
	public function getCatalogParamDescription($id, $name, $isTmpObject, $typeTT)
	{
		if ($typeTT == 'sharedcatalog') {			
			$pathid = SHAREDPATH.'TT/'.$id;
		}
		elseif (!$isTmpObject) {
			$pathid = USERTTDIR.$id;		
		}
		else {
			$pathid = USERWORKINGDIR.$id.'/'.$name;
		}
		
	      //load intervals from Catalog id
		if (!file_exists($pathid.'.xml'))
			return array('success' => false, 'message' => "Cannot find Catalog file ".$id);
		
		if (!$this->objectDom->load($pathid.'.xml')) 
			return array('success' => false, 'message' => "Cannot load Catalog file ".$id);
	      
// 		if (!($objToGet = $this->objectDom->getElementById($id)))
// 			return array('success' => false, 'message' => NO_SUCH_ID." ".$id);

	      $nameNodes = $this->objectDom->getElementsByTagName('name');
	      
	      if ($nameNodes->length > 0)
			$nameReal = $nameNodes->item(0)->nodeValue;
		else 			
			$nameReal = $name;
			
	      $xpath = new DOMXPath($this->objectDom);
	      $intervals =  $xpath->query('//intervals');

	      
		// 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(
			  'name'      =>  $nameReal,
			  'totalCount' => $intervals->length,
			  'parameters' => $paramsArray,
			  'success'    => true
	      );
	  
      }
f9c8b272   elena   edit catalog
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
      
// 	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());
// 		}
// 	}
d18b535d   elena   catalog draft + c...
414
}
40890ad7   elena   parameters
415
?>