summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/broker/Cluster.h
blob: 193332692b030d871e880fb1a7f940d92c050f96 (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
#ifndef QPID_BROKER_CLUSTER_H
#define QPID_BROKER_CLUSTER_H

/*
 *
 * 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 <boost/intrusive_ptr.hpp>

namespace qpid {

namespace framing {
class FieldTable;
}

namespace broker {

class Message;
struct QueuedMessage;
class Queue;
class Exchange;

/**
 * NOTE: this is part of an experimental cluster implementation that is not
 * yet fully functional. The original cluster implementation remains in place.
 * See ../cluster/new-cluster-design.txt
 *
 * Interface for cluster implementations. Functions on this interface are
 * called at relevant points in the Broker's processing.
 */
class Cluster
{
  public:
    virtual ~Cluster() {}

    // Messages

    /** In Exchange::route, before the message is enqueued. */
    virtual void routing(const boost::intrusive_ptr<Message>&) = 0;

    /** A message is delivered to a queue.
     * Called before actually pushing the message to the queue.
     *@return If true the message should be pushed to the queue now.
     * otherwise the cluster code will push the message when it is replicated.
     */
    virtual bool enqueue(Queue& queue, const boost::intrusive_ptr<Message>&) = 0;

    /** In Exchange::route, after all enqueues for the message. */
    virtual void routed(const boost::intrusive_ptr<Message>&) = 0;

    /** A message is acquired by a local consumer, it is unavailable to replicas. */
    virtual void acquire(const QueuedMessage&) = 0;

    /** A locally-acquired message is released by the consumer and re-queued. */
    virtual void release(const QueuedMessage&) = 0;

    /** A message is removed from the queue. */
    virtual void dequeue(const QueuedMessage&) = 0;

    // Consumers

    /** A new consumer subscribes to a queue. */
    virtual void consume(Queue&, size_t consumerCount) = 0;
    /** A consumer cancels its subscription to a queue */
    virtual void cancel(Queue&, size_t consumerCount) = 0;
    /** A queue becomes empty */
    virtual void empty(Queue&) = 0;
    /** A queue has been stopped */
    virtual void stopped(Queue&) = 0;

    // Wiring

    /** A queue is created */
    virtual void create(Queue&) = 0;
    /** A queue is destroyed */
    virtual void destroy(Queue&) = 0;
    /** An exchange is created */
    virtual void create(Exchange&) = 0;
    /** An exchange is destroyed */
    virtual void destroy(Exchange&) = 0;
    /** A binding is created */
    virtual void bind(Queue&, Exchange&,
                      const std::string& key, const framing::FieldTable& args) = 0;
    /** A binding is removed */
    virtual void unbind(Queue&, Exchange&,
                        const std::string& key, const framing::FieldTable& args) = 0;
};

}} // namespace qpid::broker

#endif  /*!QPID_BROKER_CLUSTER_H*/