Blame view

src/InputOutput/IHMImpl/Tools/IHMJobsManagerClass.php 14.8 KB
22521f1c   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/**
 * @class IHMJobsManagerClass
 * @brief Jobs manager
 * @details
 */
class IHMJobsManagerClass {

	protected $jobXml, $jobXmlName;

	protected $bkgRootNode = array('condition' => 'bkgSearch-treeRootNode',
			'request' => 'bkgPlot-treeRootNode',
01ff2cc6   elena   catalog draft
13
14
			'download' => 'bkgDown-treeRootNode',
			'statistics' => 'bkgStatistics-treeRootNode');
22521f1c   Benjamin Renard   First commit
15
16
17

	protected $resRootNode = array('condition' => 'resSearch-treeRootNode',
			'request' => 'resPlot-treeRootNode',
01ff2cc6   elena   catalog draft
18
19
			'download' => 'resDown-treeRootNode',
			'statistics' => 'resStatistics-treeRootNode');
22521f1c   Benjamin Renard   First commit
20
21
22
23
24
25
26
27
28
29
30

	/*
	 * @brief Constructor
	*/
	function __construct()
	{
	}

	/*
	 * @brief Load jobs file and create it if needed
	*/
be9a9faf   Elena.Budnik   different job inf...
31
	protected function init()
22521f1c   Benjamin Renard   First commit
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
	{
		$this->jobXmlName = IHMConfigClass::getUserJobsFile();
		$this->jobXml = new DomDocument("1.0");

		if (!file_exists($this->jobXmlName))
		{
			$res = $this->createJobsFile();
			if (!$res['success'])
				return $res;
		}

		$res = $this->jobXml->load($this->jobXmlName);
		if (!$res)
			return array(
					"success" => false,
					"message" => "Cannot load jobs file");

		return array("success" => true);
	}

	/*
	 * @brief Create a new jobs file
	*/
d5a86709   Elena.Budnik   interim commit
55
	protected function createJobsFile()
22521f1c   Benjamin Renard   First commit
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
	{
		$rootElement = $this->jobXml->createElement('jobs');
		$jobsInProgress = $this->jobXml->createElement('jobsInProgress');

		foreach ($this->bkgRootNode as $key => $value)
		{
			$element = $this->jobXml->createElement("$key");
			$element->setAttribute('xml:id',$value);
			$jobsInProgress->appendChild($element);
		}
		$jobsFinished = $this->jobXml->createElement('jobsFinished');

		foreach ($this->resRootNode as $key => $value)
		{
			$element = $this->jobXml->createElement("$key");
			$element->setAttribute('xml:id',"$value");
			$jobsFinished->appendChild($element);
		}

		$rootElement->appendChild($jobsInProgress);
		$rootElement->appendChild($jobsFinished);
		$this->jobXml->appendChild($rootElement);

		$res = $this->jobXml->save($this->jobXmlName);

		if (!$res)
			return array(
					"success" => false,
					"message" => "Cannot create new jobs file");

		return array("success" => true);
	}

	/*
	 * @brief Get the path of the request object file
	*/
	protected function getRequestObjectFilePath($id)
	{
		return IHMConfigClass::getUserJobsPath().$id.".request";
	}

	/*
	 * @brief Save a request object file
	*/
	protected function saveRequestObjectFile($obj, $id)
	{
		$file = fopen($this->getRequestObjectFilePath($id), 'w');
		fwrite($file, json_encode($obj));
		fclose($file);
	}

	/*
	 * @brief Decode a request object file
	*/
84cb4dbb   Benjamin Renard   Give the possibil...
110
	public function getRequestObjectFile($id)
22521f1c   Benjamin Renard   First commit
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
	{
		if (!file_exists($this->getRequestObjectFilePath($id)))
			return NULL;
		return json_decode(file_get_contents($this->getRequestObjectFilePath($id)));
	}

	/*
	 * @brief Delete a request object file
	*/
	protected function deleteRequestObjectFile($id) {
		if (file_exists($this->getRequestObjectFilePath($id)))
			unlink($this->getRequestObjectFilePath($id));
	}

