summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/ha/UnreadyQueueSet.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2012-06-12 21:20:07 +0000
committerAlan Conway <aconway@apache.org>2012-06-12 21:20:07 +0000
commited0d321d0ad56b9ea3d370d8b6b34fce2c8ef892 (patch)
tree1e225776914dc5b14e0e38c8e2236d5ce144ac3b /cpp/src/qpid/ha/UnreadyQueueSet.cpp
parentc9fc98ae80a5d8c4f58541f9738aa975723ff3d6 (diff)
downloadqpid-python-ed0d321d0ad56b9ea3d370d8b6b34fce2c8ef892.tar.gz
QPID-3603: Introduced RemoteBackup to track backup status.
The primary creates RemoteBackup object for each connected or expected backup. On first being promoted, the new primary has a RemoteBackup for each of the known backups at the time of the failure. The RemoteBackup manages queue guards for its backup and tracks it's readiness. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1349540 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/ha/UnreadyQueueSet.cpp')
-rw-r--r--cpp/src/qpid/ha/UnreadyQueueSet.cpp90
1 files changed, 0 insertions, 90 deletions
diff --git a/cpp/src/qpid/ha/UnreadyQueueSet.cpp b/cpp/src/qpid/ha/UnreadyQueueSet.cpp
deleted file mode 100644
index 279eb2c0e1..0000000000
--- a/cpp/src/qpid/ha/UnreadyQueueSet.cpp
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- *
- * 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 "UnreadyQueueSet.h"
-#include "qpid/broker/Broker.h"
-#include "qpid/broker/Queue.h"
-#include "qpid/broker/QueueRegistry.h"
-#include <boost/bind.hpp>
-#include <iostream>
-#include <algorithm>
-
-namespace qpid {
-namespace ha {
-
-using sys::Mutex;
-
-UnreadyQueueSet::UnreadyQueueSet(broker::Broker& broker, ReplicationTest rt, const IdSet& ids) :
- logPrefix("HA unsafe queues: "), replicationTest(rt), expected(ids),
- initializing(true), initialQueues(0)
-{
- if (!expected.empty()) {
- QPID_LOG(debug, logPrefix << "Recovering, waiting for backups: " << expected);
- broker.getQueues().eachQueue(boost::bind(&UnreadyQueueSet::queueCreate, this, _1));
- initialQueues = queues.size();
- }
- initializing = false;
-}
-
-void UnreadyQueueSet::setExpectedBackups(const IdSet& ids) {
- Mutex::ScopedLock l(lock);
- expected = ids;
-}
-
-bool UnreadyQueueSet::ready(const boost::shared_ptr<broker::Queue>& q, const types::Uuid& id) {
- Mutex::ScopedLock l(lock);
- QPID_LOG(debug, logPrefix << "Replicating subscription ready: " << id << " on "
- << q->getName());
- QueueMap::iterator i = queues.find(q);
- if (i != queues.end()) {
- // if (i->second.guard->ready(id)) {
- // QPID_LOG(debug, logPrefix << "Releasing guard on " << q->getName());
- // remove(i, l);
- if (i->second.initial) --initialQueues;
- // }
- }
- return initialQueues == 0;
-}
-
-void UnreadyQueueSet::queueCreate(const boost::shared_ptr<broker::Queue>& q) {
- Mutex::ScopedLock l(lock);
- if (replicationTest.isReplicated(*q) && !expected.empty()) {
- QPID_LOG(debug, logPrefix << "Guarding " << q->getName() << " for " << expected);
- // GuardPtr guard(new QueueGuard(*q, expected));
- // FIXME aconway 2012-06-05: q->addObserver(guard);
- queues[q] = Entry(initializing);//, guard);
- }
-}
-
-void UnreadyQueueSet::queueDestroy(const boost::shared_ptr<broker::Queue>& q) {
- Mutex::ScopedLock l(lock);
- remove(queues.find(q), l);
-}
-
-void UnreadyQueueSet::remove(QueueMap::iterator i, sys::Mutex::ScopedLock&) {
- if (i != queues.end()) {
- QPID_LOG(debug, logPrefix << "Queue is safe: " << i->first->getName());
- // FIXME aconway 2012-06-05: i->first->removeObserver(i->second.guard);
- //i->second.guard->release();
- queues.erase(i);
- }
-}
-
-}} // namespace qpid::ha