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
|
// **********************************************************************
//
// Copyright (c) 2003-2009 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.
//
// **********************************************************************
public class ServantI implements Test._ServantOperations
{
static class DelayedResponse extends Thread
{
DelayedResponse(Test.AMD_Servant_slowGetValue cb, int val)
{
_cb = cb;
_val = val;
}
public void
run()
{
try
{
sleep(500);
}
catch(InterruptedException e)
{
// Ignored
}
_cb.ice_response(_val);
}
private Test.AMD_Servant_slowGetValue _cb;
private int _val;
}
ServantI(Test.Servant tie)
{
_tie = tie;
}
ServantI(Test.Servant tie, RemoteEvictorI remoteEvictor, Freeze.BackgroundSaveEvictor evictor, int value)
{
_tie = tie;
_remoteEvictor = remoteEvictor;
_evictor = evictor;
_tie.value = value;
}
void
init(RemoteEvictorI remoteEvictor, Freeze.BackgroundSaveEvictor evictor)
{
_remoteEvictor = remoteEvictor;
_evictor = evictor;
}
public void
destroy(Ice.Current current)
{
_evictor.remove(current.id);
}
public int
getValue(Ice.Current current)
{
synchronized(_tie)
{
return _tie.value;
}
}
public void
slowGetValue_async(Test.AMD_Servant_slowGetValue cb, Ice.Current current)
{
synchronized(_tie)
{
Thread t = new DelayedResponse(cb, _tie.value);
t.setDaemon(true);
t.start();
}
}
public void
setValue(int value, Ice.Current current)
{
synchronized(_tie)
{
_tie.value = value;
}
}
public void
setValueAsync_async(Test.AMD_Servant_setValueAsync __cb, int value, Ice.Current current)
{
synchronized(_tie)
{
_setValueAsyncCB = __cb;
_setValueAsyncValue = value;
_tie.notify();
}
}
public void
releaseAsync(Ice.Current current)
{
synchronized(_tie)
{
while(_setValueAsyncCB == null)
{
try
{
_tie.wait();
}
catch(InterruptedException ie)
{
break;
}
}
_tie.value = _setValueAsyncValue;
_setValueAsyncCB.ice_response();
_setValueAsyncCB = null;
}
}
public void
addFacet(String name, String data, Ice.Current current)
throws Test.AlreadyRegisteredException
{
Test._FacetTie tie = new Test._FacetTie();
tie.ice_delegate(new FacetI(tie, _remoteEvictor, _evictor, 0, data));
try
{
_evictor.addFacet(tie, current.id, name);
}
catch(Ice.AlreadyRegisteredException ex)
{
throw new Test.AlreadyRegisteredException();
}
}
public void
removeFacet(String name, Ice.Current current)
throws Test.NotRegisteredException
{
try
{
_evictor.removeFacet(current.id, name);
}
catch(Ice.NotRegisteredException ex)
{
throw new Test.NotRegisteredException();
}
}
public synchronized int
getTransientValue(Ice.Current current)
{
return _transientValue;
}
public synchronized void
setTransientValue(int val, Ice.Current current)
{
_transientValue = val;
}
public void
keepInCache(Ice.Current current)
{
_evictor.keep(current.id);
}
public void
release(Ice.Current current)
throws Test.NotRegisteredException
{
try
{
_evictor.release(current.id);
}
catch(Ice.NotRegisteredException e)
{
throw new Test.NotRegisteredException();
}
}
protected RemoteEvictorI _remoteEvictor;
protected Freeze.BackgroundSaveEvictor _evictor;
protected Test.AMD_Servant_setValueAsync _setValueAsyncCB;
protected int _setValueAsyncValue;
protected Test.Servant _tie;
private int _transientValue = -1;
}
|