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
|
// **********************************************************************
//
// 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.
//
// **********************************************************************
using System;
using System.Collections.Generic;
using Test;
public sealed class TestI : TestIntfDisp_
{
private static void test(bool b)
{
if(!b)
{
throw new System.Exception();
}
}
public override void shutdown(Ice.Current current)
{
current.adapter.getCommunicator().shutdown();
}
public override Ice.Object SBaseAsObject(Ice.Current current)
{
SBase sb = new SBase();
sb.sb = "SBase.sb";
return sb;
}
public override SBase SBaseAsSBase(Ice.Current current)
{
SBase sb = new SBase();
sb.sb = "SBase.sb";
return sb;
}
public override SBase SBSKnownDerivedAsSBase(Ice.Current current)
{
SBSKnownDerived sbskd = new SBSKnownDerived();
sbskd.sb = "SBSKnownDerived.sb";
sbskd.sbskd = "SBSKnownDerived.sbskd";
return sbskd;
}
public override SBSKnownDerived SBSKnownDerivedAsSBSKnownDerived(Ice.Current current)
{
SBSKnownDerived sbskd = new SBSKnownDerived();
sbskd.sb = "SBSKnownDerived.sb";
sbskd.sbskd = "SBSKnownDerived.sbskd";
return sbskd;
}
public override SBase SBSUnknownDerivedAsSBase(Ice.Current current)
{
SBSUnknownDerived sbsud = new SBSUnknownDerived();
sbsud.sb = "SBSUnknownDerived.sb";
sbsud.sbsud = "SBSUnknownDerived.sbsud";
return sbsud;
}
public override SBase SBSUnknownDerivedAsSBaseCompact(Ice.Current current)
{
SBSUnknownDerived sbsud = new SBSUnknownDerived();
sbsud.sb = "SBSUnknownDerived.sb";
sbsud.sbsud = "SBSUnknownDerived.sbsud";
return sbsud;
}
public override Ice.Object SUnknownAsObject(Ice.Current current)
{
SUnknown su = new SUnknown();
su.su = "SUnknown.su";
return su;
}
public override void checkSUnknown(Ice.Object obj, Ice.Current current)
{
if(current.encoding.Equals(Ice.Util.Encoding_1_0))
{
test(!(obj is SUnknown));
}
else
{
SUnknown su = obj as SUnknown;
test(su.su.Equals("SUnknown.su"));
}
}
public override B oneElementCycle(Ice.Current current)
{
B b = new B();
b.sb = "B1.sb";
b.pb = b;
return b;
}
public override B twoElementCycle(Ice.Current current)
{
B b1 = new B();
b1.sb = "B1.sb";
B b2 = new B();
b2.sb = "B2.sb";
b2.pb = b1;
b1.pb = b2;
return b1;
}
public override B D1AsB(Ice.Current current)
{
D1 d1 = new D1();
d1.sb = "D1.sb";
d1.sd1 = "D1.sd1";
D2 d2 = new D2();
d2.pb = d1;
d2.sb = "D2.sb";
d2.sd2 = "D2.sd2";
d2.pd2 = d1;
d1.pb = d2;
d1.pd1 = d2;
return d1;
}
public override D1 D1AsD1(Ice.Current current)
{
D1 d1 = new D1();
d1.sb = "D1.sb";
d1.sd1 = "D1.sd1";
D2 d2 = new D2();
d2.pb = d1;
d2.sb = "D2.sb";
d2.sd2 = "D2.sd2";
d2.pd2 = d1;
d1.pb = d2;
d1.pd1 = d2;
return d1;
}
public override B D2AsB(Ice.Current current)
{
D2 d2 = new D2();
d2.sb = "D2.sb";
d2.sd2 = "D2.sd2";
D1 d1 = new D1();
d1.pb = d2;
d1.sb = "D1.sb";
d1.sd1 = "D1.sd1";
d1.pd1 = d2;
d2.pb = d1;
d2.pd2 = d1;
return d2;
}
public override void paramTest1(out B p1, out B p2, Ice.Current current)
{
D1 d1 = new D1();
d1.sb = "D1.sb";
d1.sd1 = "D1.sd1";
D2 d2 = new D2();
d2.pb = d1;
d2.sb = "D2.sb";
d2.sd2 = "D2.sd2";
d2.pd2 = d1;
d1.pb = d2;
d1.pd1 = d2;
p1 = d1;
p2 = d2;
}
public override void paramTest2(out B p1, out B p2, Ice.Current current)
{
paramTest1(out p2, out p1, current);
}
public override B paramTest3(out B p1, out B p2, Ice.Current current)
{
D2 d2 = new D2();
d2.sb = "D2.sb (p1 1)";
d2.pb = null;
d2.sd2 = "D2.sd2 (p1 1)";
p1 = d2;
D1 d1 = new D1();
d1.sb = "D1.sb (p1 2)";
d1.pb = null;
d1.sd1 = "D1.sd2 (p1 2)";
d1.pd1 = null;
d2.pd2 = d1;
D2 d4 = new D2();
d4.sb = "D2.sb (p2 1)";
d4.pb = null;
d4.sd2 = "D2.sd2 (p2 1)";
p2 = d4;
D1 d3 = new D1();
d3.sb = "D1.sb (p2 2)";
d3.pb = null;
d3.sd1 = "D1.sd2 (p2 2)";
d3.pd1 = null;
d4.pd2 = d3;
return d3;
}
public override B paramTest4(out B p1, Ice.Current current)
{
D4 d4 = new D4();
d4.sb = "D4.sb (1)";
d4.pb = null;
d4.p1 = new B();
d4.p1.sb = "B.sb (1)";
d4.p2 = new B();
d4.p2.sb = "B.sb (2)";
p1 = d4;
return d4.p2;
}
public override B returnTest1(out B p1, out B p2, Ice.Current current)
{
paramTest1(out p1, out p2, current);
return p1;
}
public override B returnTest2(out B p1, out B p2, Ice.Current current)
{
paramTest1(out p2, out p1, current);
return p1;
}
public override B returnTest3(B p1, B p2, Ice.Current current)
{
return p1;
}
public override SS3 sequenceTest(SS1 p1, SS2 p2, Ice.Current current)
{
SS3 ss = new SS3();
ss.c1 = p1;
ss.c2 = p2;
return ss;
}
public override Dictionary<int, B> dictionaryTest(Dictionary<int, B> bin, out Dictionary<int, B> bout,
Ice.Current current)
{
bout = new Dictionary<int, B>();
int i;
for(i = 0; i < 10; ++i)
{
B b = bin[i];
D2 d2 = new D2();
d2.sb = b.sb;
d2.pb = b.pb;
d2.sd2 = "D2";
d2.pd2 = d2;
bout[i * 10] = d2;
}
Dictionary<int, B> r = new Dictionary<int, B>();
for(i = 0; i < 10; ++i)
{
string s = "D1." + (i * 20).ToString();
D1 d1 = new D1();
d1.sb = s;
d1.pb = i == 0 ? null : r[(i - 1) * 20];
d1.sd1 = s;
d1.pd1 = d1;
r[i * 20] = d1;
}
return r;
}
public override PBase exchangePBase(PBase pb, Ice.Current current)
{
return pb;
}
public override Preserved PBSUnknownAsPreserved(Ice.Current current)
{
PSUnknown r = new PSUnknown();
r.pi = 5;
r.ps = "preserved";
r.psu = "unknown";
r.graph = null;
if(!current.encoding.Equals(Ice.Util.Encoding_1_0))
{
//
// 1.0 encoding doesn't support unmarshaling unknown classes even if referenced
// from unread slice.
//
r.cl = new MyClass(15);
}
return r;
}
public override void checkPBSUnknown(Preserved p, Ice.Current current)
{
if(current.encoding.Equals(Ice.Util.Encoding_1_0))
{
test(!(p is PSUnknown));
test(p.pi == 5);
test(p.ps.Equals("preserved"));
}
else
{
PSUnknown pu = p as PSUnknown;
test(pu.pi == 5);
test(pu.ps.Equals("preserved"));
test(pu.psu.Equals("unknown"));
test(pu.graph == null);
test(pu.cl != null && pu.cl.i == 15);
}
}
public override void PBSUnknownAsPreservedWithGraph_async(AMD_TestIntf_PBSUnknownAsPreservedWithGraph cb,
Ice.Current current)
{
PSUnknown r = new PSUnknown();
r.pi = 5;
r.ps = "preserved";
r.psu = "unknown";
r.graph = new PNode();
r.graph.next = new PNode();
r.graph.next.next = new PNode();
r.graph.next.next.next = r.graph;
cb.ice_response(r);
r.graph.next.next.next = null; // Break the cycle.
}
public override void checkPBSUnknownWithGraph(Preserved p, Ice.Current current)
{
if(current.encoding.Equals(Ice.Util.Encoding_1_0))
{
test(!(p is PSUnknown));
test(p.pi == 5);
test(p.ps.Equals("preserved"));
}
else
{
PSUnknown pu = p as PSUnknown;
test(pu.pi == 5);
test(pu.ps.Equals("preserved"));
test(pu.psu.Equals("unknown"));
test(pu.graph != pu.graph.next);
test(pu.graph.next != pu.graph.next.next);
test(pu.graph.next.next.next == pu.graph);
pu.graph.next.next.next = null; // Break the cycle.
}
}
public override void PBSUnknown2AsPreservedWithGraph_async(AMD_TestIntf_PBSUnknown2AsPreservedWithGraph cb,
Ice.Current current)
{
PSUnknown2 r = new PSUnknown2();
r.pi = 5;
r.ps = "preserved";
r.pb = r;
cb.ice_response(r);
r.pb = null; // Break the cycle.
}
public override void checkPBSUnknown2WithGraph(Preserved p, Ice.Current current)
{
if(current.encoding.Equals(Ice.Util.Encoding_1_0))
{
test(!(p is PSUnknown2));
test(p.pi == 5);
test(p.ps.Equals("preserved"));
}
else
{
PSUnknown2 pu = p as PSUnknown2;
test(pu.pi == 5);
test(pu.ps.Equals("preserved"));
test(pu.pb == pu);
pu.pb = null; // Break the cycle.
}
}
public override PNode exchangePNode(PNode pn, Ice.Current current)
{
return pn;
}
public override void throwBaseAsBase(Ice.Current current)
{
BaseException be = new BaseException();
be.sbe = "sbe";
be.pb = new B();
be.pb.sb = "sb";
be.pb.pb = be.pb;
throw be;
}
public override void throwDerivedAsBase(Ice.Current current)
{
DerivedException de = new DerivedException();
de.sbe = "sbe";
de.pb = new B();
de.pb.sb = "sb1";
de.pb.pb = de.pb;
de.sde = "sde1";
de.pd1 = new D1();
de.pd1.sb = "sb2";
de.pd1.pb = de.pd1;
de.pd1.sd1 = "sd2";
de.pd1.pd1 = de.pd1;
throw de;
}
public override void throwDerivedAsDerived(Ice.Current current)
{
DerivedException de = new DerivedException();
de.sbe = "sbe";
de.pb = new B();
de.pb.sb = "sb1";
de.pb.pb = de.pb;
de.sde = "sde1";
de.pd1 = new D1();
de.pd1.sb = "sb2";
de.pd1.pb = de.pd1;
de.pd1.sd1 = "sd2";
de.pd1.pd1 = de.pd1;
throw de;
}
public override void throwUnknownDerivedAsBase(Ice.Current current)
{
D2 d2 = new D2();
d2.sb = "sb d2";
d2.pb = d2;
d2.sd2 = "sd2 d2";
d2.pd2 = d2;
UnknownDerivedException ude = new UnknownDerivedException();
ude.sbe = "sbe";
ude.pb = d2;
ude.sude = "sude";
ude.pd2 = d2;
throw ude;
}
public override void throwPreservedException_async(AMD_TestIntf_throwPreservedException cb, Ice.Current current)
{
PSUnknownException ue = new PSUnknownException();
ue.p = new PSUnknown2();
ue.p.pi = 5;
ue.p.ps = "preserved";
ue.p.pb = ue.p;
cb.ice_exception(ue);
ue.p.pb = null; // Break the cycle.
}
public override void useForward(out Forward f, Ice.Current current)
{
f = new Forward();
f.h = new Hidden();
f.h.f = f;
}
}
|