diff options
| author | Alan Conway <aconway@apache.org> | 2008-08-29 18:18:45 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-08-29 18:18:45 +0000 |
| commit | 9749e6774159c43750f04907574d371235e36c0a (patch) | |
| tree | a04aa3d5171ad59a82e82cec4a18e691dce56378 /cpp/src/qpid/cluster/OutputInterceptor.cpp | |
| parent | 7a7273f69fdd328de06db16347914a20ae758b2b (diff) | |
| download | qpid-python-9749e6774159c43750f04907574d371235e36c0a.tar.gz | |
Refactored cluster to intercept at ConnectionCode, using sys:: interfaces rather than boost functions.
Use framing::Operations and Invoker to dispatch cluster methods.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@690358 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/OutputInterceptor.cpp')
| -rw-r--r-- | cpp/src/qpid/cluster/OutputInterceptor.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/cpp/src/qpid/cluster/OutputInterceptor.cpp b/cpp/src/qpid/cluster/OutputInterceptor.cpp index 84d3a6ad69..6c77d2747a 100644 --- a/cpp/src/qpid/cluster/OutputInterceptor.cpp +++ b/cpp/src/qpid/cluster/OutputInterceptor.cpp @@ -19,9 +19,10 @@ * */ #include "OutputInterceptor.h" -#include "ConnectionInterceptor.h" -#include "qpid/framing/ClusterConnectionDoOutputBody.h" +#include "Connection.h" +#include "qpid/framing/ClusterConnectionDeliverDoOutputBody.h" #include "qpid/framing/AMQFrame.h" +#include "qpid/log/Statement.h" #include <boost/current_function.hpp> @@ -30,7 +31,7 @@ namespace cluster { using namespace framing; -OutputInterceptor::OutputInterceptor(ConnectionInterceptor& p, sys::ConnectionOutputHandler& h) +OutputInterceptor::OutputInterceptor(cluster::Connection& p, sys::ConnectionOutputHandler& h) : parent(p), next(h), sent(), moreOutput(), doingOutput() {} @@ -57,8 +58,6 @@ bool OutputInterceptor::doOutput() { // which stocks up the write buffers with data. // void OutputInterceptor::deliverDoOutput(size_t requested) { - if (parent.getClosed()) return; - Locker l(lock); size_t buf = next.getBuffered(); if (parent.isLocal()) @@ -68,7 +67,7 @@ void OutputInterceptor::deliverDoOutput(size_t requested) { sent = 0; do { sys::Mutex::ScopedUnlock u(lock); - moreOutput = doOutputNext(); // Calls send() + moreOutput = parent.getBrokerConnection().doOutput(); } while (sent < requested && moreOutput); sent += buf; // Include buffered data in the sent total. @@ -88,8 +87,8 @@ void OutputInterceptor::startDoOutput() { // Send a doOutput request if one is not already in flight. void OutputInterceptor::sendDoOutput() { // Call with lock held. - if (parent.isShadow() || parent.getClosed()) - return; + // FIXME aconway 2008-08-28: used to have || parent.getClosed()) + if (!parent.isLocal()) return; doingOutput = true; size_t request = writeEstimate.sending(getBuffered()); @@ -98,8 +97,8 @@ void OutputInterceptor::sendDoOutput() { // Send it anyway to keep the doOutput chain going until we are sure there's no more output // (in deliverDoOutput) // - parent.getCluster().send(AMQFrame(in_place<ClusterConnectionDoOutputBody>( - framing::ProtocolVersion(), request)), &parent); + parent.getCluster().send(AMQFrame(in_place<ClusterConnectionDeliverDoOutputBody>( + framing::ProtocolVersion(), request)), parent.getId()); QPID_LOG(trace, &parent << "Send doOutput request for " << request); } |
