|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace ETNA\Silex\Provider\RabbitMQ; |
|
4
|
|
|
|
|
5
|
|
|
use Saxulum\Console\Command\AbstractPimpleCommand; |
|
6
|
|
|
use Symfony\Component\Console\Input\InputArgument; |
|
7
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
|
8
|
|
|
use Symfony\Component\Console\Input\InputOption; |
|
9
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
|
10
|
|
|
|
|
11
|
|
|
class Consumer extends AbstractPimpleCommand |
|
12
|
|
|
{ |
|
13
|
|
|
protected function configure() |
|
14
|
|
|
{ |
|
15
|
|
|
$this |
|
16
|
|
|
->setName('rabbitmq:consumer') |
|
17
|
|
|
->addArgument('name', InputArgument::REQUIRED, 'Consumer Name') |
|
18
|
|
|
->addOption('messages', 'm', InputOption::VALUE_OPTIONAL, 'Messages to consume', 0) |
|
19
|
|
|
->addOption('route', 'r', InputOption::VALUE_OPTIONAL, 'Routing Key', '') |
|
20
|
|
|
->addOption('memory-limit', 'l', InputOption::VALUE_OPTIONAL, 'Allowed memory for this process', null) |
|
21
|
|
|
->addOption('debug', 'd', InputOption::VALUE_NONE, 'Enable Debugging') |
|
22
|
|
|
; |
|
23
|
|
|
} |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* Executes the current command. |
|
27
|
|
|
* |
|
28
|
|
|
* @param InputInterface $input An InputInterface instance |
|
29
|
|
|
* @param OutputInterface $output An OutputInterface instance |
|
30
|
|
|
* |
|
31
|
|
|
* @return integer|null 0 if everything went fine, or an error code |
|
32
|
|
|
* |
|
33
|
|
|
* @throws \InvalidArgumentException When the number of messages to consume is less than 0 |
|
34
|
|
|
* @throws \BadFunctionCallException When the pcntl is not installed and option -s is true |
|
35
|
|
|
*/ |
|
36
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) |
|
37
|
|
|
{ |
|
38
|
|
|
if (defined('AMQP_DEBUG') === false) { |
|
39
|
|
|
define('AMQP_DEBUG', (bool) $input->getOption('debug')); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
$this->amount = $input->getOption('messages'); |
|
|
|
|
|
|
43
|
|
|
|
|
44
|
|
|
if (!is_int($this->amount) || 0 > $this->amount) { |
|
45
|
|
|
throw new \InvalidArgumentException("The -m option should be null or greater than 0"); |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
$this->consumer = $this->getConsumerInstance($input); |
|
|
|
|
|
|
49
|
|
|
|
|
50
|
|
|
if ( |
|
51
|
|
|
!is_null($input->getOption('memory-limit')) && |
|
52
|
|
|
ctype_digit((string)$input->getOption('memory-limit')) && |
|
53
|
|
|
$input->getOption('memory-limit') > 0 |
|
54
|
|
|
) { |
|
55
|
|
|
$this->consumer->setMemoryLimit($input->getOption('memory-limit')); |
|
56
|
|
|
} |
|
57
|
|
|
$this->consumer->setRoutingKey($input->getOption('route')); |
|
58
|
|
|
$this->consumer->consume($this->amount); |
|
59
|
|
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* @param InputInterface $input |
|
63
|
|
|
*/ |
|
64
|
|
|
protected function getConsumerInstance($input) |
|
|
|
|
|
|
65
|
|
|
{ |
|
66
|
|
|
$app = $this->container; |
|
67
|
|
|
return $app['rabbit.consumer'][$input->getArgument('name')]; |
|
68
|
|
|
} |
|
69
|
|
|
} |
|
70
|
|
|
|
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: