/* * * Copyright (c) 2006 The Apache Software Foundation * * Licensed 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 "Cluster.h" #include "qpid/broker/SessionState.h" #include "qpid/framing/AMQFrame.h" #include "qpid/framing/ClusterNotifyBody.h" #include "qpid/log/Statement.h" #include #include #include #include #include namespace qpid { namespace cluster { using namespace qpid::framing; using namespace qpid::sys; using namespace std; using broker::SessionState; namespace { // Beginning of inbound chain: send to cluster. struct ClusterSendHandler : public FrameHandler { SessionState& session; Cluster& cluster; bool busy; Monitor lock; ClusterSendHandler(SessionState& s, Cluster& c) : session(s), cluster(c), busy(false) {} void handle(AMQFrame& f) { Mutex::ScopedLock l(lock); assert(!busy); // FIXME aconway 2008-01-29: refcount Sessions. // session.addRef(); // Keep the session till the message is self delivered. cluster.send(f, next); // Indirectly send to next via cluster. // FIXME aconway 2008-01-29: need to get this blocking out of the loop. // But cluster needs to agree on order of side-effects on the shared model. // OK for wiring to block, for messages use queue tokens? // Both in & out transfers must be orderd per queue. // May need out-of-order completion. busy=true; while (busy) lock.wait(); } }; // Next in inbound chain, self delivered from cluster. struct ClusterDeliverHandler : public FrameHandler { Cluster& cluster; ClusterSendHandler& sender; ClusterDeliverHandler(ClusterSendHandler& prev, Cluster& c) : cluster(c), sender(prev) {} void handle(AMQFrame& f) { next->handle(f); Mutex::ScopedLock l(senderLock); senderBusy=false; senderLock.notify(); } }; // FIXME aconway 2008-01-29: IList void insert(FrameHandler::Chain& c, FrameHandler* h) { h->next = c.next; c.next = h; } struct SessionObserver : public broker::SessionManager::Observer { Cluster& cluster; SessionObserver(Cluster& c) : cluster(c) {} void opened(SessionState& s) { // FIXME aconway 2008-01-29: IList for memory management. ClusterSendHandler* sender=new ClusterSendHandler(s, cluster); ClusterDeliverHandler* deliverer=new ClusterDeliverHandler(*sender, cluster); insert(s.in, deliverer); insert(s.in, sender); } }; } ostream& operator <<(ostream& out, const Cluster& cluster) { return out << "cluster[" << cluster.name.str() << " " << cluster.self << "]"; } ostream& operator<<(ostream& out, const Cluster::MemberMap::value_type& m) { return out << m.first << "=" << m.second.url; } ostream& operator <<(ostream& out, const Cluster::MemberMap& members) { ostream_iterator o(out, " "); copy(members.begin(), members.end(), o); return out; } Cluster::Cluster(const std::string& name_, const Url& url_, broker::Broker&) : cpg(*this), name(name_), url(url_), observer(new SessionObserver(*this)) { QPID_LOG(trace, *this << " Joining cluster: " << name_); cpg.join(name); notify(); dispatcher=Thread(*this); // Wait till we show up in the cluster map. { Mutex::ScopedLock l(lock); while (empty()) lock.wait(); } } Cluster::~Cluster() { QPID_LOG(trace, *this << " Leaving cluster."); try { cpg.leave(name); dispatcher.join(); } catch (const std::exception& e) { QPID_LOG(error, "Exception leaving cluster " << *this << ": " << e.what()); } } void Cluster::send(AMQFrame& frame, FrameHandler* next) { QPID_LOG(trace, *this << " SEND: " << frame); char data[65536]; // FIXME aconway 2008-01-29: Better buffer handling. Buffer buf(data); frame.encode(buf); buf.putRawData((uint8_t*)&next, sizeof(next)); // Tag the frame with the next pointer. iovec iov = { data, frame.size()+sizeof(next) }; cpg.mcast(name, &iov, 1); } void Cluster::notify() { AMQFrame frame(in_place(ProtocolVersion(), url.str())); send(frame, 0); } size_t Cluster::size() const { Mutex::ScopedLock l(lock); return members.size(); } Cluster::MemberList Cluster::getMembers() const { Mutex::ScopedLock l(lock); MemberList result(members.size()); std::transform(members.begin(), members.end(), result.begin(), boost::bind(&MemberMap::value_type::second, _1)); return result; } void Cluster::deliver( cpg_handle_t /*handle*/, cpg_name* /*group*/, uint32_t nodeid, uint32_t pid, void* msg, int msg_len) { try { Id from(nodeid, pid); Buffer buf(static_cast(msg), msg_len); AMQFrame frame; frame.decode(buf); QPID_LOG(trace, *this << " RECV: " << frame << " from: " << from); if (frame.getChannel() == 0) handleClusterFrame(from, frame); else if (from == self) { FrameHandler* next; buf.getRawData((uint8_t*)&next, sizeof(next)); next->handle(frame); } // FIXME aconway 2008-01-30: apply frames from foreign sessions. } catch (const std::exception& e) { // FIXME aconway 2008-01-30: exception handling. QPID_LOG(error, "Error handling frame from cluster " << e.what()); } } bool Cluster::wait(boost::function predicate, Duration timeout) const { AbsTime deadline(now(), timeout); Mutex::ScopedLock l(lock); while (!predicate(*this) && lock.wait(deadline)) ; return (predicate(*this)); } // Handle cluster control frame from the null session. void Cluster::handleClusterFrame(Id from, AMQFrame& frame) { // TODO aconway 2007-06-20: use visitor pattern here. ClusterNotifyBody* notifyIn= dynamic_cast(frame.getBody()); assert(notifyIn); MemberList list; { Mutex::ScopedLock l(lock); members[from].url=notifyIn->getUrl(); if (!self.id && notifyIn->getUrl() == url.str()) self=from; lock.notifyAll(); QPID_LOG(trace, *this << ": members joined: " << members); } } void Cluster::configChange( cpg_handle_t /*handle*/, cpg_name */*group*/, cpg_address */*current*/, int /*nCurrent*/, cpg_address *left, int nLeft, cpg_address *joined, int nJoined) { bool newMembers=false; MemberList updated; { Mutex::ScopedLock l(lock); if (nLeft) { for (int i = 0; i < nLeft; ++i) members.erase(Id(left[i])); QPID_LOG(trace, *this << ": members left: " << members); lock.notifyAll(); } newMembers = nJoined > 1 || (nJoined==1 && Id(joined[0]) != self); // We don't record members joining here, we record them when // we get their ClusterNotify message. } if (newMembers) // Notify new members of my presence. notify(); } void Cluster::run() { cpg.dispatchBlocking(); } }} // namespace qpid::cluster