	/*
	 * @brief get a job status from process info
	*/
	protected function getJobStatus($running,$exitcode)
	{
		if ($running)
			return 'in_progress';

		if ($exitcode == 0)
			return 'done';

		return 'error';
	}

	/*
	 * @brief delete a job
	*/
	public function deleteJob($id)
	{
		$res = $this->init();
		if (!$res['success'])
			return $res;

		$job = $this->jobXml->getElementById($id);

		//delete job
		if (!$job)
			return array('success' => false, 'message' => "Job not reachable");

		$folder = $job->getAttribute('folder');

		//be sure that it's an AMDA working dir before deletion...
		$fullFolderPath = IHMConfigClass::getRequestPath().$folder.'/';
		if ((isset($folder)) &&
		($folder != "") &&
		is_dir($fullFolderPath) &&
		(preg_match("/DD[0-9A-Za-z]*_/",$folder) ||
		 preg_match("/Plot[0-9]*_/",$folder)))
		{
			foreach (glob($fullFolderPath.'*') as $filename)
			{
				if (is_dir($filename) && (basename($filename) == 'params'))
				{
					//recursive deletion only for "params" dir (a full recursive deletion is probably too dangerous...)
					foreach (glob($filename.'/*') as $paramname)
						unlink($paramname);
					rmdir($filename);
				}
				else
					unlink($filename);
			}
			rmdir($fullFolderPath);
		}

		$this->deleteRequestObjectFile($id);

		$job->parentNode->removeChild($job);
		$res = $this->jobXml->save($this->jobXmlName);

		if (!$res)
			return array(
					'success' => false,
					'message' => "Cannot save jobs file");
			
		return array('success' => true, 'id' => $id);
	}

	/*
	 * @brief get job info about a job
	*/
	public function getJobInfo($id)
	{
		$res = $this->init();
		if (!$res['success'])
			return $res;

		$job = $this->jobXml->getElementById($id);
c6b591d9   Nathanael Jourdane   Send runningPath ...
202
203
204
205
206
207

		$attributes = [];
		foreach( $job->attributes as $attrName => $attrNode) {
			$attributes[$attrName] = $attrNode->nodeValue;
		}

22521f1c   Benjamin Renard   First commit
208
209
210
211
212
213
214
215
216
217
218
219
		$format = 'unknown';
		$compression = 'unknown';
		if($job)
		{
			$name = $job->getAttribute('name');
			$status = $job->getAttribute('status');
			$jobType = $job->getAttribute('jobType');
			$info = $job->getAttribute('info');
			$start = $job->getAttribute('start');
			$stop = $job->getAttribute('stop');
			$result = $job->getAttribute('result');
			$folder = $job->getAttribute('folder');
ba82a624   Benjamin Renard   Get kernel execut...
220
			$exectime = $job->getAttribute('exectime');
22521f1c   Benjamin Renard   First commit
221
222
223
224
225
226
227
228
229
230
231
232
233
			$request_obj = $this->getRequestObjectFile($id);
			if (isset($request_obj))
			{
				if (isset($request_obj->format))
				{
					$format = strtolower($request_obj->format);
					if (($format == "pdf") || ($format == "ps"))
						//auto compression for plot request
						$compression = ".tar.gz";
				}
				if (isset($request_obj->compression))
					$compression = strtolower($request_obj->compression);
			}
5cf99396   Benjamin Renard   Add SAMP export i...
234
235
236
237
238
239
240
			$sendToSamp = $job->getAttribute('sendToSamp');
			if (empty($sendToSamp)) {
				$sendToSamp = false;
			}
			else {
				$sendToSamp = ($sendToSamp == "true");
			}
22521f1c   Benjamin Renard   First commit
241
242
243
244
245
246
		}
		return array(
				'success'     => true,
				'id'          => $id,
				'name'        => $name,
				'status'      => $status,
ba82a624   Benjamin Renard   Get kernel execut...
247
				'exectime'    => $exectime,
22521f1c   Benjamin Renard   First commit
248
249
250
251
252
253
254
				'jobType'     => $jobType,
				'info'        => $info,
				'start'       => $start,
				'stop'        => $stop,
				'folder'      => $folder,
				'result'      => $result,
				'format'      => $format,
5cf99396   Benjamin Renard   Add SAMP export i...
255
256
257
				'compression' => $compression,
				'sendToSamp'  => $sendToSamp,
		);
22521f1c   Benjamin Renard   First commit
258
259
260
261
262
	}

