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
|
// **********************************************************************
//
// Copyright (c) 2003-2016 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.
//
// **********************************************************************
namespace IceDiscovery
{
using System.Collections.Generic;
using System.Threading.Tasks;
class LocatorRegistryI : Ice.LocatorRegistryDisp_
{
public
LocatorRegistryI(Ice.Communicator com)
{
_wellKnownProxy = com.stringToProxy("p").ice_locator(null).ice_router(null).ice_collocationOptimized(true);
}
public override Task
setAdapterDirectProxyAsync(string adapterId, Ice.ObjectPrx proxy, Ice.Current current)
{
lock(this)
{
if(proxy != null)
{
_adapters.Add(adapterId, proxy);
}
else
{
_adapters.Remove(adapterId);
}
}
return null;
}
public override Task
setReplicatedAdapterDirectProxyAsync(string adapterId, string replicaGroupId, Ice.ObjectPrx proxy,
Ice.Current current)
{
lock(this)
{
if(proxy != null)
{
_adapters.Add(adapterId, proxy);
HashSet<string> adapterIds;
if(!_replicaGroups.TryGetValue(replicaGroupId, out adapterIds))
{
adapterIds = new HashSet<string>();
_replicaGroups.Add(replicaGroupId, adapterIds);
}
adapterIds.Add(adapterId);
}
else
{
_adapters.Remove(adapterId);
HashSet<string> adapterIds;
if(_replicaGroups.TryGetValue(replicaGroupId, out adapterIds))
{
adapterIds.Remove(adapterId);
if(adapterIds.Count == 0)
{
_replicaGroups.Remove(replicaGroupId);
}
}
}
}
return null;
}
public override Task
setServerProcessProxyAsync(string id, Ice.ProcessPrx process, Ice.Current current)
{
return null;
}
internal Ice.ObjectPrx findObject(Ice.Identity id)
{
lock(this)
{
if(id.name.Length == 0)
{
return null;
}
Ice.ObjectPrx prx = _wellKnownProxy.ice_identity(id);
List<string> adapterIds = new List<string>();
foreach(KeyValuePair<string, HashSet<string>> entry in _replicaGroups)
{
try
{
prx.ice_adapterId(entry.Key).ice_ping();
adapterIds.Add(entry.Key);
}
catch(Ice.Exception)
{
}
}
if(adapterIds.Count == 0)
{
foreach(KeyValuePair<string, Ice.ObjectPrx> entry in _adapters)
{
try
{
prx.ice_adapterId(entry.Key).ice_ping();
adapterIds.Add(entry.Key);
}
catch(Ice.Exception)
{
}
}
}
if(adapterIds.Count == 0)
{
return null;
}
//adapterIds.Suffle();
return prx.ice_adapterId(adapterIds[0]);
}
}
internal Ice.ObjectPrx findAdapter(string adapterId, out bool isReplicaGroup)
{
lock(this)
{
Ice.ObjectPrx result = null;
if(_adapters.TryGetValue(adapterId, out result))
{
isReplicaGroup = false;
return result;
}
HashSet<string> adapterIds;
if(_replicaGroups.TryGetValue(adapterId, out adapterIds))
{
List<Ice.Endpoint> endpoints = new List<Ice.Endpoint>();
foreach(string a in adapterIds)
{
Ice.ObjectPrx proxy;
if(!_adapters.TryGetValue(a, out proxy))
{
continue; // TODO: Inconsistency
}
if(result == null)
{
result = proxy;
}
endpoints.AddRange(proxy.ice_getEndpoints());
}
if(result != null)
{
isReplicaGroup = true;
return result.ice_endpoints(endpoints.ToArray());
}
}
isReplicaGroup = false;
return null;
}
}
private readonly Ice.ObjectPrx _wellKnownProxy;
private Dictionary<string, Ice.ObjectPrx> _adapters = new Dictionary<string, Ice.ObjectPrx>();
private Dictionary<string, HashSet<string>> _replicaGroups = new Dictionary<string, HashSet<string>>();
};
class LocatorI : Ice.LocatorDisp_
{
public LocatorI(LookupI lookup, Ice.LocatorRegistryPrx registry)
{
_lookup = lookup;
_registry = registry;
}
public override Task<Ice.ObjectPrx>
findObjectByIdAsync(Ice.Identity id, Ice.Current current)
{
return _lookup.findObject(id);
}
public override Task<Ice.ObjectPrx>
findAdapterByIdAsync(string adapterId, Ice.Current current)
{
return _lookup.findAdapter(adapterId);
}
public override Ice.LocatorRegistryPrx getRegistry(Ice.Current current)
{
return _registry;
}
private LookupI _lookup;
private Ice.LocatorRegistryPrx _registry;
};
}
|