blob: a3d6971038dd5102ad09b244819b53bbfa2480dd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "common/AbstractMQProducer.h"
#include "resource/Resource.h"
#include "common/MQMessageQueueSelector.h"
#include "rocketmq/DefaultMQProducer.h"
#include "rocketmq/TransactionMQProducer.h"
#include "rocketmq/MQMessage.h"
#include "spdlog/logger.h"
#include <future>
#include <iostream>
#include <thread>
#include <memory>
extern std::shared_ptr<spdlog::logger> multi_logger;
extern std::shared_ptr<Resource> resource;
class RMQNormalProducer : public AbstractMQProducer
{
private:
std::shared_ptr<rocketmq::DefaultMQProducer> producer;
std::shared_ptr<rocketmq::TransactionMQProducer> transactionProducer;
public:
RMQNormalProducer(std::shared_ptr<rocketmq::DefaultMQProducer> producer) : producer(producer) {}
RMQNormalProducer(std::shared_ptr<rocketmq::TransactionMQProducer> producer) : transactionProducer(producer) {}
std::shared_ptr<rocketmq::DefaultMQProducer> getProducer()
{
return producer;
}
std::shared_ptr<rocketmq::TransactionMQProducer> getTransProducer()
{
return transactionProducer;
}
void start()
{
producer->start();
}
void startTransaction()
{
transactionProducer->start();
}
rocketmq::SendResult sendTrans(rocketmq::MQMessage &msg, rocketmq::LocalTransactionState state)
{
rocketmq::SendResult sendResult;
try
{
// COMMIT_MESSAGE, ROLLBACK_MESSAGE, UNKNOWN
sendResult = transactionProducer->sendMessageInTransaction(msg, &state);
getEnqueueMessages()->addData(sendResult.getMsgId());
}
catch (const std::exception &e)
{
multi_logger->error("TransProducer send message failed, {}", e.what());
}
return sendResult;
}
rocketmq::SendResult send(rocketmq::MQMessage &msg)
{
rocketmq::SendResult sendResult;
try
{
sendResult = producer->send(msg);
getEnqueueMessages()->addData(sendResult.getMsgId());
}
catch (const std::exception &e)
{
multi_logger->error("Producer send message failed, {}", e.what());
}
return sendResult;
}
rocketmq::SendResult sendOrderMessage(rocketmq::MQMessage &msg, int orderId)
{
std::shared_ptr<MQMessageQueueSelector> selector = std::make_shared<MQMessageQueueSelector>();
rocketmq::SendResult sendResult;
try
{
sendResult = producer->send(msg, selector.get(), &orderId);
getEnqueueMessages()->addData(sendResult.getMsgId());
}
catch (const std::exception &e)
{
multi_logger->error("Producer send message failed, {}", e.what());
}
return sendResult;
}
void sendAsync(rocketmq::MQMessage &msg)
{
producer->send(msg);
}
rocketmq::SendResult send(const std::string &topic, const std::string &tags, const std::string &body)
{
rocketmq::MQMessage msg(topic, // topic
tags, // tags
body); // body
rocketmq::SendResult sendResult = send(msg);
getEnqueueMessages()->addData(sendResult.getMsgId());
return sendResult;
}
void send(const std::string &topic, const std::string &tags, int messageNim)
{
for (int i = 0; i < messageNim; i++)
{
rocketmq::MQMessage msg(topic, tags, RandomUtils::getStringByUUID());
try
{
rocketmq::SendResult sendResult = producer->send(msg);
getEnqueueMessages()->addData(sendResult.getMsgId());
}
catch (const std::exception &e)
{
multi_logger->error("Producer send message failed, {}", e.what());
}
}
}
void shutdown()
{
producer->shutdown();
}
void shutdownTransaction()
{
transactionProducer->shutdown();
}
};