2020-05-20 09:40:49 +00:00
|
|
|
#include <common/logger_useful.h>
|
|
|
|
#include <Storages/RabbitMQ/RabbitMQHandler.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
RabbitMQHandler::RabbitMQHandler(event_base * evbase_, Poco::Logger * log_) :
|
|
|
|
LibEventHandler(evbase_),
|
|
|
|
evbase(evbase_),
|
|
|
|
log(log_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-26 17:34:57 +00:00
|
|
|
void RabbitMQHandler::onError(AMQP::TcpConnection * , const char * message)
|
2020-05-20 09:40:49 +00:00
|
|
|
{
|
2020-05-26 20:43:20 +00:00
|
|
|
LOG_ERROR(log, "Library error report: {}", message);
|
2020-05-20 09:40:49 +00:00
|
|
|
stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-29 16:04:44 +00:00
|
|
|
void RabbitMQHandler::start(std::atomic<bool> & check_param)
|
2020-05-20 09:40:49 +00:00
|
|
|
{
|
2020-05-29 16:04:44 +00:00
|
|
|
/* The object of this class is shared between concurrent consumers, who call this method repeatedly at the same time.
|
|
|
|
* But the loop should not be attempted to start if it is already running. Also note that the loop is blocking to
|
|
|
|
* the thread that has started it.
|
|
|
|
*/
|
|
|
|
std::lock_guard lock(mutex);
|
|
|
|
|
|
|
|
/* The callback, which changes this variable, could have already been activated by another thread while we waited for the
|
|
|
|
* mutex to unlock (as it runs all active events on the connection). This means that there is no need to start event loop again.
|
|
|
|
*/
|
|
|
|
if (check_param)
|
|
|
|
return;
|
|
|
|
|
2020-05-20 09:40:49 +00:00
|
|
|
event_base_loop(evbase, EVLOOP_NONBLOCK);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RabbitMQHandler::stop()
|
|
|
|
{
|
2020-05-29 16:04:44 +00:00
|
|
|
std::lock_guard lock(mutex);
|
2020-05-20 09:40:49 +00:00
|
|
|
event_base_loopbreak(evbase);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|