diff options
Diffstat (limited to 'cpp/src/qpid/cluster/JoiningHandler.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/JoiningHandler.cpp | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/cpp/src/qpid/cluster/JoiningHandler.cpp b/cpp/src/qpid/cluster/JoiningHandler.cpp new file mode 100644 index 0000000000..3358e3404b --- /dev/null +++ b/cpp/src/qpid/cluster/JoiningHandler.cpp @@ -0,0 +1,106 @@ +/* + * + * 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 "JoiningHandler.h" +#include "Cluster.h" +#include "qpid/framing/ClusterDumpRequestBody.h" +#include "qpid/framing/ClusterReadyBody.h" +#include "qpid/log/Statement.h" + +namespace qpid { +namespace cluster { + +using namespace sys; +using namespace framing; + +JoiningHandler::JoiningHandler(Cluster& c) : ClusterHandler(c), state(START) {} + +void JoiningHandler::configChange( + cpg_address *current, int nCurrent, + cpg_address */*left*/, int nLeft, + cpg_address */*joined*/, int /*nJoined*/) +{ + if (nLeft == 0 && nCurrent == 1 && *current == cluster.self) { // First in cluster. + QPID_LOG(notice, cluster.self << " first in cluster."); + cluster.map.ready(cluster.self, cluster.url); + cluster.ready(); + } +} + +void JoiningHandler::deliver(Event& e) { + // Discard connection events unless we are stalled and getting a dump. + if (state == STALLED) { + e.setConnection(cluster.getConnection(e.getConnectionId())); + cluster.connectionEventQueue.push(e); + } +} + +void JoiningHandler::update(const MemberId&, const framing::FieldTable& members, uint64_t dumper) { + cluster.map.update(members, dumper); + QPID_LOG(debug, "Cluster update: " << cluster.map); + checkDumpRequest(); +} + +void JoiningHandler::checkDumpRequest() { + if (state == START && !cluster.map.dumper) { + cluster.broker.getPort(); // ensure the broker is listening. + state = DUMP_REQUESTED; + cluster.mcastControl(ClusterDumpRequestBody(framing::ProtocolVersion(), cluster.url.str()), 0); + } +} + +void JoiningHandler::dumpRequest(const MemberId& dumpee, const std::string& ) { + if (cluster.map.dumper) { // Already a dump in progress. + if (dumpee == cluster.self && state == DUMP_REQUESTED) + state = START; // Need to make another request. + } + else { // Start a new dump + cluster.map.dumper = cluster.map.first(); + if (dumpee == cluster.self) { // My turn + + state = DUMP_COMPLETE; // FIXME aconway 2008-09-18: bypass dump + + QPID_LOG(info, cluster.self << " receiving state dump from " << cluster.map.dumper); + switch (state) { + case START: + case STALLED: + assert(0); break; + + case DUMP_REQUESTED: + state = STALLED; + cluster.stall(); + break; + + // FIXME aconway 2008-09-17: no transition to DUMP_COMPLETE state. + case DUMP_COMPLETE: + cluster.ready(); + break; + } + } + } +} + +void JoiningHandler::ready(const MemberId& id, const std::string& url) { + cluster.map.ready(id, Url(url)); + checkDumpRequest(); +} + + +}} // namespace qpid::cluster |