Blame view

src/InputOutput/IHMImpl/TimeTables/IHMInputOutputConvertTTClass.php 1.31 KB
0b6b2080   Elena.Budnik   TT download
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
<?php

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

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

		if (!$res['success'])
			throw new Exception($res['message']);
		
			
		foreach($input->list as $tt)
		{
			//create a list of data to treat
			$processData = new TTRequestDataClass();
				
			$processData->setInputTimeTable($tt);
			$processData->setInputFormat($input);
			$processData->setOutputDir();
			$processData->setOutputTimeTable($tt);
			$processData->setOutputFormat();
			
			$processData->setCompression();
			
			$this->processDatas[] = $processData;
		}

		return $this->processDatas;
	}

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

		foreach ($data as $d)
		{
ddb6bf06   Elena.Budnik   wait for process ...
58
59
			
			
0b6b2080   Elena.Budnik   TT download
60
61
			if (!$d->getSuccess())
				continue;
ddb6bf06   Elena.Budnik   wait for process ...
62
			 
0b6b2080   Elena.Budnik   TT download
63
64
65
66
67
68
69
70
		}

		return $result;
	}
} 
		 
}
?>