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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
|
//
// Timeout support functions for the Fast Light Tool Kit (FLTK).
//
// Author: Albrecht Schlosser
// Copyright 2021-2022 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
// file is missing or damaged, see the license at:
//
// https://www.fltk.org/COPYING.php
//
// Please see the following page on how to report bugs and issues:
//
// https://www.fltk.org/bugs.php
//
#include "Fl_Timeout.h"
#include "Fl_System_Driver.H"
#include <stdio.h>
/**
\file Fl_Timeout.cxx
*/
// static class variables
Fl_Timeout *Fl_Timeout::free_timeout = 0;
Fl_Timeout *Fl_Timeout::first_timeout = 0;
Fl_Timeout *Fl_Timeout::current_timeout = 0;
#if FL_TIMEOUT_DEBUG
static int num_timers = 0; // DEBUG
#endif
// Internal timestamp, used for delta time calculation.
// Note: FLTK naming convention is not used here to avoid potential conflicts
// in the future.
struct FlTimeStamp {
long sec;
long usec;
};
typedef struct FlTimeStamp FlTimeStamp_t;
// Get a timestamp of type FlTimeStamp.
// Depending on the system the resolution may be milliseconds or microseconds.
// Under certain conditions (particularly on Windows) the value in member `sec'
// may wrap around and does not represent a real time (maybe runtime of the system).
// Function elapsed_time() below uses this to subtract two timestamps which is always
// a correct delta time with milliseconds or microseconds resolution.
// To do: Fl::system_driver()->gettime() was implemented for the Forms library and
// has a limited resolution (on Windows: milliseconds). On POSIX platforms it uses
// gettimeofday() with microsecond resolution.
// A new function could use a better resolution on Windows with its multimedia
// timers which requires a new dependency: winmm.lib (dll). This could be a future
// improvement, maybe set as a build option or generally (requires Win95 or 98?).
static void get_timestamp(FlTimeStamp_t *ts) {
time_t sec;
int usec;
Fl::system_driver()->gettime(&sec, &usec);
ts->sec = (long)sec;
ts->usec = usec;
}
// Returns 0 and initializes the "previous" timestamp when called for the first time.
/*
Return the elapsed time since the last call in seconds.
The first call initializes the internal "previous" timestamp and returns 0.
This must only be called from Fl_Timeout::elapse_timeouts().
Todo: remove static variable in this function: previous time should be
maintained in the caller.
Return: double Elapsed time since the last call
*/
static double elapsed_time() {
static int first = 1; // initialization
static FlTimeStamp_t prev; // previous timestamp
FlTimeStamp_t now; // current timestamp
double elapsed = 0.0;
get_timestamp(&now);
if (first) {
first = 0;
} else {
elapsed = double((now.sec - prev.sec) + (now.usec - prev.usec) / 1000000.);
}
prev = now;
return elapsed;
}
/**
Insert this timer entry into the active timer queue.
The timer is inserted at the required position so the timer queue
is always ordered by due time.
*/
void Fl_Timeout::insert() {
Fl_Timeout **p = (Fl_Timeout **)&first_timeout;
while (*p && (*p)->time <= time) {
p = (Fl_Timeout **)&((*p)->next);
}
next = *p;
*p = this;
}
/**
Returns true if the timeout exists and has not been called yet.
\param[in] cb Timer callback (must match)
\param[in] data Callback user data (must match)
\returns whether the timer was found in the queue
\retval 0 not found
\retval 1 found
Implements Fl::has_timeout(Fl_Timeout_Handler cb, void *data)
\see Fl::has_timeout(Fl_Timeout_Handler cb, void *data)
*/
int Fl_Timeout::has_timeout(Fl_Timeout_Handler cb, void *data) {
for (Fl_Timeout *t = first_timeout; t; t = t->next) {
if (t->callback == cb && t->data == data)
return 1;
}
return 0;
}
/**
Adds a one-shot timeout callback.
The callback function \p cb will be called by Fl::wait() at \p time seconds
after this function is called.
\param[in] time delta time in seconds until the timer expires
\param[in] cb callback function
\param[in] data optional user data (default: \p NULL)
Implements Fl::add_timeout(double time, Fl_Timeout_Handler cb, void *data)
\see Fl::add_timeout(double time, Fl_Timeout_Handler cb, void *data)
*/
void Fl_Timeout::add_timeout(double time, Fl_Timeout_Handler cb, void *data) {
elapse_timeouts();
Fl_Timeout *t = get(time, cb, data);
t->insert();
}
/**
Repeats a timeout callback from the expiration of the previous timeout,
allowing for more accurate timing.
\param[in] time delta time in seconds until the timer expires
\param[in] cb callback function
\param[in] data optional user data (default: \p NULL)
Implements Fl::repeat_timeout(double time, Fl_Timeout_Handler cb, void *data)
\see Fl::repeat_timeout(double time, Fl_Timeout_Handler cb, void *data)
*/
void Fl_Timeout::repeat_timeout(double time, Fl_Timeout_Handler cb, void *data) {
elapse_timeouts();
Fl_Timeout *t = (Fl_Timeout *)get(time, cb, data);
Fl_Timeout *cur = current_timeout;
if (cur) {
t->time += cur->time; // was: missed_timeout_by (always <= 0.0)
if (t->time < 0.0)
t->time = 0.001; // at least 1 ms
}
t->insert();
}
/**
Remove a timeout callback.
This method removes all matching timeouts, not just the first one.
This may change in the future.
\param[in] cb Timer callback to be removed (must match)
\param[in] data Wildcard if NULL, must match otherwise
Implements Fl::remove_timeout(Fl_Timeout_Handler cb, void *data)
\see Fl::remove_timeout(Fl_Timeout_Handler cb, void *data)
*/
void Fl_Timeout::remove_timeout(Fl_Timeout_Handler cb, void *data) {
for (Fl_Timeout** p = &first_timeout; *p;) {
Fl_Timeout* t = *p;
if (t->callback == cb && (t->data == data || !data)) {
*p = t->next;
t->next = free_timeout;
free_timeout = t;
} else {
p = &(t->next);
}
}
}
/**
Remove the timeout from the active timer queue and push it onto
the stack of currently running callbacks.
This becomes the current() timeout which can be used in
Fl::repeat_timeout().
\see Fl_Timeout::current()
*/
void Fl_Timeout::make_current() {
// printf("[%4d] Fl_Timeout::make_current(%p)\n", __LINE__, this);
// remove the timer entry from the active timer queue
for (Fl_Timeout** p = &first_timeout; *p;) {
Fl_Timeout* t = *p;
if (t == this) {
*p = t->next;
// push it to the current timer stack
t->next = current_timeout;
current_timeout = t;
break;
} else {
p = &(t->next);
}
}
}
/**
Remove the top-most timeout from the stack of currently running
timeout callbacks and insert it into the list of free timers.
Typical code in the library would look like:
\code
// The timeout \p Fl_Timeout *t has exired, run its callback
t->make_current();
(t->callback)(t->data);
t->release();
\endcode
*/
void Fl_Timeout::release() {
Fl_Timeout *t = current_timeout;
if (t) {
// The first timer in the "current" list *should* be 'this' but we
// check it to be sure. Issue an error message which should never appear.
// If it would happen we'd remove the wrong timer from the current timer
// list. This is not good but it doesn't really do harm.
if (t != this) {
Fl::error("*** Fl_Timeout::release() *** timer t (%p) != this (%p)\n", t, this);
}
// remove the timer from the list
current_timeout = t->next;
}
// put the timer into the list of free timers
next = free_timeout;
free_timeout = this;
}
/**
Returns the first (top-most) timeout from the current timeout stack.
This returns a pointer to the timeout but does not remove it from the
list of current timeouts. This should be the timeout that is currently
executing its callback.
\return Fl_Timeout* The current timeout whose callback is running.
\retval NULL if no callback is currently running.
*/
Fl_Timeout *Fl_Timeout::current() {
return current_timeout;
}
/**
Get an Fl_Timeout instance for further handling.
The timer object will be initialized with the input parameters
as given by Fl::add_timeout() or Fl::repeat_timeout().
Fl_Timeout objects are maintained in three queues:
- active timer queue
- list (stack, i.e. LIFO) of currently executing timer callbacks
- free timer entries.
When the FLTK program is launched all queues are empty. Whenever
a new timer object is required the get() method is called and a timer
object is either found in the queue of free timer entries or a new
timer object is created (operator new).
Active timer entries are inserted into the "active timer queue" until
they expire and their callback is called.
Before the callback is called the timer entry is inserted into the list
of current timers, i.e. it becomes the Fl_Timeout::current() timeout.
This can be used in Fl::repeat_timeout() to find out if and how long the
current timeout has been delayed.
When a timer is no longer used it is popped from the \p current list
and inserted into the "free timer" list so it can be reused later.
Timer queue entries are never returned to the system, there's no garbage
collection. The total number of timer objects is determined by the
largest number of concurrently active timers.
\param[in] time requested delta time
\param[in] cb timer callback
\param[in] data userdata for timer callback
\return Fl_Timeout* Timer entry
\see Fl::add_timeout(), Fl::repeat_timeout()
*/
Fl_Timeout *Fl_Timeout::get(double time, Fl_Timeout_Handler cb, void *data) {
Fl_Timeout *t = (Fl_Timeout *)free_timeout;
if (t) {
free_timeout = t->next;
t->next = 0;
} else {
t = new Fl_Timeout;
#if FL_TIMEOUT_DEBUG
num_timers++; // DEBUG: count allocated timers
#endif
}
t->next = 0;
t->skip = 1; // see do_timeouts() (issue #450)
t->delay(time);
t->callback = cb;
t->data = data;
return t;
}
/**
Elapse all timers w/o calling their callbacks.
All timer values are adjusted by the delta time since the last call.
This method does \b NOT call timer callbacks if timers are expired.
This must be called before new timers are added to the timer queue to make
sure that the next timer decrement does not count down too much time.
\see Fl_Timeout::do_timeouts()
*/
void Fl_Timeout::elapse_timeouts() {
double elapsed = elapsed_time();
// printf("elapse_timeouts: elapsed = %9.6f\n", double(elapsed)/1000000.);
if (elapsed > 0.0) {
// active timers
for (Fl_Timeout* t = first_timeout; t; t = t->next) {
t->time -= elapsed;
}
// "current" timers, i.e. timers being serviced
for (Fl_Timeout* t = current_timeout; t; t = t->next) {
t->time -= elapsed;
}
}
}
/**
Elapse timers and call their callbacks if any timers are expired.
*/
void Fl_Timeout::do_timeouts() {
// Reset "skip" flag for existing timers (issue #450).
// For timers inserted in timer callbacks 'skip' will be true (1)
Fl_Timeout *t = first_timeout;
while (t) {
t->skip = 0;
t = t->next;
}
if (first_timeout) {
Fl_Timeout::elapse_timeouts();
while ((t = first_timeout)) {
if (t->time > 0) break;
// skip timers inserted during timeout handling (issue #450)
while (t && t->skip)
t = t->next;
if (!t || t->time > 0) break;
// make this timeout the "current" timeout
t->make_current();
// now it is safe for the callback to do add_timeout:
t->callback(t->data);
// release the timer entry
t->release();
// Elapse timers (again) because the callback may have used a
// significant amount of time. This is optional though.
Fl_Timeout::elapse_timeouts();
}
}
}
/**
Returns the delay in seconds until the next timer expires,
limited by \p ttw.
This function calculates the time to wait for the FLTK event queue
processing, depending on the given value \p ttw.
If at least one timer is active and its timeout value is smaller than
\p ttw then this value is returned. Fl::wait() will wait no longer than
until the next timer expires.
If no timer is active this returns the input value \p ttw unchanged.
If at least one timer is expired this returns 0.0 so the event processing
does not wait.
\param[in] ttw time to wait from Fl::wait() etc. (upper limit)
\return delay until next timeout or 0.0 (see description)
*/
double Fl_Timeout::time_to_wait(double ttw) {
Fl_Timeout *t = first_timeout;
if (!t) return ttw;
double tdelay = t->delay();
if (tdelay < 0.0)
return 0.0;
if (tdelay < ttw)
return tdelay;
return ttw;
}
// Write some statistics to stdout for debugging
#if FL_TIMEOUT_DEBUG
void Fl_Timeout::debug(int level) {
printf("\nFl_Timeout::debug: number of allocated timers = %d\n", num_timers);
int active = 0;
Fl_Timeout *t = first_timeout;
while (t) {
active++;
t = t->next;
}
int current = 0;
t = current_timeout;
while (t) {
current++;
t = t->next;
}
int free = 0;
t = free_timeout;
while (t) {
free++;
t = t->next;
}
printf("Fl_Timeout::debug: active: %d, current: %d, free: %d\n\n", active, current, free);
t = first_timeout;
int n = 0;
while (t) {
printf("Active timer %3d: time = %10.6f sec\n", n+1, t->delay());
t = t->next;
n++;
}
} // Fl_Timeout::debug(int)
#endif // FL_TIMEOUT_DEBUG
|