Blame view

src/InputOutput/IHMImpl/Process/IHMInputOutputCleanProcessClass.php 1.64 KB
22521f1c   Benjamin Renard   First commit
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
<?php

/**
 * @class IHMInputOutputCleanProcessClass
 * @brief Class that's implement an InputOutputInterface used to treat a clean process request
 * @details
 */
class IHMInputOutputCleanProcessClass implements InputOutputInterface
{
	private $jobsManager       = null;
	private $processDatas        = null;

	/*
	 * @brief Constructor
	*/
	function __construct()
	{
		$this->jobsManager      = new IHMJobsManagerClass();
	}

	/*
	 * @brief translate input data from IHM client to AMDA_Integration module for a clean process request
	*/
	public function getInputData($input,$function,$requestId="")
	{
		if (isset($this->processDatas))
			unset($this->processDatas);

		//get list of jobs to clean
		$res = $this->jobsManager->getJobsToClean();

		if (!$res['success'])
			throw new Exception($res['message']);

		if (count($res['jobs']) == 0)
			throw new Exception('No immediate job to clean');
			
		foreach($res['jobs'] as $jobid)
		{
			//create a list of data to treat
			$processData = new ProcessRequestDataClass();
				
			$processData->setManagerFilePath(IHMConfigClass::getProcessManagerFilePath());
			$processData->setType(ProcessTypeEnumClass::DELETE);
			$processData->setId($jobid);
				
			$this->processDatas[] = $processData;
		}

		return $this->processDatas;
	}

	/*
	 * @brief translate output data from AMDA_Integration module to IHM client for a clean process request
	*/
	public function getOutput($data)
	{
		$result = array();

		foreach ($data as $d)
		{
			if (!$d->getSuccess())
				continue;

			$res = $this->jobsManager->deleteJob($d->getId());
		}

		return $result;
	}
}

?>