/* * 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 "SessionHandler.h" #include "Session.h" #include "Connection.h" #include "qpid/framing/reply_exceptions.h" #include "qpid/framing/constants.h" #include "qpid/log/Statement.h" namespace qpid { namespace broker { using namespace framing; SessionHandler::SessionHandler(Connection& c, ChannelId ch) : InOutHandler(0, &c.getOutput()), connection(c), channel(ch), proxy(out), ignoring(false), channelHandler(*this) {} SessionHandler::~SessionHandler() {} namespace { ClassId classId(AMQMethodBody* m) { return m ? m->amqpMethodId() : 0; } MethodId methodId(AMQMethodBody* m) { return m ? m->amqpClassId() : 0; } } // namespace void SessionHandler::handleIn(AMQFrame& f) { // Note on channel states: a channel is open if session != 0. A // channel that is closed (session == 0) can be in the "ignoring" // state. This is a temporary state after we have sent a channel // exception, where extra frames might arrive that should be // ignored. // AMQMethodBody* m=f.getMethod(); try { if (m && m->invoke(&channelHandler)) return; else if (session) session->in(f); else if (!ignoring) throw ChannelErrorException( QPID_MSG("Channel " << channel << " is not open")); } catch(const ChannelException& e){ getProxy().getChannel().close( e.code, e.toString(), classId(m), methodId(m)); session.reset(); ignoring=true; // Ignore trailing frames sent by client. }catch(const ConnectionException& e){ connection.close(e.code, e.what(), classId(m), methodId(m)); }catch(const std::exception& e){ connection.close( framing::INTERNAL_ERROR, e.what(), classId(m), methodId(m)); } } void SessionHandler::handleOut(AMQFrame& f) { f.setChannel(getChannel()); out.next->handle(f); } void SessionHandler::assertOpen(const char* method) { if (!session) throw ChannelErrorException( QPID_MSG(""<flow(active); parent.getProxy().getChannel().flowOk(active); } void SessionHandler::ChannelMethods::flowOk(bool /*active*/){} void SessionHandler::ChannelMethods::close(uint16_t replyCode, const string& replyText, uint16_t classId, uint16_t methodId) { // FIXME aconway 2007-08-31: Extend constants.h to map codes & ids // to text names. QPID_LOG(warning, "Received session.close("<