summaryrefslogtreecommitdiff
path: root/cpp/lib/broker/BrokerChannel.cpp
blob: 979617b594307c1c401e0b3c0022dd03075b8ba3 (plain)
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
/*
 *
 * 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 <assert.h>

#include <iostream>
#include <sstream>

#include <boost/bind.hpp>

#include "BrokerChannel.h"
#include "QpidError.h"

using std::mem_fun_ref;
using std::bind2nd;
using namespace qpid::broker;
using namespace qpid::framing;
using namespace qpid::sys;


Channel::Channel(OutputHandler* _out, int _id, u_int32_t _framesize, MessageStore* const _store, u_int64_t _stagingThreshold) :
    id(_id), 
    out(_out), 
    currentDeliveryTag(1),
    transactional(false),
    prefetchSize(0),
    prefetchCount(0),
    framesize(_framesize),
    tagGenerator("sgen"),
    store(_store),
    messageBuilder(this, _store, _stagingThreshold){

    outstanding.reset();
}

Channel::~Channel(){
}

bool Channel::exists(const string& consumerTag){
    Mutex::ScopedLock l(lock);
    return consumers.find(consumerTag) != consumers.end();
}

void Channel::consume(
    string& tag, Queue::shared_ptr queue, bool acks,
    bool exclusive, ConnectionToken* const connection, const FieldTable*)
{
    Mutex::ScopedLock l(lock);
    if(tag.empty()) tag = tagGenerator.generate();
    // TODO aconway 2006-12-13: enforce ownership of consumer
    // with auto_ptr.
    ConsumerImpl* c(new ConsumerImpl(this, tag, queue, connection, acks));
    try{
        queue->consume(c, exclusive);//may throw exception
        consumers[tag] = c;
    }catch(ExclusiveAccessException& e){
        delete c;
        throw e;
    }
}

void Channel::cancel(consumer_iterator i) {
    // Private, must be called with lock held.
    ConsumerImpl* c = i->second;
    consumers.erase(i);
    if(c){
        c->cancel();
        delete c;
    }
}

void Channel::cancel(const string& tag){
    Mutex::ScopedLock l(lock);
    consumer_iterator i = consumers.find(tag);
    if(i != consumers.end()){
        cancel(i);
    }
}

void Channel::close(){
    {
        Mutex::ScopedLock l(lock);
        while(!consumers.empty()) {
            cancel(consumers.begin());
        }
    }
    // TODO aconway 2006-12-13: does recovery need to be atomic with
    // cancelling all consumers?
    recover(true);
}

void Channel::begin(){
    transactional = true;
}

void Channel::commit(){
    TxAck txAck(accumulatedAck, unacked);
    txBuffer.enlist(&txAck);
    if(txBuffer.prepare(store)){
        txBuffer.commit();
    }
    accumulatedAck.clear();
}

void Channel::rollback(){
    txBuffer.rollback();
    accumulatedAck.clear();
}

void Channel::deliver(Message::shared_ptr& msg, const string& consumerTag, Queue::shared_ptr& queue, bool ackExpected){
    u_int64_t deliveryTag;
    {
        Mutex::ScopedLock l(lock);
        deliveryTag = currentDeliveryTag++;
        if(ackExpected){
            unacked.push_back(
                DeliveryRecord(msg, queue, consumerTag, deliveryTag));
            outstanding.size += msg->contentSize();
            outstanding.count++;
        }
    }
    msg->deliver(out, id, consumerTag, deliveryTag, framesize);
}

bool Channel::checkPrefetch(Message::shared_ptr& msg){
    bool countOk = !prefetchCount || prefetchCount > unacked.size();
    bool sizeOk = !prefetchSize || prefetchSize > msg->contentSize() + outstanding.size || unacked.empty();
    return countOk && sizeOk;
}

Channel::ConsumerImpl::ConsumerImpl(Channel* _parent, const string& _tag, 
                                    Queue::shared_ptr _queue, 
                                    ConnectionToken* const _connection, bool ack) : parent(_parent), 
                                                                                    tag(_tag), 
                                                                                    queue(_queue),
                                                                                    connection(_connection),
                                                                                    ackExpected(ack), 
                                                                                    blocked(false){
}

bool Channel::ConsumerImpl::deliver(Message::shared_ptr& msg){
    if(!connection || connection != msg->getPublisher()){//check for no_local
        if(ackExpected && !parent->checkPrefetch(msg)){
            blocked = true;
        }else{
            blocked = false;
            parent->deliver(msg, tag, queue, ackExpected);
            return true;
        }
    }
    return false;
}

void Channel::ConsumerImpl::cancel(){
    if(queue) queue->cancel(this);
}

void Channel::ConsumerImpl::requestDispatch(){
    if(blocked) queue->dispatch();
}

void Channel::handlePublish(Message* _message, Exchange::shared_ptr _exchange){
    Message::shared_ptr message(_message);
    exchange = _exchange;
    messageBuilder.initialise(message);
}

void Channel::handleHeader(AMQHeaderBody::shared_ptr header){
    messageBuilder.setHeader(header);
    //at this point, decide based on the size of the message whether we want
    //to stage it by saving content directly to disk as it arrives
}

void Channel::handleContent(AMQContentBody::shared_ptr content){
    messageBuilder.addContent(content);
}

void Channel::complete(Message::shared_ptr& msg){
    if(exchange){
        if(transactional){
            TxPublish* deliverable = new TxPublish(msg);
            exchange->route(*deliverable, msg->getRoutingKey(), &(msg->getHeaderProperties()->getHeaders()));
            txBuffer.enlist(new DeletingTxOp(deliverable));
        }else{
            DeliverableMessage deliverable(msg);
            exchange->route(deliverable, msg->getRoutingKey(), &(msg->getHeaderProperties()->getHeaders()));
        }
        exchange.reset();
    }else{
        std::cout << "Exchange not known in" << BOOST_CURRENT_FUNCTION
                  << std::endl;
    }
}

void Channel::ack(u_int64_t deliveryTag, bool multiple) {
    if(transactional){
        Mutex::ScopedLock locker(lock);    
        accumulatedAck.update(deliveryTag, multiple);
        //TODO: I think the outstanding prefetch size & count should
        //be updated at this point...
        //TODO: ...this may then necessitate dispatching to consumers
    }
    else {
        {
            Mutex::ScopedLock locker(lock);    
            ack_iterator i = find_if(
                unacked.begin(), unacked.end(),
                boost::bind(&DeliveryRecord::matches, _1, deliveryTag));
            if(i == unacked.end()) {
                throw InvalidAckException();
            }
            else if(multiple) {     
                ack_iterator end = ++i;
                for_each(unacked.begin(), end,
                         mem_fun_ref(&DeliveryRecord::discard));
                unacked.erase(unacked.begin(), end);

                //recalculate the prefetch:
                outstanding.reset();
                for_each(
                    unacked.begin(), unacked.end(),
                    boost::bind(&DeliveryRecord::addTo, _1, &outstanding));
            }
            else {
                i->discard();
                i->subtractFrom(&outstanding);
                unacked.erase(i);        
            }
        }
        //if the prefetch limit had previously been reached, there may
        //be messages that can be now be delivered

        // TODO aconway 2006-12-13: Does this need to be atomic?
        // If so we need a redesign, requestDispatch re-enters
        // Channel::dispatch.
        // 
       for(consumer_iterator j = consumers.begin(); j != consumers.end(); j++){
            j->second->requestDispatch();
        }
    }
}

void Channel::recover(bool requeue) {
    std::list<DeliveryRecord> copyUnacked;
    boost::function1<void, DeliveryRecord&> recoverFn;
    {
        Mutex::ScopedLock l(lock);
        if(requeue) {
            outstanding.reset();
            copyUnacked.swap(unacked);
            recoverFn = boost::bind(&DeliveryRecord::requeue, _1);
        }
        else {
            copyUnacked = unacked;
            recoverFn = boost::bind(&DeliveryRecord::redeliver, _1, this);
        }
    }
    // TODO aconway 2006-12-13: Does recovery of copyUnacked have to
    // be atomic with extracting the list?
    for_each(copyUnacked.begin(), copyUnacked.end(), recoverFn);
}

bool Channel::get(Queue::shared_ptr queue, bool ackExpected){
    Mutex::ScopedLock l(lock);
    // TODO aconway 2006-12-13: Nasty to have all these external calls
    // inside a critical.section but none appear to have blocking potential.
    // sendGetOk does non-blocking IO
    // 
    Message::shared_ptr msg = queue->dequeue();
    if(msg) {
        u_int64_t myDeliveryTag = currentDeliveryTag++;
        u_int32_t count = queue->getMessageCount();
        msg->sendGetOk(out, id, count + 1, myDeliveryTag, framesize);
        if(ackExpected){
            unacked.push_back(DeliveryRecord(msg, queue, myDeliveryTag));
        }
        return true;
    }
    return false;
}

void Channel::deliver(Message::shared_ptr& msg, const string& consumerTag,
                      u_int64_t deliveryTag){
    msg->deliver(out, id, consumerTag, deliveryTag, framesize);
}