IHMInputOutputGetInfoProcessClass.php
1.29 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
<?php
/**
* @class IHMInputOutputGetInfoProcessClass
* @brief Class that's implement an InputOutputInterface used to treat a get info process request
* @details
*/
class IHMInputOutputGetInfoProcessClass implements InputOutputInterface
{
private $jobsManager = null;
private $paramsData = null;
/*
* @brief Constructor
*/
function __construct()
{
$this->jobsManager = new IHMJobsManagerClass();
}
/*
* @brief translate input data from IHM client to AMDA_Integration module for a get info process request
*/
public function getInputData($input,$function,$requestId="")
{
if (isset($this->paramsData))
unset($this->paramsData);
$this->paramsData = new ProcessRequestDataClass();
$this->paramsData->setManagerFilePath(IHMConfigClass::getProcessManagerFilePath());
$this->paramsData->setType(ProcessTypeEnumClass::INFO);
$this->paramsData->setId($input);
return $this->paramsData;
}
/*
* @brief translate output data from AMDA_Integration module to IHM client for a get info process request
*/
public function getOutput($data)
{
if (!$data->getSuccess())
{
return array(
'success' => false,
'message' => $data->getLastErrorMessage());
}
return $this->jobsManager->getJobInfo($this->paramsData->getId());
}
}
?>