1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Dtc\QueueBundle\Manager; |
4
|
|
|
|
5
|
|
|
use Dtc\QueueBundle\Exception\UnsupportedException; |
6
|
|
|
use Dtc\QueueBundle\Model\Job; |
7
|
|
|
|
8
|
|
|
abstract class AbstractJobManager implements JobManagerInterface |
9
|
|
|
{ |
10
|
|
|
protected $jobTiminigManager; |
11
|
|
|
protected $jobClass; |
12
|
|
|
protected $runManager; |
13
|
|
|
|
14
|
42 |
|
public function __construct(RunManager $runManager, JobTimingManager $jobTimingManager, $jobClass) |
15
|
|
|
{ |
16
|
42 |
|
$this->runManager = $runManager; |
17
|
42 |
|
$this->jobTiminigManager = $jobTimingManager; |
18
|
42 |
|
$this->jobClass = $jobClass; |
19
|
42 |
|
} |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* @return string |
23
|
|
|
*/ |
24
|
66 |
|
public function getJobClass() |
25
|
|
|
{ |
26
|
66 |
|
return $this->jobClass; |
27
|
|
|
} |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* @return JobTimingManager |
31
|
|
|
*/ |
32
|
77 |
|
public function getJobTimingManager() |
33
|
|
|
{ |
34
|
77 |
|
return $this->jobTiminigManager; |
35
|
|
|
} |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* @return RunManager |
39
|
|
|
*/ |
40
|
4 |
|
public function getRunManager() |
41
|
|
|
{ |
42
|
4 |
|
return $this->runManager; |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
abstract public function getJob($workerName = null, $methodName = null, $prioritize = true, $runId = null); |
46
|
|
|
|
47
|
|
|
abstract public function save(Job $job); |
48
|
|
|
|
49
|
|
|
abstract public function saveHistory(Job $job); |
50
|
|
|
|
51
|
5 |
|
public function resetStalledJobs($workerName = null, $method = null) |
52
|
|
|
{ |
53
|
5 |
|
throw new UnsupportedException('Unsupported'); |
54
|
|
|
} |
55
|
|
|
|
56
|
5 |
|
public function pruneStalledJobs($workerName = null, $method = null) |
57
|
|
|
{ |
58
|
5 |
|
throw new UnsupportedException('Unsupported'); |
59
|
|
|
} |
60
|
|
|
|
61
|
5 |
|
public function resetExceptionJobs($workerName = null, $methodName = null) |
62
|
|
|
{ |
63
|
5 |
|
throw new UnsupportedException('Unsupported'); |
64
|
|
|
} |
65
|
|
|
|
66
|
5 |
|
public function pruneExceptionJobs($workerName = null, $methodName = null) |
67
|
|
|
{ |
68
|
5 |
|
throw new UnsupportedException('Unsupported'); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* @return array |
73
|
|
|
* |
74
|
|
|
* @throws UnsupportedException |
75
|
|
|
*/ |
76
|
4 |
|
public function getStatus() |
77
|
|
|
{ |
78
|
4 |
|
throw new UnsupportedException('Unsupported'); |
79
|
|
|
} |
80
|
|
|
|
81
|
4 |
|
public function getJobCount($workerName = null, $methodName = null) |
82
|
|
|
{ |
83
|
4 |
|
throw new UnsupportedException('Unsupported'); |
84
|
|
|
} |
85
|
|
|
|
86
|
1 |
|
public function deleteJob(Job $job) |
87
|
|
|
{ |
88
|
1 |
|
throw new UnsupportedException('Unsupported'); |
89
|
|
|
} |
90
|
|
|
|
91
|
5 |
|
public function pruneExpiredJobs($workerName = null, $methodName = null) |
92
|
|
|
{ |
93
|
5 |
|
throw new UnsupportedException('Unsupported'); |
94
|
|
|
} |
95
|
|
|
|
96
|
5 |
|
public function pruneArchivedJobs(\DateTime $olderThan) |
97
|
|
|
{ |
98
|
5 |
|
throw new UnsupportedException('Unsupported'); |
99
|
|
|
} |
100
|
|
|
} |
101
|
|
|
|