blob: 8745bae1da9f59859527bdd8608dd2d6138480b5 [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.
*/
#ifndef _CONSUMEMESSAGESERVICE_H_
#define _CONSUMEMESSAGESERVICE_H_
#include <boost/asio.hpp>
#include <boost/asio/io_service.hpp>
#include <boost/bind.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/thread/thread.hpp>
#include "DefaultMQPushConsumerImpl.h"
#include "Logging.h"
#include "MQConsumer.h"
#include "MQMessageListener.h"
#include "PullRequest.h"
namespace rocketmq {
// class MQConsumer;
//<!***************************************************************************
class ConsumeMsgService {
public:
ConsumeMsgService() {}
virtual ~ConsumeMsgService() {}
virtual void start() {}
virtual void shutdown() {}
virtual void stopThreadPool() {}
virtual void submitConsumeRequest(boost::weak_ptr<PullRequest> request, vector<MQMessageExt>& msgs) {}
virtual MessageListenerType getConsumeMsgSerivceListenerType() { return messageListenerDefaultly; }
};
class ConsumeMessageConcurrentlyService : public ConsumeMsgService {
public:
ConsumeMessageConcurrentlyService(MQConsumer*, int threadCount, MQMessageListener* msgListener);
virtual ~ConsumeMessageConcurrentlyService();
virtual void start();
virtual void shutdown();
virtual void submitConsumeRequest(boost::weak_ptr<PullRequest> request, vector<MQMessageExt>& msgs);
virtual MessageListenerType getConsumeMsgSerivceListenerType();
virtual void stopThreadPool();
void ConsumeRequest(boost::weak_ptr<PullRequest> request, vector<MQMessageExt>& msgs);
void submitConsumeRequestLater(boost::weak_ptr<PullRequest> request, vector<MQMessageExt>& msgs, int millis);
void triggersubmitConsumeRequestLater(boost::asio::deadline_timer* t,
boost::weak_ptr<PullRequest> pullRequest,
vector<MQMessageExt>& msgs);
static void static_submitConsumeRequest(void* context,
boost::asio::deadline_timer* t,
boost::weak_ptr<PullRequest> pullRequest,
vector<MQMessageExt>& msgs);
private:
void resetRetryTopic(vector<MQMessageExt>& msgs);
private:
MQConsumer* m_pConsumer;
MQMessageListener* m_pMessageListener;
boost::asio::io_service m_ioService;
boost::thread_group m_threadpool;
boost::asio::io_service::work m_ioServiceWork;
};
class ConsumeMessageOrderlyService : public ConsumeMsgService {
public:
ConsumeMessageOrderlyService(MQConsumer*, int threadCount, MQMessageListener* msgListener);
virtual ~ConsumeMessageOrderlyService();
virtual void start();
virtual void shutdown();
virtual void submitConsumeRequest(boost::weak_ptr<PullRequest> request, vector<MQMessageExt>& msgs);
virtual void stopThreadPool();
virtual MessageListenerType getConsumeMsgSerivceListenerType();
void boost_asio_work();
// void tryLockLaterAndReconsume(boost::weak_ptr<PullRequest> request, bool tryLockMQ);
void tryLockLaterAndReconsumeDelay(boost::weak_ptr<PullRequest> request, bool tryLockMQ, int millisDelay);
static void static_submitConsumeRequestLater(void* context,
boost::weak_ptr<PullRequest> request,
bool tryLockMQ,
boost::asio::deadline_timer* t);
void ConsumeRequest(boost::weak_ptr<PullRequest> request);
void lockMQPeriodically(boost::system::error_code& ec, boost::asio::deadline_timer* t);
void unlockAllMQ();
bool lockOneMQ(const MQMessageQueue& mq);
private:
MQConsumer* m_pConsumer;
bool m_shutdownInprogress;
MQMessageListener* m_pMessageListener;
uint64_t m_MaxTimeConsumeContinuously;
boost::asio::io_service m_ioService;
boost::thread_group m_threadpool;
boost::asio::io_service::work m_ioServiceWork;
boost::asio::io_service m_async_ioService;
boost::scoped_ptr<boost::thread> m_async_service_thread;
};
//<!***************************************************************************
} // namespace rocketmq
#endif //<! _CONSUMEMESSAGESERVICE_H_