diff options
Diffstat (limited to 'cpp/src/qpid/cluster/Connection.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/Connection.cpp | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/cpp/src/qpid/cluster/Connection.cpp b/cpp/src/qpid/cluster/Connection.cpp new file mode 100644 index 0000000000..b82b4565c3 --- /dev/null +++ b/cpp/src/qpid/cluster/Connection.cpp @@ -0,0 +1,94 @@ +/* + * + * 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 "Connection.h" +#include "qpid/framing/AMQFrame.h" +#include "qpid/framing/Invoker.h" +#include "qpid/framing/AllInvoker.h" +#include "qpid/framing/ClusterConnectionDeliverCloseBody.h" +#include "qpid/log/Statement.h" + +#include <boost/current_function.hpp> + +namespace qpid { +namespace cluster { + +using namespace framing; + +Connection::Connection(Cluster& c, sys::ConnectionOutputHandler& out, + const std::string& wrappedId, ConnectionId myId) + : cluster(c), self(myId), output(*this, out), + connection(&output, cluster.getBroker(), wrappedId) +{} + +Connection::Connection(Cluster& c, sys::ConnectionOutputHandler& out, + const std::string& wrappedId, MemberId myId) + : cluster(c), self(myId, this), output(*this, out), + connection(&output, cluster.getBroker(), wrappedId) +{} + +Connection::~Connection() {} + +// Forward all received frames to the cluster, continue handling on delivery. +void Connection::received(framing::AMQFrame& f) { + cluster.send(f, self); +} + +// Don't doOutput in the +bool Connection::doOutput() { return output.doOutput(); } + +// Handle frames delivered from cluster. +void Connection::deliver(framing::AMQFrame& f) { + // Handle connection controls, deliver other frames to connection. + if (!framing::invoke(*this, *f.getBody()).wasHandled()) + connection.received(f); +} + +void Connection::closed() { + try { + // Called when the local network connection is closed. We still + // need to process any outstanding cluster frames for this + // connection to ensure our sessions are up-to-date. We defer + // closing the Connection object till deliverClosed(), but replace + // its output handler with a null handler since the network output + // handler will be deleted. + // + connection.setOutputHandler(&discardHandler); + cluster.send(AMQFrame(in_place<ClusterConnectionDeliverCloseBody>()), self); + } + catch (const std::exception& e) { + QPID_LOG(error, QPID_MSG("While closing connection: " << e.what())); + } +} + +void Connection::deliverClose () { + connection.closed(); + cluster.erase(self); +} + +// Delivery of doOutput allows us to run the real connection doOutput() +// which stocks up the write buffers with data. +// +void Connection::deliverDoOutput(size_t requested) { + output.deliverDoOutput(requested); +} + +}} // namespace qpid::cluster + |