|
1
|
|
|
<?php |
|
2
|
|
|
namespace Ackintosh\Snidel; |
|
3
|
|
|
|
|
4
|
|
|
use Ackintosh\Snidel\Result\Result; |
|
5
|
|
|
use Ackintosh\Snidel\Result\QueueInterface as ResultQueueInterface; |
|
6
|
|
|
use Ackintosh\Snidel\Task\QueueInterface as TaskQueueInterface; |
|
7
|
|
|
use Ackintosh\Snidel\Task\Task; |
|
8
|
|
|
|
|
9
|
|
|
class Worker |
|
10
|
|
|
{ |
|
11
|
|
|
/** @var \Ackintosh\Snidel\Task\Task */ |
|
12
|
|
|
private $task; |
|
|
|
|
|
|
13
|
|
|
|
|
14
|
|
|
/** @var \Ackintosh\Snidel\Fork\Fork */ |
|
15
|
|
|
private $fork; |
|
16
|
|
|
|
|
17
|
|
|
/** @var \Ackintosh\Snidel\Task\QueueInterface */ |
|
18
|
|
|
private $taskQueue; |
|
19
|
|
|
|
|
20
|
|
|
/** @var \Ackintosh\Snidel\Result\QueueInterface */ |
|
21
|
|
|
private $resultQueue; |
|
22
|
|
|
|
|
23
|
|
|
/** @var \Ackintosh\Snidel\Pcntl */ |
|
24
|
|
|
private $pcntl; |
|
25
|
|
|
|
|
26
|
|
|
/** @var bool */ |
|
27
|
|
|
private $isReceivedTask = false; |
|
28
|
|
|
|
|
29
|
|
|
/** @var bool */ |
|
30
|
|
|
private $isEnqueuedResult = false; |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* @param \Ackintosh\Snidel\Fork\Fork $fork |
|
34
|
|
|
*/ |
|
35
|
|
|
public function __construct($fork) |
|
36
|
|
|
{ |
|
37
|
|
|
$this->pcntl = new Pcntl(); |
|
38
|
|
|
$this->fork = $fork; |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* @param \Ackintosh\Snidel\Task\QueueInterface |
|
43
|
|
|
* @return void |
|
44
|
|
|
*/ |
|
45
|
|
|
public function setTaskQueue(TaskQueueInterface $queue) |
|
46
|
|
|
{ |
|
47
|
|
|
$this->taskQueue = $queue; |
|
48
|
|
|
} |
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* @param \Ackintosh\Snidel\Result\QueueInterface |
|
52
|
|
|
* @return void |
|
53
|
|
|
*/ |
|
54
|
|
|
public function setResultQueue(ResultQueueInterface $queue) |
|
55
|
|
|
{ |
|
56
|
|
|
$this->resultQueue = $queue; |
|
57
|
|
|
} |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* @return int |
|
61
|
|
|
*/ |
|
62
|
|
|
public function getPid() |
|
63
|
|
|
{ |
|
64
|
|
|
return $this->fork->getPid(); |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
/** |
|
68
|
|
|
* @return void |
|
69
|
|
|
* @throws \RuntimeException |
|
70
|
|
|
*/ |
|
71
|
|
|
public function run() |
|
72
|
|
|
{ |
|
73
|
|
|
try { |
|
74
|
|
|
$task = $this->taskQueue->dequeue(); |
|
75
|
|
|
$this->isReceivedTask = true; |
|
76
|
|
|
$result = $task->execute(); |
|
77
|
|
|
} catch (\RuntimeException $e) { |
|
78
|
|
|
throw $e; |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
$result->setFork($this->fork); |
|
82
|
|
|
|
|
83
|
|
|
try { |
|
84
|
|
|
$this->resultQueue->enqueue($result); |
|
85
|
|
|
$this->isEnqueuedResult = true; |
|
86
|
|
|
} catch (\RuntimeException $e) { |
|
87
|
|
|
throw $e; |
|
88
|
|
|
} |
|
89
|
|
|
} |
|
90
|
|
|
|
|
91
|
|
|
/** |
|
92
|
|
|
* @return void |
|
93
|
|
|
* @throws \RuntimeException |
|
94
|
|
|
*/ |
|
95
|
|
|
public function error() |
|
96
|
|
|
{ |
|
97
|
|
|
$result = new Result(); |
|
98
|
|
|
$result->setError(error_get_last()); |
|
99
|
|
|
$result->setTask(new Task('echo', array(), null)); |
|
100
|
|
|
$result->setFork($this->fork); |
|
101
|
|
|
|
|
102
|
|
|
try { |
|
103
|
|
|
$this->resultQueue->enqueue($result); |
|
104
|
|
|
} catch (\RuntimeException $e) { |
|
105
|
|
|
throw $e; |
|
106
|
|
|
} |
|
107
|
|
|
} |
|
108
|
|
|
|
|
109
|
|
|
/** |
|
110
|
|
|
* @param int $sig |
|
111
|
|
|
* @return void |
|
112
|
|
|
*/ |
|
113
|
|
|
public function terminate($sig) |
|
114
|
|
|
{ |
|
115
|
|
|
posix_kill($this->fork->getPid(), $sig); |
|
116
|
|
|
$status = null; |
|
117
|
|
|
$this->pcntl->waitpid($this->fork->getPid(), $status); |
|
118
|
|
|
} |
|
119
|
|
|
|
|
120
|
|
|
/** |
|
121
|
|
|
* @return bool |
|
122
|
|
|
*/ |
|
123
|
|
|
public function isFailedToEnqueueResult() |
|
124
|
|
|
{ |
|
125
|
|
|
return $this->isReceivedTask && !$this->isEnqueuedResult; |
|
126
|
|
|
} |
|
127
|
|
|
} |
|
128
|
|
|
|
This check marks private properties in classes that are never used. Those properties can be removed.