BraincraftedMqBundle wraps BcMq into a nice bundle for Symfony2 to provide you with a PHP implementation of a Message Queue Sever.
The recommended way of installing BraincraftedMqBundle is through Composer.
#composer.json
{
"require": {
"braincrafted/mq-bundle": "dev-master"
}
}
You also need to add it to your AppKernel.php
.
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Braincrafted\Bundle\MqBundle\BraincraftedMqBundle()
);
// ...
return $bundles;
}
BraincraftedMqBundle uses services (instead of callbacks) to consume messages. You can configure those consumers in your config.yml
.
braincrafted_mq:
consumers:
write_file: acme_demo.consumer.write_file
Now you need to define the service acme_demo.consumer.write_file
in your bundles service configuration. You have to write those consumers by yourself. An example is given below.
<?php
// src/Braincrafted/Bundle/MqDemoBundle/Consumer/WriteFileConsumer.php
namespace Braincrafted\Bundle\MqDemoBundle\Consumer;
class WriteFileConsumer
{
private $filename;
public function __construct($filename)
{
$this->filename = $filename;
}
public function consume($message)
{
file_put_contents($this->filename, $message."\n", FILE_APPEND);
}
}
Please note, that in this case $message
is a string but you can also send more complex messages, for example, arrays. Everything that can be encoded as JSON can be sent.
If your consumers are in place you can start the message queue server and send messages.
$ php app/console braincrafted:mq:server -p 4000
It is also possible to start the server in verbose mode by using the --verbose
or -v
option. If the verbose mode is activated, every bit of incoming data is echoed in the console.
The server will redirect every message that is sent to port 4000
to the consumers. Each message must be a JSON object and must contain exactly two values: type
and message
. Type is name name of the consumer (write_file
in the example above) and message is a string or an array.
{
"type": "write_file",
"message": "Hello World!"
}
A complex message:
{
"type": "write_file",
"message": { "text": "Hello World!", "date": "2013-05-29" }
}
If you want to send the messages from your Symfony app you can use the producer provided by the bundle.
$producer = $container->get('braincrafted_mq.producer');
$producer->produce('write_file', 'Hello World!');
The message can also be an array:
$producer = $container->get('braincrafted_mq.producer');
$producer->produce('write_file', array('text' => 'Hello World!', 'time' => time());
- Changed namespace to
Braincrafted
- Fixed bug with empty callback in server
- Updated
braincrafted/mq
to version 0.3 - Incoming data is echoed in verbose mode
- Updated
braincrafted/mq
to version 0.2 (compatible with Symfony 2.3)
- Fixed dependencies
- Initial release
The MIT License (MIT)
Copyright (c) 2013 Florian Eckerstorfer
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.