	/*
	 * @brief Add a new job
	*/
ba82a624   Benjamin Renard   Get kernel execut...
263
	public function addJob($obj, $id, $folder, $running, $start, $result, $exitcode, $exectime)
22521f1c   Benjamin Renard   First commit
264
	{
01c17a02   Nathanael Jourdane   Add detailled inf...
265
		$obj = get_object_vars($obj); // Allow access to elements where the key is in dash-separated form.
22521f1c   Benjamin Renard   First commit
266
267
268
269
		$res = $this->init();
		if (!$res['success'])
			return $res;

01c17a02   Nathanael Jourdane   Add detailled inf...
270
271
272
273
		$infos = [];
		switch ($obj['nodeType']) {
			// Data mining
			case 'condition':
22521f1c   Benjamin Renard   First commit
274
				$name = 'datamining_'.time();
2b83ab1a   Nathanael Jourdane   improve job tooltip
275
276
277
				if($obj['name'] != '') {
					$infos['Name'] = $obj['name'];
				}
01c17a02   Nathanael Jourdane   Add detailled inf...
278
279
280
				$infos['Condition'] = $obj['expression'];
				$infos['Start date'] = $obj['startDate'];
				$infos['Stop date'] = $obj['stopDate'];
22521f1c   Benjamin Renard   First commit
281
				break;
01c17a02   Nathanael Jourdane   Add detailled inf...
282
283

			case 'statistics':
01ff2cc6   elena   catalog draft
284
				$name = 'statistics_'.time();
2b83ab1a   Nathanael Jourdane   improve job tooltip
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
				$infos['Name'] =  $obj['name']; // TODO: name toujours égal à 'test' (?)

				// TODO : lire data/user/TT/tt_0.xml -> trouver ttname + nbIntervals

				if(array_key_exists('timeTables', $obj)) {
					$ttXml = new DomDocument();
					$ttXml->load(USERWSDIR . 'Tt.xml');

					$ttIntervals = [];
					foreach ($ttXml->getElementsByTagName('timetab') as $tt) {
						$ttIntervals[$tt->getAttribute('name')] = $tt->getAttribute('intervals');
					}

					if(count($obj['timeTables']) == 1) {
						$infos['Time table'] = $obj['timeTables'][0]->timeTableName;
						$infos['Nb Intervals'] = $ttIntervals[$infos['Time table']];
					} else {
						foreach ($obj['timeTables'] as $tt) {
							if($tt === reset($obj['timeTables'])) {
								$infos['Time tables'] = $tt->timeTableName . '(' . $ttIntervals[$tt->timeTableName] . ' int.)';
							} else {
								$infos['Time tables'] .= ', ' . $tt->timeTableName . '(' . $ttIntervals[$tt->timeTableName] . ' int.)';
							}
						}
					}
				} else {
					$infos['Start date'] = $obj['startDate'];
					$infos['Stop date'] = $obj['stopDate'];
				}

01c17a02   Nathanael Jourdane   Add detailled inf...
315
316
317
318
319
320
321
322
323
324
325
326
				if(array_key_exists('expression', $obj)) {
					$infos['Expression'] =  $obj['expression'];
				}
				$params = [];
				foreach ($obj['parameter'] as $param) {
					$params[] = $param->function . '(' . $param->paramid . ')';
				}
				if(count($params) == 1) {
					$infos['Parameter'] = $params[0];
				} else {
					$infos['Parameters'] = '<ul><li>' . join('</li><li>', $params) . '</li></ul>';
				}
01ff2cc6   elena   catalog draft
327
				break;
01c17a02   Nathanael Jourdane   Add detailled inf...
328
329
330
331
332
333
334
335
336
337
338

			case 'download':
				$name = $obj['downloadSrc'] == '2' ? "download_fits_".time() : "download_data_".time();
				$params = [];
				foreach ($obj['list'] as $param) {
					$params[] = $param->paramid;
				}
				if(count($params) == 1) {
					$infos['Parameter'] = $params[0];
				} else {
					$infos['Parameters'] = join(', ', $params);
22521f1c   Benjamin Renard   First commit
339
				}
01c17a02   Nathanael Jourdane   Add detailled inf...
340
341
				$infos['Start date'] = $obj['startDate'];
				$infos['Stop date'] = $obj['stopDate'];
22521f1c   Benjamin Renard   First commit
342
				break;
01c17a02   Nathanael Jourdane   Add detailled inf...
343
344
345

			// Plot
			case 'request':
22521f1c   Benjamin Renard   First commit
346
				$name = "request_".time();
01c17a02   Nathanael Jourdane   Add detailled inf...
347
348
349
350
351
352

				$infos['Output'] = strtolower($obj['file-format']) . ' (' . strtolower($obj['file-output']) . ')';
				foreach ($obj['tabs'] as $tab) {
					if($tab->id == $obj['last-plotted-tab']) {
						$infos['Start date'] = $tab->startDate;
						$infos['Stop date'] = $tab->stopDate;
01c17a02   Nathanael Jourdane   Add detailled inf...
353
354

						$strPanels = [];
2b83ab1a   Nathanael Jourdane   improve job tooltip
355

01c17a02   Nathanael Jourdane   Add detailled inf...
356
						foreach ($tab->panels as $panel) {
2b83ab1a   Nathanael Jourdane   improve job tooltip
357
							$strParams = '';
01c17a02   Nathanael Jourdane   Add detailled inf...
358
							foreach ($panel->params as $param) {
2b83ab1a   Nathanael Jourdane   improve job tooltip
359
								$strParams .= $param->paramid . ($param === end($panel->params) ? '' : ', ');
01c17a02   Nathanael Jourdane   Add detailled inf...
360
							}
6e9bb13d   Nathanael Jourdane   improve job toolt...
361
							$infos['• Panel ' . $panel->id] = $strParams;
01c17a02   Nathanael Jourdane   Add detailled inf...
362
363
364
						}

						continue;
22521f1c   Benjamin Renard   First commit
365
366
367
					}
				}
				break;
01c17a02   Nathanael Jourdane   Add detailled inf...
368

22521f1c   Benjamin Renard   First commit
369
370
			default:
				$name = "unknown_".time();
22521f1c   Benjamin Renard   First commit
371
		}
a125e4f0   Nathanael Jourdane   Remove interval d...
372
		$infos['Started at'] = gmdate("Y-m-d H:i:s", $start);
22521f1c   Benjamin Renard   First commit
373

01c17a02   Nathanael Jourdane   Add detailled inf...
374
375
		$strInfo = '';
		foreach ($infos as $key => $info) {
2b83ab1a   Nathanael Jourdane   improve job tooltip
376
			$strInfo .= ($key == 'Started at' ? '<hr/>' : '') . '<b>' . $key . '</b>: ' . $info . '<br/>';
01c17a02   Nathanael Jourdane   Add detailled inf...
377
		}
22521f1c   Benjamin Renard   First commit
378

01c17a02   Nathanael Jourdane   Add detailled inf...
379
380
381
382
383
		$newJob = $this->jobXml->createElement('job');
		$newJob->setAttribute('xml:id', $id);
		$newJob->setAttribute('jobType', $obj['nodeType']);
		$newJob->setAttribute('name', $name);
		$newJob->setAttribute('info', $strInfo);
22521f1c   Benjamin Renard   First commit
384
		$newJob->setAttribute('folder', $folder);
22521f1c   Benjamin Renard   First commit
385
		$newJob->setAttribute('result', $result);
22521f1c   Benjamin Renard   First commit
386
		$newJob->setAttribute('start', date('d-m-Y H:i:s', $start));
ba82a624   Benjamin Renard   Get kernel execut...
387
		$newJob->setAttribute('exectime', $exectime);
22521f1c   Benjamin Renard   First commit
388
389
390
		//to know if know if it's an immediate job or not
		$newJob->setAttribute('immediate', !$running);

01c17a02   Nathanael Jourdane   Add detailled inf...
391
		$sendToSamp = isset($obj['sendToSamp']) ? $obj['sendToSamp'] : FALSE;
5cf99396   Benjamin Renard   Add SAMP export i...
392
393
394
395
		if ($sendToSamp) {
			 $newJob->setAttribute('sendToSamp', "true");
		}

01c17a02   Nathanael Jourdane   Add detailled inf...
396
		$key = $obj['nodeType'];
22521f1c   Benjamin Renard   First commit
397
398
		if ($running)
		{
01c17a02   Nathanael Jourdane   Add detailled inf...
399
			$rootJobNode = $this->jobXml->getElementById($this->bkgRootNode[$key]);
22521f1c   Benjamin Renard   First commit
400
401
			if (!$rootJobNode)
			{
22521f1c   Benjamin Renard   First commit
402
				$rootJobNode =  $this->jobXml->createElement("$key");
01c17a02   Nathanael Jourdane   Add detailled inf...
403
				$rootJobNode->setAttribute('xml:id', $this->bkgRootNode[$key]);
22521f1c   Benjamin Renard   First commit
404
405
406
407
408
409
				$jobsInProgress = $this->jobXml->getElementsByTagName('jobsInProgress')->item(0);
				$jobsInProgress->appendChild($rootJobNode);
			}
		}
		else
		{
01c17a02   Nathanael Jourdane   Add detailled inf...
410
			$rootJobNode = $this->jobXml->getElementById($this->resRootNode[$key]);
22521f1c   Benjamin Renard   First commit
411
412
			if (!$rootJobNode)
			{
22521f1c   Benjamin Renard   First commit
413
				$rootJobNode =  $this->jobXml->createElement("$key");
01c17a02   Nathanael Jourdane   Add detailled inf...
414
				$rootJobNode->setAttribute('xml:id', $this->resRootNode[$key]);
22521f1c   Benjamin Renard   First commit
415
416
417
418
419
420
421
422
423
424
425
426
				$jobsFinished = $this->jobXml->getElementsByTagName('jobsFinished')->item(0);
				$jobsFinished->appendChild($rootJobNode);
			}
		}

		$rootJobNode->appendChild($newJob);
		 
		if (!$this->jobXml->save($this->jobXmlName))
			return  array("success" => false, "message" => "Cannot save job manager file");

		$this->saveRequestObjectFile($obj, $id);

ba82a624   Benjamin Renard   Get kernel execut...
427
		$this->updateJobStatus($id, $running, $exitcode, $exectime);
22521f1c   Benjamin Renard   First commit
428
429
430
431
432
433
434

		return  $this->getJobInfo($id);
	}

	/*
	 * @brief Update the status of a job
	*/
ba82a624   Benjamin Renard   Get kernel execut...
435
	public function updateJobStatus($id, $running, $exitcode, $exectime)
22521f1c   Benjamin Renard   First commit
436
437
438
439
440
441
442
	{
		$res = $this->init();
		if (!$res['success'])
			return $res;

		$job = $this->jobXml->getElementById($id);

8fc77945   Nathanael Jourdane   Show number of in...
443
		if (!isset($job)) {
22521f1c   Benjamin Renard   First commit
444
			return array("success" => false, "message" => "Cannot found job");
8fc77945   Nathanael Jourdane   Show number of in...
445
446
		}

22521f1c   Benjamin Renard   First commit
447
448
449
		$jobstatus = $this->getJobStatus($running,$exitcode);
		$job->setAttribute('status', $jobstatus);

ba82a624   Benjamin Renard   Get kernel execut...
450
451
		$job->setAttribute('exectime', $exectime);

efe25e99   Nathanael Jourdane   update job info o...
452
453
		$infos = [];

8fc77945   Nathanael Jourdane   Show number of in...
454
		if ($running) {
22521f1c   Benjamin Renard   First commit
455
			$job->setAttribute('stop', 'unknown');
8fc77945   Nathanael Jourdane   Show number of in...
456
		} else if ($job->getAttribute('stop') == '' || $job->getAttribute('stop') == 'unknown') {
22521f1c   Benjamin Renard   First commit
457
			$job->setAttribute('stop', date('d-m-Y H:i:s', time()));
efe25e99   Nathanael Jourdane   update job info o...
458

3945ae76   Nathanael Jourdane   Add error code on...
459
460
461
462
			$start = new DateTime($job->getAttribute('start'));
			$interval = (new DateTime('now'))->diff($start);
			$infos['Job duration'] = $interval->format('%Hh %Im %Ss');

8fc77945   Nathanael Jourdane   Show number of in...
463
464
465
			$resPath = glob(USERWORKINGDIR . $job->getAttribute('folder') . '/' . $job->getAttribute('result') . '*')[0];

			if($job->getAttribute('jobType') == 'condition') {
8fc77945   Nathanael Jourdane   Show number of in...
466
467
468
469
470
471
				$resXml = new DomDocument();
				$resXml->load($resPath);
				$infos['nb intervals'] = $resXml->getElementsByTagName('nbIntervals')->item(0)->nodeValue;
			}

			$fileSize = filesize($resPath);
efe25e99   Nathanael Jourdane   update job info o...
472
473
474
475
476
477
478
479
480
481
482
			if ($fileSize < 1024) {
				$strSize = number_format($fileSize, 2, '.', ' ') . 'b';
			} else if($fileSize < 1024*1024) {
				$strSize = number_format($fileSize/1024, 2, '.', ' ') . 'kb';
			} else if($fileSize < 1024*1024*1024) {
				$strSize = number_format($fileSize/(1024*1024), 2, '.', ' ') . 'mb';
			} else {
				$strSize = number_format($fileSize/(1024*1024*1024), 2, '.', ' ') . 'gb';
			}
			$infos['File size'] = $strSize;

22521f1c   Benjamin Renard   First commit
483
484
			$this->jobXml->getElementById($this->resRootNode[$job->getAttribute('jobType')])->appendChild($job);
		}
efe25e99   Nathanael Jourdane   update job info o...
485

3945ae76   Nathanael Jourdane   Add error code on...
486
487
488
489
		if($exitcode != 0) {
			$infos['Error code'] = $exitcode;
		}

efe25e99   Nathanael Jourdane   update job info o...
490
491
492
493
494
495
		$strInfo = $job->getAttribute('info');
		foreach ($infos as $key => $info) {
			$strInfo .= '<b>' . $key . '</b>: ' . $info . '<br/>';
		}
		$job->setAttribute('info', $strInfo);

22521f1c   Benjamin Renard   First commit
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
		$res = $this->jobXml->save($this->jobXmlName);

		if (!$res)
			return array(
					'success' => false,
					'message' => "Cannot save jobs status file");
			
		return $this->getJobInfo($id);
	}

