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
|
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
package Ice;
public class ObjectAdapterI implements ObjectAdapter
{
public String
getName()
{
return _name; // _name is immutable
}
public Communicator
getCommunicator()
{
return _instance.communicator(); // _instance is immutable
}
public synchronized void
activate()
{
/*
if (_collectorFactories.isEmpty())
{
throw new ObjectAdapterDeactivatedException();
}
java.util.ListIterator i = _collectorFactories.listIterator();
while (i.hasNext())
{
IceInternal.CollectorFactory factory =
(IceInternal.CollectorFactory)i.next();
factory.activate();
}
*/
}
public synchronized void
hold()
{
/*
if (_collectorFactories.isEmpty())
{
throw new ObjectAdapterDeactivatedException();
}
java.util.ListIterator i = _collectorFactories.listIterator();
while (i.hasNext())
{
IceInternal.CollectorFactory factory =
(IceInternal.CollectorFactory)i.next();
factory.hold();
}
*/
}
public synchronized void
deactivate()
{
/*
if (_collectorFactories.isEmpty())
{
//
// Ignore deactivation requests if the Object Adapter has
// already been deactivated.
//
return;
}
java.util.ListIterator i = _collectorFactories.listIterator();
while (i.hasNext())
{
IceInternal.CollectorFactory factory =
(IceInternal.CollectorFactory)i.next();
factory.destroy();
}
_collectorFactories.clear();
_activeServantMap.clear();
// TODO: Hint
int sz = _locatorMap.size();
java.util.Set entrySet = _locatorMap.entrySet();
ServantLocator[] locators = new ServantLocator[sz];
entrySet.toArray(locators);
for (int n = 0; n < sz; n++)
{
locators[n].deactivate();
}
_locatorMap.clear();
// TODO: Hint
*/
}
public synchronized ObjectPrx
add(Ice.Object servant, String ident)
{
/*
if (_collectorFactories.isEmpty())
{
throw new ObjectAdapterDeactivatedException();
}
_activeServantMap.put(ident, servant);
return newProxy(ident);
*/
return null;
}
public synchronized ObjectPrx
addTemporary(Ice.Object servant)
{
/*
if (_collectorFactories.isEmpty())
{
throw new ObjectAdapterDeactivatedException();
}
long now = System.currentTimeMillis();
String ident = "." + (now / 1000L) + "." + (now % 1000L) + "." +
_rand.nextInt();
_activeServantMap.put(ident, servant);
return newProxy(ident);
*/
return null;
}
public synchronized void
remove(String ident)
{
/*
if (_collectorFactories.isEmpty())
{
throw new ObjectAdapterDeactivatedException();
}
_activeServantMap.remove(ident);
*/
}
public synchronized void
addServantLocator(ServantLocator locator, String prefix)
{
/*
if (_collectorFactories.isEmpty())
{
throw new ObjectAdapterDeactivatedException();
}
_locatorMap.put(prefix, locator);
*/
}
public synchronized void
removeServantLocator(String prefix)
{
/*
if (_collectorFactories.isEmpty())
{
throw new ObjectAdapterDeactivatedException();
}
ServantLocator locator = (ServantLocator)_locatorMap.remove(prefix);
if (locator != null)
{
locator.deactivate();
}
*/
}
public synchronized ServantLocator
findServantLocator(String prefix)
{
/*
if (_collectorFactories.isEmpty())
{
throw new ObjectAdapterDeactivatedException();
}
return (ServantLocator)_locatorMap.get(prefix);
*/
return null;
}
public synchronized Ice.Object
identityToServant(String ident)
{
/*
return (Ice.Object)_activeServantMap.get(ident);
*/
return null;
}
public Ice.Object
proxyToServant(ObjectPrx proxy)
{
/*
IceInternal.Reference ref = proxy.__reference();
return identityToServant(ref.identity);
*/
return null;
}
public synchronized ObjectPrx
createProxy(String ident)
{
/*
if (_collectorFactories.isEmpty())
{
throw new ObjectAdapterDeactivatedException();
}
return newProxy(ident);
*/
return null;
}
//
// Only for use by IceInternal.ObjectAdapterFactory
//
public
ObjectAdapterI(IceInternal.Instance instance, String name, String endpts)
{
_instance = instance;
_name = name;
/*
String s = endpts.toLowerCase();
int beg = 0;
int end;
try
{
while (true)
{
end = s.indexOf(':', beg);
if (end == -1)
{
end = s.length();
}
if (end == beg)
{
throw new EndpointParseException();
}
String es = s.substring(beg, end);
//
// Don't store the endpoint in the adapter. The Collector
// might change it, for example, to fill in the real port
// number if a zero port number is given.
//
IceInternal.Endpoint endp =
IceInternal.Endpoint.endpointFromString(es);
_collectorFactories.add(
new IceInternal.CollectorFactory(instance, this, endp));
if (end == s.length())
{
break;
}
beg = end + 1;
}
}
catch(LocalException ex)
{
if (!_collectorFactories.isEmpty())
{
deactivate();
}
throw ex;
}
if (_collectorFactories.isEmpty())
{
throw new EndpointParseException();
}
try
{
String value =
_instance.properties().getProperty("Ice.PrintAdapterReady");
if (Integer.parseInt(value) >= 1)
{
System.out.println(_name + " readY");
}
}
catch(NumberFormatException ex)
{
// TODO: Do anything?
}
*/
}
protected void
finalize()
throws Throwable
{
/*
if (!_collectorFactories.isEmpty())
{
deactivate();
}
super.finalize();
*/
}
private ObjectPrx
newProxy(String ident)
{
/*
IceInternal.Endpoint[] endpoints =
new IceInternal.Endpoint[_collectorFactories.size()];
int n = 0;
java.util.ListIterator i = _collectorFactories.listIterator();
while (i.hasNext())
{
IceInternal.CollectorFactory factory =
(IceInternal.CollectorFactory)i.next();
endpoints[n++] = factory.endpoint();
}
IceInternal.Reference reference = new IceInternal.Reference(_instance,
ident, "", IceInternal.Reference.ModeTwoway, false, endpoints,
endpoints);
return _instance.proxyFactory().referenceToProxy(reference);
*/
return null;
}
public boolean
isLocal(ObjectPrx proxy)
{
/*
// TODO: Optimize?
IceInternal.Reference ref = proxy.__reference();
IceInternal.Endpoint[] endpoints = ref.endpoints;
for (int n = 0; n < endpoints.length; n++)
{
java.util.ListIterator i = _collectorFactories.listIterator();
while (i.hasNext())
{
IceInternal.CollectorFactory factory =
(IceInternal.CollectorFactory)i.next();
if (factory.equivalent(endpoints[n]))
{
return true;
}
}
}
return false;
*/
return false;
}
private IceInternal.Instance _instance;
private String _name;
/*
private java.util.LinkedList _collectorFactories =
new java.util.LinkedList();
private java.util.HashMap _activeServantMap = new java.util.HashMap();
// TODO: Hint
private java.util.HashMap _locatorMap = new java.util.HashMap();
// TODO: Hint
private java.util.Random _rand = new java.util.Random();
*/
}
|