summaryrefslogtreecommitdiff
path: root/cpp/include/qpid/console/Broker.h
blob: af163b8bfd4e4c2c1785b105139887d4d499d9bb (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
 *
 * 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.
 *
 */
#ifndef _QPID_CONSOLE_BROKER_H_
#define _QPID_CONSOLE_BROKER_H_

#include "qpid/console/ConsoleImportExport.h"
#include "qpid/client/Connection.h"
#include "qpid/client/ConnectionSettings.h"
#include "qpid/client/SubscriptionManager.h"
#include "qpid/client/Session.h"
#include "qpid/client/AsyncSession.h"
#include "qpid/client/Message.h"
#include "qpid/client/MessageListener.h"
#include "qpid/sys/Thread.h"
#include "qpid/sys/Runnable.h"
#include "qpid/sys/Mutex.h"
#include "qpid/sys/Condition.h"
#include "qpid/Url.h"
#include "qpid/framing/Buffer.h"
#include "qpid/framing/Uuid.h"
#include <string>
#include <iostream>

namespace qpid {
namespace console {
    class SessionManager;
    class Agent;
    class Object;

    /**
     *
     * \ingroup qpidconsoleapi
     */
    class Broker : public client::MessageListener {
    public:
        QPID_CONSOLE_EXTERN Broker(SessionManager& sm,
                                   client::ConnectionSettings& settings);
        QPID_CONSOLE_EXTERN ~Broker();

        bool isConnected() const { return connected; }
        const std::string& getError() const { return error; }
        const std::string& getSessionId() const { return amqpSessionId; }
        const framing::Uuid& getBrokerId() const { return brokerId; }
        uint32_t getBrokerBank() const { return 1; }
        void addBinding(const std::string& key) {
            connThreadBody.bindExchange("qpid.management", key);
        }
        QPID_CONSOLE_EXTERN std::string getUrl() const;

    private:
        friend class SessionManager;
        friend class Object;
        typedef std::map<uint64_t,Agent*> AgentMap;
        static const int SYNC_TIME = 60;

        SessionManager& sessionManager;
        AgentMap agents;
        bool connected;
        std::string error;
        std::string amqpSessionId;
        client::ConnectionSettings connectionSettings;
        sys::Mutex lock;
        sys::Condition cond;
        framing::Uuid brokerId;
        uint32_t reqsOutstanding;
        bool syncInFlight;
        bool topicBound;
        Object* methodObject;

        friend class ConnectionThread;
        class ConnectionThread : public sys::Runnable {
            bool operational;
            bool shuttingDown;
            Broker&              broker;
            framing::Uuid        sessionId;
            client::Connection   connection;
            client::Session      session;
            client::SubscriptionManager* subscriptions;
            std::stringstream queueName;
            sys::Mutex        connLock;
            void run();
        public:
            ConnectionThread(Broker& _broker) :
                operational(false), shuttingDown(false), broker(_broker), subscriptions(0) {}
            ~ConnectionThread();
            void sendBuffer(qpid::framing::Buffer& buf,
                            uint32_t               length,
                            const std::string&     exchange = "qpid.management",
                            const std::string&     routingKey = "broker");
            void bindExchange(const std::string& exchange, const std::string& key);
            void shutdown();
        };

        ConnectionThread connThreadBody;
        sys::Thread      connThread;

        void encodeHeader(framing::Buffer& buf, uint8_t opcode, uint32_t seq = 0) const;
        bool checkHeader(framing::Buffer& buf, uint8_t *opcode, uint32_t *seq) const;
        void received(client::Message& msg);
        void resetAgents();
        void updateAgent(const Object& object);
        void waitForStable();
        void incOutstanding();
        void decOutstanding();
        void setBrokerId(const framing::Uuid& id) { brokerId = id; }
        void appendAgents(std::vector<Agent*>& agents) const;

        friend QPID_CONSOLE_EXTERN std::ostream& operator<<(std::ostream& o, const Broker& k);
    };

    QPID_CONSOLE_EXTERN std::ostream& operator<<(std::ostream& o, const Broker& k);
}
}

#endif