summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/components/queue/qpid.hpp
blob: ef53c529e8ad81ed06e5cf67d7fdf29d891837ea (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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
 * 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.
 */

/* $Rev$ $Date$ */

#ifndef tuscany_qpid_hpp
#define tuscany_qpid_hpp

/**
 * AMQP queue access functions.
 */

// Ignore conversion issues and redundant declarations in Qpid headers
#ifdef WANT_MAINTAINER_WARNINGS
#pragma GCC diagnostic ignored "-Wconversion"
#pragma GCC diagnostic ignored "-Wredundant-decls"
#endif

#include <qpid/client/Connection.h>
#include <qpid/client/Session.h>
#include <qpid/client/MessageListener.h>
#include <qpid/client/SubscriptionManager.h>

#include "string.hpp"
#include "list.hpp"
#include "value.hpp"
#include "monad.hpp"
#include "../../modules/scheme/eval.hpp"

namespace tuscany {
namespace queue {

/**
 * Represents a Qpid connection.
 */
class QpidConnection {
public:
    QpidConnection() : owner(true) {
        debug("queue::qpidonnection");
        c.open("localhost", 5672);
    }

    QpidConnection(const bool owner) : owner(owner) {
        debug("queue::qpidonnection");
        c.open("localhost", 5672);
    }

    QpidConnection(const QpidConnection& qc) : owner(false), c(qc.c) {
        debug("queue::qpidonnection::copy");
    }

    const QpidConnection& operator=(const QpidConnection& qc) {
        debug("queue::qpidonnection::operator=");
        if(this == &c)
            return *this;
        owner = false;
        c = qc.c;
        return *this;
    }

    ~QpidConnection() {
        debug("queue::~qpidonnection");
        if (!owner)
            return;
        c.close();
    }

private:
    friend const failable<bool> close(QpidConnection& qc);
    friend class QpidSession;

    const bool owner;
    qpid::client::Connection c;

};

/**
 * Close a Qpid connection.
 */
const failable<bool> close(QpidConnection& qc) {
    qc.c.close();
    return true;
}

/**
 * Represents a Qpid session.
 */
class QpidSession {
public:
    QpidSession(QpidConnection& qc) : owner(true), s(qc.c.newSession()) {
        debug("queue::qpidsession");
    }

    QpidSession(QpidConnection& qc, const bool owner) : owner(owner), s(qc.c.newSession()) {
        debug("queue::qpidsession");
    }

    QpidSession(const QpidSession& qs) : owner(false), s(qs.s) {
        debug("queue::qpidsession::copy");
    }

    ~QpidSession() {
        debug("queue::~qpidsession");
        if (!owner)
            return;
        s.close();
    }

private:
    friend const failable<bool> close(QpidSession& qs);
    friend const failable<bool> declareQueue(const value& key, const string& name, QpidSession& qs);
    friend const failable<bool> post(const value& key, const value& val, QpidSession& qs);
    friend class QpidSubscription;

    const bool owner;
    qpid::client::Session s;
};

/**
 * Close a Qpid session.
 */
const failable<bool> close(QpidSession& qs) {
    try {
        qs.s.close();
    } catch (const qpid::Exception& e) {
        return mkfailure<bool>(string("Qpid failure: ") + e.what());
    }
    return true;
}

/**
 * Declare a key / AMQP queue pair.
 */
const failable<bool> declareQueue(const value& key, const string& name, QpidSession& qs) {
    const string ks(scheme::writeValue(key));
    try {
        qs.s.queueDeclare(qpid::client::arg::queue=c_str(name));
        qs.s.exchangeBind(qpid::client::arg::exchange="amq.direct", qpid::client::arg::queue=c_str(name), qpid::client::arg::bindingKey=c_str(ks));
    } catch (const qpid::Exception& e) {
        return mkfailure<bool>(string("Qpid failure: ") + e.what());
    }
    return true;
}

/**
 * Post a key / value pair message to an AMQP broker.
 */
const failable<bool> post(const value& key, const value& val, QpidSession& qs) {

    // Send in a message with the given key.
    const string ks(scheme::writeValue(key));
    const string vs(scheme::writeValue(val));
    try {
        qpid::client::Message message;
        message.getDeliveryProperties().setRoutingKey(c_str(ks));
        message.setData(c_str(vs));
        qs.s.messageTransfer(qpid::client::arg::content=message,  qpid::client::arg::destination="amq.direct");
    } catch (const qpid::Exception& e) {
        return mkfailure<bool>(string("Qpid failure: ") + e.what());
    }
    return true;
}

/**
 * Represents a Qpid subscription.
 */
class QpidSubscription {
public:
    QpidSubscription(QpidSession& qs) : owner(true), subs(qs.s) {
    }

    QpidSubscription(QpidSession& qs, const bool owner) : owner(owner), subs(qs.s) {
    }

    QpidSubscription(const QpidSubscription& qsub) : owner(false), subs(qsub.subs) {
    }

    ~QpidSubscription() {
        if (!owner)
            return;
        try {
            subs.stop();
        } catch (const qpid::Exception& e) {
            mkfailure<bool>(string("Qpid failure: ") + e.what());
        }
    }

private:
    friend const failable<bool> listen(const string& name, const lambda<bool(const value&, const value&)>& l, QpidSubscription& qsub);
    friend const failable<bool> stop(QpidSubscription& qsub);

    const bool owner;
    qpid::client::SubscriptionManager subs;
};

/**
 * Register a listener function with an AMQP queue.
 */
class Listener : public qpid::client::MessageListener {
public:
    Listener(const lambda<bool(const value&, const value&)> l, qpid::client::SubscriptionManager& subs) : l(l), subs(subs) {
    }

    virtual void received(qpid::client::Message& msg) {

        // Call the listener function
        const value k(scheme::readValue(msg.getDeliveryProperties().getRoutingKey().c_str()));
        const value v(scheme::readValue(msg.getData().c_str()));
        const bool r = l(k, v);
        if (!r) {
            try {
                subs.cancel(msg.getDestination());
            } catch (const qpid::Exception& e) {
                mkfailure<bool>(string("Qpid failure: ") + e.what());
            }
        }
    }

private:
    const lambda<bool(const value&, const value&)> l;
    qpid::client::SubscriptionManager& subs;
};


const failable<bool> listen(const string& name, const lambda<bool(const value&, const value&)>& l, QpidSubscription& qsub) {
    debug("queue::listen");
    Listener listener(l, qsub.subs);
    try {
        qsub.subs.subscribe(listener, c_str(name));
        qsub.subs.run();
    } catch (const qpid::Exception& e) {
        return mkfailure<bool>(string("Qpid failure: ") + e.what());
    }
    debug("queue::listen::stopped");
    return true;
}

/**
 * Stop an AMQP subscription.
 */
const failable<bool> stop(QpidSubscription& qsub) {
    debug("queue::stop");
    try {
        qsub.subs.stop();
    } catch (const qpid::Exception& e) {
        return mkfailure<bool>(string("Qpid failure: ") + e.what());
    }
    debug("queue::stopped");
    return true;
}

}
}

// Re-enable conversion and redundant declarations warnings
#ifdef WANT_MAINTAINER_WARNINGS
#pragma GCC diagnostic warning "-Wconversion"
#pragma GCC diagnostic warning "-Wredundant-decls"
#endif

#endif /* tuscany_qpid_hpp */