/* * * 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 #include "Connection.h" // FIXME aconway 2007-01-26: Evaluate all throws, ensure consistent // handling of errors that should close the connection or the channel. // Make sure the user thread receives a connection in each case. // using namespace std; using namespace boost; using namespace qpid::client; using namespace qpid::framing; using namespace qpid::sys; Channel::Channel(bool _transactional, u_int16_t _prefetch) : connection(0), prefetch(_prefetch), transactional(_transactional) { } Channel::~Channel(){ close(); } void Channel::open(ChannelId id, Connection& con) { if (isOpen()) THROW_QPID_ERROR(INTERNAL_ERROR, "Attempt to re-open channel "+id); connection = &con; init(id, con, con.getVersion()); // ChannelAdapter initialization. string oob; if (id != 0) sendAndReceive(new ChannelOpenBody(version, oob)); } void Channel::protocolInit( const std::string& uid, const std::string& pwd, const std::string& vhost) { assert(connection); responses.expect(); connection->connector->init(); // Send ProtocolInit block. responses.receive(); FieldTable props; string mechanism("PLAIN"); string response = ((char)0) + uid + ((char)0) + pwd; string locale("en_US"); ConnectionTuneBody::shared_ptr proposal = sendAndReceive( new ConnectionStartOkBody( version, responses.getRequestId(), props, mechanism, response, locale)); /** * Assume for now that further challenges will not be required //receive connection.secure responses.receive(connection_secure)); //send connection.secure-ok connection->send(new AMQFrame(0, new ConnectionSecureOkBody(response))); **/ send(new ConnectionTuneOkBody( version, responses.getRequestId(), proposal->getChannelMax(), connection->getMaxFrameSize(), proposal->getHeartbeat())); u_int16_t heartbeat = proposal->getHeartbeat(); connection->connector->setReadTimeout(heartbeat * 2); connection->connector->setWriteTimeout(heartbeat); // Send connection open. std::string capabilities; responses.expect(); send(new ConnectionOpenBody(version, vhost, capabilities, true)); //receive connection.open-ok (or redirect, but ignore that for now //esp. as using force=true). responses.waitForResponse(); if(responses.validate()) { //ok }else if(responses.validate()){ //ignore for now ConnectionRedirectBody::shared_ptr redirect( shared_polymorphic_downcast( responses.getResponse())); cout << "Received redirection to " << redirect->getHost() << endl; } else { THROW_QPID_ERROR(PROTOCOL_ERROR, "Bad response"); } } bool Channel::isOpen() const { return connection; } void Channel::setPrefetch(u_int16_t _prefetch){ prefetch = _prefetch; setQos(); } void Channel::setQos(){ sendAndReceive( new BasicQosBody(version, 0, prefetch, false)); if(transactional){ sendAndReceive(new TxSelectBody(version)); } } void Channel::declareExchange(Exchange& exchange, bool synch){ string name = exchange.getName(); string type = exchange.getType(); FieldTable args; sendAndReceiveSync( synch, new ExchangeDeclareBody( version, 0, name, type, false, false, false, false, !synch, args)); } void Channel::deleteExchange(Exchange& exchange, bool synch){ string name = exchange.getName(); sendAndReceiveSync( synch, new ExchangeDeleteBody(version, 0, name, false, !synch)); } void Channel::declareQueue(Queue& queue, bool synch){ string name = queue.getName(); FieldTable args; sendAndReceiveSync( synch, new QueueDeclareBody( version, 0, name, false/*passive*/, queue.isDurable(), queue.isExclusive(), queue.isAutoDelete(), !synch, args)); if (synch) { if(queue.getName().length() == 0){ QueueDeclareOkBody::shared_ptr response = shared_polymorphic_downcast( responses.getResponse()); queue.setName(response->getQueue()); } } } void Channel::deleteQueue(Queue& queue, bool ifunused, bool ifempty, bool synch){ //ticket, queue, ifunused, ifempty, nowait string name = queue.getName(); sendAndReceiveSync( synch, new QueueDeleteBody(version, 0, name, ifunused, ifempty, !synch)); } void Channel::bind(const Exchange& exchange, const Queue& queue, const std::string& key, const FieldTable& args, bool synch){ string e = exchange.getName(); string q = queue.getName(); sendAndReceiveSync( synch, new QueueBindBody(version, 0, q, e, key,!synch, args)); } void Channel::consume( Queue& queue, std::string& tag, MessageListener* listener, int ackMode, bool noLocal, bool synch, const FieldTable* fields) { sendAndReceiveSync( synch, new BasicConsumeBody( version, 0, queue.getName(), tag, noLocal, ackMode == NO_ACK, false, !synch, fields ? *fields : FieldTable())); if (synch) { BasicConsumeOkBody::shared_ptr response = shared_polymorphic_downcast( responses.getResponse()); tag = response->getConsumerTag(); } // FIXME aconway 2007-02-20: Race condition! // We could receive the first message for the consumer // before we create the consumer below. // Move consumer creation to handler for BasicConsumeOkBody { Mutex::ScopedLock l(lock); ConsumerMap::iterator i = consumers.find(tag); if (i != consumers.end()) THROW_QPID_ERROR(CLIENT_ERROR, "Consumer already exists with tag="+tag); Consumer& c = consumers[tag]; c.listener = listener; c.ackMode = ackMode; c.lastDeliveryTag = 0; } } void Channel::cancel(const std::string& tag, bool synch) { Consumer c; { Mutex::ScopedLock l(lock); ConsumerMap::iterator i = consumers.find(tag); if (i == consumers.end()) return; c = i->second; consumers.erase(i); } if(c.ackMode == LAZY_ACK && c.lastDeliveryTag > 0) send(new BasicAckBody(version, c.lastDeliveryTag, true)); sendAndReceiveSync( synch, new BasicCancelBody(version, tag, !synch)); } void Channel::cancelAll(){ ConsumerMap consumersCopy; { Mutex::ScopedLock l(lock); consumersCopy = consumers; consumers.clear(); } for (ConsumerMap::iterator i=consumersCopy.begin(); i != consumersCopy.end(); ++i) { Consumer& c = i->second; if ((c.ackMode == LAZY_ACK || c.ackMode == AUTO_ACK) && c.lastDeliveryTag > 0) { send(new BasicAckBody(version, c.lastDeliveryTag, true)); } } } bool Channel::get(Message& msg, const Queue& queue, int ackMode) { // Expect a message starting with a BasicGetOk incoming.startGet(); send(new BasicGetBody(version, 0, queue.getName(), ackMode)); return incoming.waitGet(msg); } void Channel::publish( const Message& msg, const Exchange& exchange, const std::string& routingKey, bool mandatory, bool immediate) { // FIXME aconway 2007-01-30: Rework for 0-9 message class. const string e = exchange.getName(); string key = routingKey; send(new BasicPublishBody(version, 0, e, key, mandatory, immediate)); //break msg up into header frame and content frame(s) and send these send(msg.header); string data = msg.getData(); u_int64_t data_length = data.length(); if(data_length > 0){ u_int32_t frag_size = connection->getMaxFrameSize() - 8;//frame itself uses 8 bytes if(data_length < frag_size){ send(new AMQContentBody(data)); }else{ u_int32_t offset = 0; u_int32_t remaining = data_length - offset; while (remaining > 0) { u_int32_t length = remaining > frag_size ? frag_size : remaining; string frag(data.substr(offset, length)); send(new AMQContentBody(frag)); offset += length; remaining = data_length - offset; } } } } void Channel::commit(){ sendAndReceive(new TxCommitBody(version)); } void Channel::rollback(){ sendAndReceive(new TxRollbackBody(version)); } void Channel::handleMethodInContext( AMQMethodBody::shared_ptr body, const MethodContext&) { //channel.flow, channel.close, basic.deliver, basic.return or a //response to a synchronous request if(responses.isWaiting()) { responses.signalResponse(body); return; } if(body->isA() || body->isA() || body->isA() || body->isA()) { incoming.add(body); return; } else if(body->isA()) { peerClose(shared_polymorphic_downcast(body)); } else if(body->isA()){ // TODO aconway 2007-01-24: not implemented yet. } else if(body->isA()){ connection->close(); } else { connection->close( 504, "Unrecognised method", body->amqpClassId(), body->amqpMethodId()); } } void Channel::handleHeader(AMQHeaderBody::shared_ptr body){ incoming.add(body); } void Channel::handleContent(AMQContentBody::shared_ptr body){ incoming.add(body); } void Channel::handleHeartbeat(AMQHeartbeatBody::shared_ptr /*body*/){ THROW_QPID_ERROR(PROTOCOL_ERROR + 504, "Channel received heartbeat"); } void Channel::start(){ dispatcher = Thread(this); } void Channel::deliver(Consumer& consumer, Message& msg){ //record delivery tag: consumer.lastDeliveryTag = msg.getDeliveryTag(); //allow registered listener to handle the message consumer.listener->received(msg); if(isOpen()){ bool multiple(false); switch(consumer.ackMode){ case LAZY_ACK: multiple = true; if(++(consumer.count) < prefetch) break; //else drop-through case AUTO_ACK: send(new BasicAckBody(version, msg.getDeliveryTag(), multiple)); consumer.lastDeliveryTag = 0; } } //as it stands, transactionality is entirely orthogonal to ack //mode, though the acks will not be processed by the broker under //a transaction until it commits. } void Channel::run() { while(isOpen()) { try { Message msg = incoming.waitDispatch(); if(msg.getMethod()->isA()) { ReturnedMessageHandler* handler=0; { Mutex::ScopedLock l(lock); handler=returnsHandler; } if(handler == 0) { // TODO aconway 2007-02-20: proper logging. cout << "Message returned: " << msg.getData() << endl; } else handler->returned(msg); } else { BasicDeliverBody::shared_ptr deliverBody = boost::shared_polymorphic_downcast( msg.getMethod()); std::string tag = deliverBody->getConsumerTag(); Consumer consumer; { Mutex::ScopedLock l(lock); ConsumerMap::iterator i = consumers.find(tag); if(i == consumers.end()) THROW_QPID_ERROR(PROTOCOL_ERROR+504, "Unknown consumer tag=" + tag); consumer = i->second; } deliver(consumer, msg); } } catch (const ShutdownException&) { /* Orderly shutdown */ } catch (const Exception& e) { // FIXME aconway 2007-02-20: Report exception to user. cout << "client::Channel::run() terminated by: " << e.toString() << "(" << typeid(e).name() << ")" << endl; } } } void Channel::setReturnedMessageHandler(ReturnedMessageHandler* handler){ Mutex::ScopedLock l(lock); returnsHandler = handler; } // Close called by local application. void Channel::close( u_int16_t code, const std::string& text, ClassId classId, MethodId methodId) { if (isOpen()) { try { if (getId() != 0) { sendAndReceive( new ChannelCloseBody( version, code, text, classId, methodId)); } static_cast(connection)->erase(getId()); closeInternal(); } catch (...) { static_cast(connection)->erase(getId()); closeInternal(); throw; } } } // Channel closed by peer. void Channel::peerClose(ChannelCloseBody::shared_ptr) { assert(isOpen()); closeInternal(); // FIXME aconway 2007-01-26: How to throw the proper exception // to the application thread? } void Channel::closeInternal() { if (isOpen()); { cancelAll(); incoming.shutdown(); connection = 0; // A 0 response means we are closed. responses.signalResponse(AMQMethodBody::shared_ptr()); } dispatcher.join(); } void Channel::sendAndReceive(AMQMethodBody* toSend, ClassId c, MethodId m) { responses.expect(); send(toSend); responses.receive(c, m); } void Channel::sendAndReceiveSync( bool sync, AMQMethodBody* body, ClassId c, MethodId m) { if(sync) sendAndReceive(body, c, m); else send(body); }