65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
#include <QCoreApplication>
|
|
#include <QStringList>
|
|
#include <QDebug>
|
|
|
|
#include "qamqpclient.h"
|
|
#include "qamqpexchange.h"
|
|
#include "qamqpqueue.h"
|
|
|
|
class DirectLogEmitter : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DirectLogEmitter(QObject *parent = 0) : QObject(parent) {}
|
|
|
|
public Q_SLOTS:
|
|
void start() {
|
|
connect(&m_client, SIGNAL(connected()), this, SLOT(clientConnected()));
|
|
connect(&m_client, SIGNAL(disconnected()), qApp, SLOT(quit()));
|
|
m_client.connectToHost();
|
|
}
|
|
|
|
private Q_SLOTS:
|
|
void clientConnected() {
|
|
QAmqpExchange *direct_logs = m_client.createExchange("direct_logs");
|
|
connect(direct_logs, SIGNAL(declared()), this, SLOT(exchangeDeclared()));
|
|
direct_logs->declare(QAmqpExchange::Direct);
|
|
}
|
|
|
|
void exchangeDeclared() {
|
|
QAmqpExchange *direct_logs = qobject_cast<QAmqpExchange*>(sender());
|
|
if (!direct_logs)
|
|
return;
|
|
|
|
QStringList args = qApp->arguments();
|
|
args.takeFirst(); // remove executable name
|
|
|
|
QString severity = (args.isEmpty() ? "info" : args.first());
|
|
QString message;
|
|
if (args.size() > 1) {
|
|
args.takeFirst();
|
|
message = args.join(" ");
|
|
} else {
|
|
message = "Hello World!";
|
|
}
|
|
|
|
direct_logs->publish(message, severity);
|
|
qDebug(" [x] Sent %s:%s", severity.toLatin1().constData(), message.toLatin1().constData());
|
|
m_client.disconnectFromHost();
|
|
}
|
|
|
|
private:
|
|
QAmqpClient m_client;
|
|
|
|
};
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QCoreApplication app(argc, argv);
|
|
DirectLogEmitter logEmitter;
|
|
logEmitter.start();
|
|
return app.exec();
|
|
}
|
|
|
|
#include "main.moc"
|