#ifndef _broker_BrokerChannel_h #define _broker_BrokerChannel_h /* * * 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. * */ #include #include #include #include #include #include "AccumulatedAck.h" #include "Consumer.h" #include "DeliveryAdapter.h" #include "DeliveryRecord.h" #include "DeliveryToken.h" #include "Deliverable.h" #include "DtxBuffer.h" #include "DtxManager.h" #include "MessageBuilder.h" #include "NameGenerator.h" #include "Prefetch.h" #include "TxBuffer.h" #include "qpid/framing/amqp_types.h" #include "qpid/framing/ChannelAdapter.h" #include "qpid/framing/ChannelOpenBody.h" #include "CompletionHandler.h" namespace qpid { namespace broker { class ConnectionToken; class Connection; class Queue; class BrokerAdapter; using framing::string; /** * Maintains state for an AMQP channel. Handles incoming and * outgoing messages for that channel. */ class Channel : public CompletionHandler { class ConsumerImpl : public Consumer { Channel* parent; DeliveryToken::shared_ptr token; const string tag; Queue::shared_ptr queue; ConnectionToken* const connection; const bool ackExpected; bool blocked; public: ConsumerImpl(Channel* parent, DeliveryToken::shared_ptr token, const string& tag, Queue::shared_ptr queue, ConnectionToken* const connection, bool ack); ~ConsumerImpl(); bool deliver(Message::shared_ptr& msg); void redeliver(Message::shared_ptr& msg, uint64_t deliveryTag); void cancel(); void requestDispatch(); }; typedef boost::ptr_map ConsumerImplMap; framing::ChannelId id; Connection& connection; DeliveryAdapter& out; uint64_t currentDeliveryTag; Queue::shared_ptr defaultQueue; ConsumerImplMap consumers; uint32_t prefetchSize; uint16_t prefetchCount; Prefetch outstanding; NameGenerator tagGenerator; std::list unacked; sys::Mutex deliveryLock; TxBuffer::shared_ptr txBuffer; DtxBuffer::shared_ptr dtxBuffer; bool dtxSelected; AccumulatedAck accumulatedAck; MessageStore* const store; MessageBuilder messageBuilder;//builder for in-progress message bool opened; bool flowActive; void route(Message::shared_ptr msg, Deliverable& strategy); void complete(Message::shared_ptr msg);// completion handler for MessageBuilder void record(const DeliveryRecord& delivery); bool checkPrefetch(Message::shared_ptr& msg); void checkDtxTimeout(); public: Channel(Connection& parent, DeliveryAdapter& out, framing::ChannelId id, MessageStore* const store = 0); ~Channel(); bool isOpen() const { return opened; } framing::ChannelId getId() const { return id; } void open() { opened = true; } void setDefaultQueue(Queue::shared_ptr queue){ defaultQueue = queue; } Queue::shared_ptr getDefaultQueue() const { return defaultQueue; } uint32_t setPrefetchSize(uint32_t size){ return prefetchSize = size; } uint16_t setPrefetchCount(uint16_t n){ return prefetchCount = n; } bool exists(const string& consumerTag); /** *@param tagInOut - if empty it is updated with the generated token. */ void consume(DeliveryToken::shared_ptr token, string& tagInOut, Queue::shared_ptr queue, bool acks, bool exclusive, ConnectionToken* const connection = 0, const framing::FieldTable* = 0); void cancel(const string& tag); bool get(DeliveryToken::shared_ptr token, Queue::shared_ptr queue, bool ackExpected); void close(); void startTx(); void commit(); void rollback(); void selectDtx(); void startDtx(const std::string& xid, DtxManager& mgr, bool join); void endDtx(const std::string& xid, bool fail); void suspendDtx(const std::string& xid); void resumeDtx(const std::string& xid); void ack(uint64_t deliveryTag, bool multiple); void ack(uint64_t deliveryTag, uint64_t endTag); void recover(bool requeue); void flow(bool active); void deliver(Message::shared_ptr& msg, const string& consumerTag, uint64_t deliveryTag); void handlePublish(Message* msg); void handleHeader(boost::shared_ptr); void handleContent(boost::shared_ptr); void handleHeartbeat(boost::shared_ptr); void handleInlineTransfer(Message::shared_ptr msg); }; }} // namespace broker #endif /*!_broker_BrokerChannel_h*/