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
|
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#include <Ice/Ice.h>
#include <IceStorm/TopicManagerI.h>
#include <IceStorm/TopicI.h>
#include <IceStorm/Flusher.h>
#include <IceStorm/TraceLevels.h>
#include <functional>
using namespace IceStorm;
using namespace std;
TopicManagerI::TopicManagerI(const Ice::CommunicatorPtr& communicator, const Ice::ObjectAdapterPtr& adapter,
const TraceLevelsPtr& traceLevels) :
_communicator(communicator),
_adapter(adapter),
_traceLevels(traceLevels)
{
_flusher = new Flusher(_communicator, _traceLevels);
}
TopicManagerI::~TopicManagerI()
{
}
TopicPrx
TopicManagerI::create(const string& name)
{
// TODO: reader/writer mutex
JTCSyncT<JTCMutex> sync(*this);
reap();
if (_topicIMap.find(name) != _topicIMap.end())
{
TopicExists ex;
ex.name = name;
throw ex;
}
if (_traceLevels->topicMgr > 0)
{
ostringstream s;
s << "Create " << name;
_communicator->getLogger()->trace(_traceLevels->topicMgrCat, s.str());
}
//
// Create topic implementation
//
TopicIPtr topicI = new TopicI(_adapter, _traceLevels, _communicator->getLogger(), name, _flusher);
_adapter->add(topicI, name);
_topicIMap.insert(TopicIMap::value_type(name, topicI));
return TopicPrx::uncheckedCast(_adapter->createProxy(name));
}
TopicPrx
TopicManagerI::retrieve(const string& name)
{
JTCSyncT<JTCMutex> sync(*this);
reap();
if (_topicIMap.find(name) != _topicIMap.end())
return TopicPrx::uncheckedCast(_adapter->createProxy(name));
NoSuchTopic ex;
ex.name = name;
throw ex;
}
//
// The arguments cannot be const & (for some reason)
//
static TopicDict::value_type
transformToTopicDict(TopicIMap::value_type p, Ice::ObjectAdapterPtr adapter)
{
return TopicDict::value_type(p.first, TopicPrx::uncheckedCast(adapter->createProxy(p.first)));
}
TopicDict
TopicManagerI::retrieveAll()
{
JTCSyncT<JTCMutex> sync(*this);
reap();
TopicDict all;
transform(_topicIMap.begin(), _topicIMap.end(), inserter(all, all.begin()),
bind2nd(ptr_fun(transformToTopicDict), _adapter));
return all;
}
void
TopicManagerI::subscribe(const string& id, const QoS& qos, const StringSeq& topics, const Ice::ObjectPrx& tmpl)
{
JTCSyncT<JTCMutex> sync(*this);
if (_traceLevels->topicMgr > 0)
{
ostringstream s;
s << "Subscribe: " << id;
if (_traceLevels->topicMgr > 1)
{
s << " QoS: ";
for (QoS::const_iterator qi = qos.begin(); qi != qos.end() ; ++qi)
{
if (qi != qos.begin())
{
s << ',';
}
s << '[' << qi->first << "," << qi->second << ']';
}
s << " Topics: ";
for (StringSeq::const_iterator ti = topics.begin(); ti != topics.end() ; ++ti)
{
if (ti != topics.begin())
{
s << ",";
}
s << *ti;
}
}
_communicator->getLogger()->trace(_traceLevels->topicMgrCat, s.str());
}
//
// First scan the set of topics to ensure that each exists.
//
// TODO: This could be slightly optimized by remembering the
// TopicIPtr's so that the list doesn't need to scanned again.
//
StringSeq::const_iterator i;
for (i = topics.begin() ; i != topics.end() ; ++i)
{
TopicIMap::iterator elem = _topicIMap.find(*i);
if (elem == _topicIMap.end())
{
NoSuchTopic ex;
ex.name = *i;
throw ex;
}
}
//
// Now subscribe to each Topic.
//
for (i = topics.begin() ; i != topics.end() ; ++i)
{
TopicIMap::iterator elem = _topicIMap.find(*i);
if (elem != _topicIMap.end())
{
elem->second->subscribe(tmpl, id, qos);
}
}
}
void
TopicManagerI::unsubscribe(const string& id, const StringSeq& topics)
{
JTCSyncT<JTCMutex> sync(*this);
if (_traceLevels->topicMgr > 0)
{
ostringstream s;
s << "Unsubscribe: " << id;
if (_traceLevels->topicMgr > 1)
{
s << " Topics: ";
for (StringSeq::const_iterator ti = topics.begin(); ti != topics.end() ; ++ti)
{
if (ti != topics.begin())
{
s << ",";
}
s << *ti;
}
}
_communicator->getLogger()->trace(_traceLevels->topicMgrCat, s.str());
}
for (StringSeq::const_iterator i = topics.begin() ; i != topics.end() ; ++i)
{
TopicIMap::iterator elem = _topicIMap.find(*i);
if (elem != _topicIMap.end())
{
elem->second->unsubscribe(id);
}
}
}
void
TopicManagerI::shutdown()
{
_flusher->stopFlushing();
_communicator->shutdown();
}
void
TopicManagerI::reap()
{
//
// Always Called with mutex locked
//
// JTCSyncT<JTCMutex> sync(*this);
//
TopicIMap::iterator i = _topicIMap.begin();
while (i != _topicIMap.end())
{
if (i->second->destroyed())
{
if (_traceLevels->topicMgr > 0)
{
ostringstream s;
s << "Reaping " << i->first;
_communicator->getLogger()->trace(_traceLevels->topicMgrCat, s.str());
}
_topicIMap.erase(i++);
}
else
{
++i;
}
}
}
|