	/*
	 * @brief Get the list of jobs with a specific status
	*/
	public function getJobsByStatus($status)
	{
		$res = $this->init();
		if (!$res['success'])
			return $res;
			
		$xp = new domxpath($this->jobXml);
		$jobs = $xp->query("//job[@status='".$status."']");

		$jobsId = array();
		foreach ($jobs as $job)
			$jobsId[] = $job->getAttribute('xml:id');

		return array('success' => true, 'jobs' => $jobsId);
	}
	
	/*
	 * @brief Get jobs that use a specific working dir
	*/
	public function getJobsByWorkingDir($folder)
	{
		$res = $this->init();
		if (!$res['success'])
			return $res;
			
		$xp = new domxpath($this->jobXml);
		$jobs = $xp->query("//job[@folder='".$folder."']");
	
		$jobsId = array();
		foreach ($jobs as $job)
			$jobsId[] = $job->getAttribute('xml:id');
	
		return array('success' => true, 'jobs' => $jobsId);
	}

	/*
	 * @brief Get all jobs to clean (immediate result jobs)
	*/
	public function getJobsToClean()
	{
		$res = $this->init();
		if (!$res['success'])
			return $res;

		// Get immediate jobs
		$xp = new domxpath($this->jobXml);
		$jobs = $xp->query("//job[@immediate='1']");

		$jobsId = array();
		foreach ($jobs as $job)
			$jobsId[] = $job->getAttribute('xml:id');

		return array("success" => true, "jobs" => $jobsId);
	}
}
?>