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
|
// **********************************************************************
//
// Copyright (c) 2003-2017 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.
//
// **********************************************************************
//
// NOTE: We don't use C# timers, the API is quite a bit different from
// the C++ & Java timers and it's not clear what is the cost of
// scheduling and cancelling timers.
//
namespace IceInternal
{
using System;
using System.Diagnostics;
using System.Threading;
using System.Collections;
using System.Collections.Generic;
public interface TimerTask
{
void runTimerTask();
}
public sealed class Timer
{
public void destroy()
{
lock(this)
{
if(_instance == null)
{
return;
}
_instance = null;
System.Threading.Monitor.Pulse(this);
_tokens.Clear();
_tasks.Clear();
}
_thread.Join();
}
public void schedule(TimerTask task, long delay)
{
lock(this)
{
if(_instance == null)
{
throw new Ice.CommunicatorDestroyedException();
}
Token token = new Token(Time.currentMonotonicTimeMillis() + delay, ++_tokenId, 0, task);
try
{
_tasks.Add(task, token);
#if SILVERLIGHT
int index = _tokens.BinarySearch(token);
Debug.Assert(index < 0);
if(index < 0)
{
_tokens.Insert(~index, token);
}
#else
_tokens.Add(token, null);
#endif
}
catch(System.ArgumentException)
{
Debug.Assert(false);
}
if(token.scheduledTime < _wakeUpTime)
{
System.Threading.Monitor.Pulse(this);
}
}
}
public void scheduleRepeated(TimerTask task, long period)
{
lock(this)
{
if(_instance == null)
{
throw new Ice.CommunicatorDestroyedException();
}
Token token = new Token(Time.currentMonotonicTimeMillis() + period, ++_tokenId, period, task);
try
{
_tasks.Add(task, token);
#if SILVERLIGHT
int index = _tokens.BinarySearch(token);
Debug.Assert(index < 0);
if(index < 0)
{
_tokens.Insert(~index, token);
}
#else
_tokens.Add(token, null);
#endif
}
catch(System.ArgumentException)
{
Debug.Assert(false);
}
if(token.scheduledTime < _wakeUpTime)
{
System.Threading.Monitor.Pulse(this);
}
}
}
public bool cancel(TimerTask task)
{
lock(this)
{
if(_instance == null)
{
return false;
}
Token token;
if(!_tasks.TryGetValue(task, out token))
{
return false;
}
_tasks.Remove(task);
_tokens.Remove(token);
return true;
}
}
//
// Only for use by Instance.
//
#if !SILVERLIGHT
internal Timer(IceInternal.Instance instance, ThreadPriority priority)
{
init(instance, priority, true);
}
#endif
internal Timer(IceInternal.Instance instance)
{
#if !SILVERLIGHT
init(instance, ThreadPriority.Normal, false);
#else
init(instance);
#endif
}
#if !SILVERLIGHT
internal void init(IceInternal.Instance instance, ThreadPriority priority, bool hasPriority)
#else
internal void init(IceInternal.Instance instance)
#endif
{
_instance = instance;
string threadName = _instance.initializationData().properties.getProperty("Ice.ProgramName");
if(threadName.Length > 0)
{
threadName += "-";
}
_thread = new Thread(new ThreadStart(Run));
_thread.IsBackground = true;
_thread.Name = threadName + "Ice.Timer";
#if !SILVERLIGHT
if(hasPriority)
{
_thread.Priority = priority;
}
#endif
_thread.Start();
}
internal void updateObserver(Ice.Instrumentation.CommunicatorObserver obsv)
{
lock(this)
{
Debug.Assert(obsv != null);
_observer = obsv.getThreadObserver("Communicator",
_thread.Name,
Ice.Instrumentation.ThreadState.ThreadStateIdle,
_observer);
if(_observer != null)
{
_observer.attach();
}
}
}
public void Run()
{
Token token = null;
while(true)
{
lock(this)
{
if(_instance != null)
{
//
// If the task we just ran is a repeated task, schedule it
// again for execution if it wasn't canceled.
//
if(token != null && token.delay > 0)
{
if(_tasks.ContainsKey(token.task))
{
token.scheduledTime = Time.currentMonotonicTimeMillis() + token.delay;
#if SILVERLIGHT
int index = _tokens.BinarySearch(token);
Debug.Assert(index < 0);
if(index < 0)
{
_tokens.Insert(~index, token);
}
#else
_tokens.Add(token, null);
#endif
}
}
}
token = null;
if(_instance == null)
{
break;
}
if(_tokens.Count == 0)
{
_wakeUpTime = System.Int64.MaxValue;
System.Threading.Monitor.Wait(this);
}
if(_instance == null)
{
break;
}
while(_tokens.Count > 0 && _instance != null)
{
long now = Time.currentMonotonicTimeMillis();
Token first = null;
#if SILVERLIGHT
foreach(Token t in _tokens)
#else
foreach(Token t in _tokens.Keys)
#endif
{
first = t;
break;
}
Debug.Assert(first != null);
if(first.scheduledTime <= now)
{
_tokens.Remove(first);
token = first;
if(token.delay == 0)
{
_tasks.Remove(token.task);
}
break;
}
_wakeUpTime = first.scheduledTime;
System.Threading.Monitor.Wait(this, (int)(first.scheduledTime - now));
}
if(_instance == null)
{
break;
}
}
if(token != null)
{
try
{
Ice.Instrumentation.ThreadObserver threadObserver = _observer;
if(threadObserver != null)
{
threadObserver.stateChanged(Ice.Instrumentation.ThreadState.ThreadStateIdle,
Ice.Instrumentation.ThreadState.ThreadStateInUseForOther);
try
{
token.task.runTimerTask();
}
finally
{
threadObserver.stateChanged(Ice.Instrumentation.ThreadState.ThreadStateInUseForOther,
Ice.Instrumentation.ThreadState.ThreadStateIdle);
}
}
else
{
token.task.runTimerTask();
}
}
catch(System.Exception ex)
{
lock(this)
{
if(_instance != null)
{
string s = "unexpected exception from task run method in timer thread:\n" + ex;
_instance.initializationData().logger.error(s);
}
}
}
}
}
}
private class Token : System.IComparable
{
public
Token(long scheduledTime, int id, long delay, TimerTask task)
{
this.scheduledTime = scheduledTime;
this.id = id;
this.delay = delay;
this.task = task;
}
public int CompareTo(object o)
{
//
// Token are sorted by scheduled time and token id.
//
Token r = (Token)o;
if(scheduledTime < r.scheduledTime)
{
return -1;
}
else if(scheduledTime > r.scheduledTime)
{
return 1;
}
if(id < r.id)
{
return -1;
}
else if(id > r.id)
{
return 1;
}
return 0;
}
public override bool Equals(object o)
{
if(object.ReferenceEquals(this, o))
{
return true;
}
Token t = o as Token;
return t == null ? false : CompareTo(t) == 0;
}
public override int GetHashCode()
{
int h = 5381;
IceInternal.HashUtil.hashAdd(ref h, id);
IceInternal.HashUtil.hashAdd(ref h, scheduledTime);
return h;
}
public long scheduledTime;
public int id; // Since we can't compare references, we need to use another id.
public long delay;
public TimerTask task;
}
#if COMPACT
private IDictionary<Token, object> _tokens = new SortedList<Token, object>();
#elif SILVERLIGHT
private List<Token> _tokens = new List<Token>();
#else
private IDictionary<Token, object> _tokens = new SortedDictionary<Token, object>();
#endif
private IDictionary<TimerTask, Token> _tasks = new Dictionary<TimerTask, Token>();
private Instance _instance;
private long _wakeUpTime = System.Int64.MaxValue;
private int _tokenId = 0;
private Thread _thread;
//
// We use a volatile to avoid synchronization when reading
// _observer. Reference assignement is atomic in Java so it
// also doesn't need to be synchronized.
//
private volatile Ice.Instrumentation.ThreadObserver _observer;
}
}
|