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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <IceStorm/TransientTopicI.h>
#include <IceStorm/Instance.h>
#include <IceStorm/Subscriber.h>
#include <IceStorm/TraceLevels.h>
#include <IceStorm/Util.h>
#include <Ice/Ice.h>
#include <list>
#include <algorithm>
using namespace IceStorm;
using namespace std;
namespace
{
//
// The servant has a 1-1 association with a topic. It is used to
// receive events from Publishers.
//
class TransientPublisherI : public Ice::BlobjectArray
{
public:
TransientPublisherI(shared_ptr<TransientTopicImpl> impl) :
_impl(move(impl))
{
}
bool
ice_invoke(pair<const Ice::Byte*, const Ice::Byte*> inParams, Ice::ByteSeq&, const Ice::Current& current) override
{
// Use cached reads.
EventData event = { current.operation, current.mode, Ice::ByteSeq(), current.ctx };
Ice::ByteSeq data(inParams.first, inParams.second);
event.data.swap(data);
EventDataSeq v;
v.push_back(move(event));
_impl->publish(false, v);
return true;
}
private:
const shared_ptr<TransientTopicImpl> _impl;
};
//
// The servant has a 1-1 association with a topic. It is used to
// receive events from linked Topics.
//
class TransientTopicLinkI : public TopicLink
{
public:
TransientTopicLinkI(shared_ptr<TransientTopicImpl> impl) :
_impl(move(impl))
{
}
void
forward(EventDataSeq v, const Ice::Current&) override
{
_impl->publish(true, move(v));
}
private:
const shared_ptr<TransientTopicImpl> _impl;
};
}
shared_ptr<TransientTopicImpl>
TransientTopicImpl::create(const shared_ptr<Instance>& instance, const std::string& name, const Ice::Identity& id)
{
shared_ptr<TransientTopicImpl> topicImpl(new TransientTopicImpl(instance, name, id));
//
// Create a servant per topic to receive event data. If the
// category is empty then we are in backwards compatibility
// mode. In this case the servant's identity is
// category=<topicname>, name=publish, otherwise the name is
// <instancename>/<topicname>.publish. The same applies to the
// link proxy.
//
// Activate the object and save a reference to give to publishers.
//
Ice::Identity pubid;
Ice::Identity linkid;
if(id.category.empty())
{
pubid.category = name;
pubid.name = "publish";
linkid.category = name;
linkid.name = "link";
}
else
{
pubid.category = id.category;
pubid.name = name + ".publish";
linkid.category = id.category;
linkid.name = name + ".link";
}
auto publisher = make_shared<TransientPublisherI>(topicImpl);
topicImpl->_publisherPrx = instance->publishAdapter()->add(publisher, pubid);
auto topicLink = make_shared<TransientTopicLinkI>(topicImpl);
topicImpl->_linkPrx = Ice::uncheckedCast<TopicLinkPrx>(instance->publishAdapter()->add(topicLink, linkid));
return topicImpl;
}
TransientTopicImpl::TransientTopicImpl(shared_ptr<Instance> instance,
const std::string& name,
const Ice::Identity& id) :
_instance(move(instance)),
_name(name),
_id(id),
_destroyed(false)
{
}
string
TransientTopicImpl::getName(const Ice::Current&) const
{
// Immutable
return _name;
}
shared_ptr<Ice::ObjectPrx>
TransientTopicImpl::getPublisher(const Ice::Current&) const
{
// Immutable
return _publisherPrx;
}
shared_ptr<Ice::ObjectPrx>
TransientTopicImpl::getNonReplicatedPublisher(const Ice::Current&) const
{
// Immutable
return _publisherPrx;
}
shared_ptr<Ice::ObjectPrx>
TransientTopicImpl::subscribeAndGetPublisher(QoS qos, shared_ptr<Ice::ObjectPrx> obj, const Ice::Current&)
{
if(!obj)
{
auto traceLevels = _instance->traceLevels();
if(traceLevels->topic > 0)
{
Ice::Trace out(traceLevels->logger, traceLevels->topicCat);
out << _name << ": subscribe: null proxy";
}
throw InvalidSubscriber("subscriber is a null proxy");
}
Ice::Identity id = obj->ice_getIdentity();
auto traceLevels = _instance->traceLevels();
if(traceLevels->topic > 0)
{
Ice::Trace out(traceLevels->logger, traceLevels->topicCat);
out << _name << ": subscribeAndGetPublisher: " << _instance->communicator()->identityToString(id);
if(traceLevels->topic > 1)
{
out << " endpoints: " << IceStormInternal::describeEndpoints(obj)
<< " QoS: ";
for(QoS::const_iterator p = qos.begin(); p != qos.end() ; ++p)
{
if(p != qos.begin())
{
out << ',';
}
}
}
}
lock_guard<mutex> lg(_mutex);
SubscriberRecord record;
record.id = id;
record.obj = obj;
record.theQoS = qos;
record.topicName = _name;
record.link = false;
record.cost = 0;
if(find(_subscribers.begin(), _subscribers.end(), record.id) != _subscribers.end())
{
throw AlreadySubscribed();
}
auto subscriber = Subscriber::create(_instance, record);
_subscribers.push_back(subscriber);
return subscriber->proxy();
}
void
TransientTopicImpl::unsubscribe(shared_ptr<Ice::ObjectPrx> subscriber, const Ice::Current&)
{
auto traceLevels = _instance->traceLevels();
if(!subscriber)
{
if(traceLevels->topic > 0)
{
Ice::Trace out(traceLevels->logger, traceLevels->topicCat);
out << _name << ": unsubscribe: null proxy";
}
throw InvalidSubscriber("subscriber is a null proxy");
}
Ice::Identity id = subscriber->ice_getIdentity();
if(traceLevels->topic > 0)
{
Ice::Trace out(traceLevels->logger, traceLevels->topicCat);
out << _name << ": unsubscribe: " << _instance->communicator()->identityToString(id);
if(traceLevels->topic > 1)
{
out << " endpoints: " << IceStormInternal::describeEndpoints(subscriber);
}
}
lock_guard<mutex> lg(_mutex);
// First remove the subscriber from the subscribers list. Note
// that its possible that the subscriber isn't in the list, but is
// in the database if the subscriber was locally reaped.
auto p = find(_subscribers.begin(), _subscribers.end(), id);
if(p != _subscribers.end())
{
(*p)->destroy();
_subscribers.erase(p);
}
}
shared_ptr<TopicLinkPrx>
TransientTopicImpl::getLinkProxy(const Ice::Current&)
{
// immutable
return _linkPrx;
}
void
TransientTopicImpl::link(shared_ptr<TopicPrx> topic, int cost, const Ice::Current&)
{
auto internal = Ice::uncheckedCast<TopicInternalPrx>(topic);
auto link = internal->getLinkProxy();
auto traceLevels = _instance->traceLevels();
if(traceLevels->topic > 0)
{
Ice::Trace out(traceLevels->logger, traceLevels->topicCat);
out << _name << ": link " << _instance->communicator()->identityToString(topic->ice_getIdentity())
<< " cost " << cost;
}
lock_guard<mutex> lg(_mutex);
auto id = topic->ice_getIdentity();
SubscriberRecord record;
record.id = id;
record.obj = link;
record.theTopic = topic;
record.topicName = _name;
record.link = true;
record.cost = cost;
if(find(_subscribers.begin(), _subscribers.end(), record.id) != _subscribers.end())
{
throw LinkExists(IceStormInternal::identityToTopicName(id));
}
auto subscriber = Subscriber::create(_instance, record);
_subscribers.push_back(subscriber);
}
void
TransientTopicImpl::unlink(shared_ptr<TopicPrx> topic, const Ice::Current&)
{
lock_guard<mutex> lg(_mutex);
if(_destroyed)
{
throw Ice::ObjectNotExistException(__FILE__, __LINE__);
}
auto id = topic->ice_getIdentity();
auto traceLevels = _instance->traceLevels();
if(find(_subscribers.begin(), _subscribers.end(), id) == _subscribers.end())
{
string name = IceStormInternal::identityToTopicName(id);
if(traceLevels->topic > 0)
{
Ice::Trace out(traceLevels->logger, traceLevels->topicCat);
out << _name << ": unlink " << name << " failed - not linked";
}
throw NoSuchLink(name);
}
if(traceLevels->topic > 0)
{
Ice::Trace out(traceLevels->logger, traceLevels->topicCat);
out << _name << " unlink " << _instance->communicator()->identityToString(id);
}
// Remove the subscriber from the subscribers list. Note
// that its possible that the subscriber isn't in the list, but is
// in the database if the subscriber was locally reaped.
auto p = find(_subscribers.begin(), _subscribers.end(), id);
if(p != _subscribers.end())
{
(*p)->destroy();
_subscribers.erase(p);
}
}
LinkInfoSeq
TransientTopicImpl::getLinkInfoSeq(const Ice::Current&) const
{
lock_guard<mutex> lg(_mutex);
LinkInfoSeq seq;
for(const auto& subscriber : _subscribers)
{
SubscriberRecord record = subscriber->record();
if(record.link && !subscriber->errored())
{
LinkInfo info;
info.name = IceStormInternal::identityToTopicName(record.theTopic->ice_getIdentity());
info.cost = record.cost;
info.theTopic = record.theTopic;
seq.push_back(info);
}
}
return seq;
}
Ice::IdentitySeq
TransientTopicImpl::getSubscribers(const Ice::Current&) const
{
lock_guard<mutex> lg(_mutex);
Ice::IdentitySeq subscribers;
for(const auto& subscriber : _subscribers)
{
subscribers.push_back(subscriber->id());
}
return subscribers;
}
void
TransientTopicImpl::destroy(const Ice::Current&)
{
lock_guard<mutex> lg(_mutex);
if(_destroyed)
{
throw Ice::ObjectNotExistException(__FILE__, __LINE__);
}
_destroyed = true;
auto traceLevels = _instance->traceLevels();
if(traceLevels->topic > 0)
{
Ice::Trace out(traceLevels->logger, traceLevels->topicCat);
out << _name << ": destroy";
}
try
{
_instance->publishAdapter()->remove(_linkPrx->ice_getIdentity());
_instance->publishAdapter()->remove(_publisherPrx->ice_getIdentity());
}
catch(const Ice::ObjectAdapterDeactivatedException&)
{
// Ignore -- this could occur on shutdown.
}
// Destroy all of the subscribers.
for(const auto& subscriber : _subscribers)
{
subscriber->destroy();
}
_subscribers.clear();
}
void
TransientTopicImpl::reap(Ice::IdentitySeq, const Ice::Current&)
{
}
bool
TransientTopicImpl::destroyed() const
{
lock_guard<mutex> lg(_mutex);
return _destroyed;
}
Ice::Identity
TransientTopicImpl::id() const
{
// immutable
return _id;
}
void
TransientTopicImpl::publish(bool forwarded, const EventDataSeq& events)
{
//
// Copy of the subscriber list so that event publishing can occur
// in parallel.
//
vector<shared_ptr<Subscriber>> copy;
{
lock_guard<mutex> lg(_mutex);
copy = _subscribers;
}
//
// Queue each event, gathering a list of those subscribers that
// must be reaped.
//
vector<Ice::Identity> ids;
for(const auto& subscriber : copy)
{
if(!subscriber->queue(forwarded, events) && subscriber->reap())
{
ids.push_back(subscriber->id());
}
}
//
// Run through the error list removing those subscribers that are
// in error from the subscriber list.
//
if(!ids.empty())
{
lock_guard<mutex> lg(_mutex);
for(const auto& id : ids)
{
//
// Its possible for the subscriber to already have been
// removed since the copy is iterated over outside of
// mutex protection.
//
// Note that although this could be quicker if we used a
// map, the most optimal case should be pushing around
// events not searching for a particular subscriber.
//
// The subscriber is immediately destroyed & removed from
// the _subscribers list. Add the subscriber to a list of
// error'd subscribers and remove it from the database on
// the next reap.
//
auto q = find(_subscribers.begin(), _subscribers.end(), id);
if(q != _subscribers.end())
{
//
// Destroy the subscriber.
//
(*q)->destroy();
_subscribers.erase(q);
}
}
}
}
void
TransientTopicImpl::shutdown()
{
lock_guard<mutex> lg(_mutex);
// Shutdown each subscriber. This waits for the event queues to drain.
for(const auto& subscriber : _subscribers)
{
subscriber->shutdown();
}
}
|