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
|
// **********************************************************************
//
// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <Ice/RouterInfo.h>
#include <Ice/Router.h>
#include <Ice/RoutingTable.h>
#include <Ice/LocalException.h>
#include <Ice/Connection.h> // For ice_connection()->timeout().
#include <Ice/Functional.h>
using namespace std;
using namespace Ice;
using namespace IceInternal;
void IceInternal::incRef(RouterManager* p) { p->__incRef(); }
void IceInternal::decRef(RouterManager* p) { p->__decRef(); }
void IceInternal::incRef(RouterInfo* p) { p->__incRef(); }
void IceInternal::decRef(RouterInfo* p) { p->__decRef(); }
IceInternal::RouterManager::RouterManager() :
_tableHint(_table.end())
{
}
void
IceInternal::RouterManager::destroy()
{
IceUtil::Mutex::Lock sync(*this);
for_each(_table.begin(), _table.end(), Ice::secondVoidMemFun<const RouterPrx, RouterInfo>(&RouterInfo::destroy));
_table.clear();
_tableHint = _table.end();
}
RouterInfoPtr
IceInternal::RouterManager::get(const RouterPrx& rtr)
{
if(!rtr)
{
return 0;
}
RouterPrx router = RouterPrx::uncheckedCast(rtr->ice_router(0)); // The router cannot be routed.
IceUtil::Mutex::Lock sync(*this);
map<RouterPrx, RouterInfoPtr>::iterator p = _table.end();
if(_tableHint != _table.end())
{
if(_tableHint->first == router)
{
p = _tableHint;
}
}
if(p == _table.end())
{
p = _table.find(router);
}
if(p == _table.end())
{
_tableHint = _table.insert(_tableHint, pair<const RouterPrx, RouterInfoPtr>(router, new RouterInfo(router)));
}
else
{
_tableHint = p;
}
return _tableHint->second;
}
IceInternal::RouterInfo::RouterInfo(const RouterPrx& router) :
_router(router),
_routingTable(new RoutingTable)
{
assert(_router);
}
void
IceInternal::RouterInfo::destroy()
{
IceUtil::Mutex::Lock sync(*this);
_clientProxy = 0;
_serverProxy = 0;
_adapter = 0;
_routingTable->clear();
}
bool
IceInternal::RouterInfo::operator==(const RouterInfo& rhs) const
{
return _router == rhs._router;
}
bool
IceInternal::RouterInfo::operator!=(const RouterInfo& rhs) const
{
return _router != rhs._router;
}
bool
IceInternal::RouterInfo::operator<(const RouterInfo& rhs) const
{
return _router < rhs._router;
}
RouterPrx
IceInternal::RouterInfo::getRouter() const
{
//
// No mutex lock necessary, _router is immutable.
//
return _router;
}
ObjectPrx
IceInternal::RouterInfo::getClientProxy()
{
IceUtil::Mutex::Lock sync(*this);
if(!_clientProxy) // Lazy initialization.
{
_clientProxy = _router->getClientProxy();
if(!_clientProxy)
{
throw NoEndpointException(__FILE__, __LINE__);
}
_clientProxy = _clientProxy->ice_router(0); // The client proxy cannot be routed.
//
// In order to avoid creating a new connection to the router,
// we must use the same timeout as the already existing
// connection.
//
_clientProxy = _clientProxy->ice_timeout(_router->ice_connection()->timeout());
}
return _clientProxy;
}
void
IceInternal::RouterInfo::setClientProxy(const ObjectPrx& clientProxy)
{
IceUtil::Mutex::Lock sync(*this);
_clientProxy = clientProxy->ice_router(0); // The client proxy cannot be routed.
//
// In order to avoid creating a new connection to the router, we
// must use the same timeout as the already existing connection.
//
_clientProxy = _clientProxy->ice_timeout(_router->ice_connection()->timeout());
}
ObjectPrx
IceInternal::RouterInfo::getServerProxy()
{
IceUtil::Mutex::Lock sync(*this);
if(!_serverProxy) // Lazy initialization.
{
_serverProxy = _router->getServerProxy();
if(!_serverProxy)
{
throw NoEndpointException(__FILE__, __LINE__);
}
_serverProxy = _serverProxy->ice_router(0); // The server proxy cannot be routed.
}
return _serverProxy;
}
void
IceInternal::RouterInfo::setServerProxy(const ObjectPrx& serverProxy)
{
IceUtil::Mutex::Lock sync(*this);
_serverProxy = serverProxy->ice_router(0); // The server proxy cannot be routed.
}
void
IceInternal::RouterInfo::addProxy(const ObjectPrx& proxy)
{
//
// No mutex lock necessary, _routingTable is immutable, and
// RoutingTable is mutex protected.
//
if(_routingTable->add(proxy)) // Only add the proxy to the router if it's not already in the routing table.
{
_router->addProxy(proxy);
}
}
void
IceInternal::RouterInfo::setAdapter(const ObjectAdapterPtr& adapter)
{
IceUtil::Mutex::Lock sync(*this);
_adapter = adapter;
}
ObjectAdapterPtr
IceInternal::RouterInfo::getAdapter() const
{
IceUtil::Mutex::Lock sync(*this);
return _adapter;
}
|