summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/ha/HaBroker.cpp
blob: 21d918bed976eed7e07a577be0a0902b6fbe1156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 *
 * 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 "Backup.h"
#include "ConnectionExcluder.h"
#include "HaBroker.h"
#include "Settings.h"
#include "ReplicatingSubscription.h"
#include "qpid/Exception.h"
#include "qpid/broker/Broker.h"
#include "qpid/management/ManagementAgent.h"
#include "qmf/org/apache/qpid/ha/Package.h"
#include "qpid/log/Statement.h"

namespace qpid {
namespace ha {

namespace _qmf = ::qmf::org::apache::qpid::ha;
using namespace management;
using namespace std;

namespace {
Url url(const std::string& s, const std::string& id) {
    try {
        return Url(s);
    } catch (const std::exception& e) {
        throw Exception(Msg() << "Invalid URL for " << id << ": '" << s << "'");
    }
}
} // namespace

HaBroker::HaBroker(broker::Broker& b, const Settings& s)
    : broker(b),
      clientUrl(url(s.clientUrl, "ha-client-url")),
      brokerUrl(url(s.brokerUrl, "ha-broker-url")),
      mgmtObject(0)
{
    ManagementAgent* ma = broker.getManagementAgent();
    if (ma) {
        _qmf::Package  packageInit(ma);
        mgmtObject = new _qmf::HaBroker(ma, this);
        // FIXME aconway 2011-11-11: Placeholder - initialize cluster role.
        mgmtObject->set_status("solo");
        ma->addObject(mgmtObject);
    }
    // FIXME aconway 2011-11-22: temporary hack to identify primary.
    bool primary = (s.brokerUrl == "primary");
    QPID_LOG(notice, "HA: " << (primary ? "Primary" : "Backup")
             << " initialized: client-url=" << clientUrl
             << " broker-url=" << brokerUrl);
    if (!primary) backup.reset(new Backup(broker, s));
    // Register a factory for replicating subscriptions.
    broker.getConsumerFactories().add(
        boost::shared_ptr<ReplicatingSubscription::Factory>(
            new ReplicatingSubscription::Factory()));
    // Register a connection excluder
    broker.getConnectionObservers().add(
        boost::shared_ptr<broker::ConnectionObserver>(
            new ConnectionExcluder(
                s.adminUser, boost::bind(&HaBroker::isPrimary, this))));
}

HaBroker::~HaBroker() {}

Manageable::status_t HaBroker::ManagementMethod (uint32_t methodId, Args& args, string&) {
    switch (methodId) {
      case _qmf::HaBroker::METHOD_SETSTATUS: {
          std::string status = dynamic_cast<_qmf::ArgsHaBrokerSetStatus&>(args).i_status;
          // FIXME aconway 2011-11-11: placeholder, validate & execute status change.
          mgmtObject->set_status(status);
          break;
      }
      default:
        return Manageable::STATUS_UNKNOWN_METHOD;
    }
    return Manageable::STATUS_OK;
}

bool HaBroker::isPrimary() const {
    return !backup.get();       // TODO aconway 2012-01-18: temporary test.
}

}} // namespace qpid::ha