lib/stats/ConsumerStatsImpl.h (56 lines of code) (raw):

/** * 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 PULSAR_CONSUMER_STATS_IMPL_H_ #define PULSAR_CONSUMER_STATS_IMPL_H_ #include <map> #include <memory> #include <mutex> #include <utility> #include "ConsumerStatsBase.h" #include "lib/AsioTimer.h" #include "lib/ExecutorService.h" namespace pulsar { class ExecutorService; using ExecutorServicePtr = std::shared_ptr<ExecutorService>; class ConsumerStatsImpl : public std::enable_shared_from_this<ConsumerStatsImpl>, public ConsumerStatsBase { private: std::string consumerStr_; unsigned long numBytesRecieved_ = 0; std::map<Result, unsigned long> receivedMsgMap_; std::map<std::pair<Result, CommandAck_AckType>, unsigned long> ackedMsgMap_; unsigned long totalNumBytesRecieved_ = 0; std::map<Result, unsigned long> totalReceivedMsgMap_; std::map<std::pair<Result, CommandAck_AckType>, unsigned long> totalAckedMsgMap_; const DeadlineTimerPtr timer_; std::mutex mutex_; unsigned int statsIntervalInSeconds_; void scheduleTimer(); friend std::ostream& operator<<(std::ostream&, const ConsumerStatsImpl&); friend std::ostream& operator<<(std::ostream&, const std::map<Result, unsigned long>&); friend class PulsarFriend; public: ConsumerStatsImpl(std::string, ExecutorServicePtr, unsigned int); ConsumerStatsImpl(const ConsumerStatsImpl& stats); void flushAndReset(const ASIO_ERROR&); void start() override; void stop() override { ASIO_ERROR error; timer_->cancel(error); } void receivedMessage(Message&, Result) override; void messageAcknowledged(Result, CommandAck_AckType, uint32_t ackNums) override; virtual ~ConsumerStatsImpl(); const inline std::map<std::pair<Result, CommandAck_AckType>, unsigned long>& getAckedMsgMap() const { return ackedMsgMap_; } inline unsigned long getNumBytesRecieved() const { return numBytesRecieved_; } const inline std::map<Result, unsigned long>& getReceivedMsgMap() const { return receivedMsgMap_; } inline const std::map<std::pair<Result, CommandAck_AckType>, unsigned long>& getTotalAckedMsgMap() const { return totalAckedMsgMap_; } inline unsigned long getTotalNumBytesRecieved() const { return totalNumBytesRecieved_; } const inline std::map<Result, unsigned long>& getTotalReceivedMsgMap() const { return totalReceivedMsgMap_; } }; typedef std::shared_ptr<ConsumerStatsImpl> ConsumerStatsImplPtr; } /* namespace pulsar */ #endif /* PULSAR_CONSUMER_STATS_IMPL_H_ */