1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
#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 <list>
#include <map>
#include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <AccumulatedAck.h>
#include <Consumer.h>
#include <DeliveryRecord.h>
#include <MessageBuilder.h>
#include <NameGenerator.h>
#include <Prefetch.h>
#include <TxBuffer.h>
#include "framing/ChannelAdapter.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 framing::ChannelAdapter,
public CompletionHandler
{
class ConsumerImpl : public virtual Consumer
{
Channel* parent;
const string tag;
Queue::shared_ptr queue;
ConnectionToken* const connection;
const bool ackExpected;
bool blocked;
public:
ConsumerImpl(Channel* parent, const string& tag,
Queue::shared_ptr queue,
ConnectionToken* const connection, bool ack);
virtual bool deliver(Message::shared_ptr& msg);
void cancel();
void requestDispatch();
};
typedef std::map<string,ConsumerImpl*>::iterator consumer_iterator;
Connection& connection;
u_int16_t id;
u_int64_t currentDeliveryTag;
Queue::shared_ptr defaultQueue;
bool transactional;
std::map<string, ConsumerImpl*> consumers;
u_int32_t prefetchSize;
u_int16_t prefetchCount;
Prefetch outstanding;
u_int32_t framesize;
NameGenerator tagGenerator;
std::list<DeliveryRecord> unacked;
sys::Mutex deliveryLock;
TxBuffer txBuffer;
AccumulatedAck accumulatedAck;
MessageStore* const store;
MessageBuilder messageBuilder;//builder for in-progress message
bool opened;
boost::scoped_ptr<BrokerAdapter> adapter;
// completion handler for MessageBuilder
void complete(Message::shared_ptr msg);
void deliver(Message::shared_ptr& msg, const string& tag, Queue::shared_ptr& queue, bool ackExpected);
void cancel(consumer_iterator consumer);
bool checkPrefetch(Message::shared_ptr& msg);
public:
Channel(Connection& channel,
framing::ChannelId id,
u_int32_t framesize,
MessageStore* const _store = 0,
u_int64_t stagingThreshold = 0);
~Channel();
// For ChannelAdapter
bool isOpen() const { return opened; }
void open() { opened = true; }
void setDefaultQueue(Queue::shared_ptr queue){ defaultQueue = queue; }
Queue::shared_ptr getDefaultQueue() const { return defaultQueue; }
u_int32_t setPrefetchSize(u_int32_t size){ return prefetchSize = size; }
u_int16_t setPrefetchCount(u_int16_t n){ return prefetchCount = n; }
bool exists(const string& consumerTag);
void consume(string& tag, Queue::shared_ptr queue, bool acks,
bool exclusive, ConnectionToken* const connection = 0,
const framing::FieldTable* = 0);
void cancel(const string& tag);
bool get(Queue::shared_ptr queue, const std::string& destination, bool ackExpected);
void begin();
void close();
void commit();
void rollback();
void ack();
void ack(u_int64_t deliveryTag, bool multiple);
void recover(bool requeue);
void deliver(Message::shared_ptr& msg, const string& consumerTag, u_int64_t deliveryTag);
void handlePublish(Message* msg);
void handleHeader(boost::shared_ptr<framing::AMQHeaderBody>);
void handleContent(boost::shared_ptr<framing::AMQContentBody>);
void handleHeartbeat(boost::shared_ptr<framing::AMQHeartbeatBody>);
void handleInlineTransfer(Message::shared_ptr msg);
// For ChannelAdapter
void handleMethodInContext(
boost::shared_ptr<framing::AMQMethodBody> method,
const framing::MethodContext& context);
};
struct InvalidAckException{};
}} // namespace broker
#endif /*!_broker_BrokerChannel_h*/
|