all repos — tint2 @ 07339c09a00ca13b922e20900123a77711cf1647

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/util/timer.c (raw)

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
/**************************************************************************
*
* Copyright (C) 2009 Andreas.Fink (Andreas.Fink85@gmail.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
**************************************************************************/

#include <time.h>
#include <sys/time.h>
#include <stdlib.h>
#include <stdio.h>

#include "timer.h"

GSList *timeout_list;
struct timeval next_timeout;
GHashTable *multi_timeouts;

// functions and structs for multi timeouts
typedef struct {
    int current_count;
    int count_to_expiration;
} multi_timeout;

typedef struct {
    GSList *timeout_list;
    timeout *parent_timeout;
} multi_timeout_handler;

struct _timeout {
    int interval_msec;
    struct timespec timeout_expires;
    void (*_callback)(void *);
    void *arg;
    multi_timeout *multi_timeout;
    timeout **self;
    gboolean expired;
};

void add_timeout_intern(int value_msec, int interval_msec, void (*_callback)(void *), void *arg, timeout *t);
gint compare_timeouts(gconstpointer t1, gconstpointer t2);
int timespec_subtract(struct timespec *result, struct timespec *x, struct timespec *y);

int align_with_existing_timeouts(timeout *t);
void create_multi_timeout(timeout *t1, timeout *t2);
void append_multi_timeout(timeout *t1, timeout *t2);
int calc_multi_timeout_interval(multi_timeout_handler *mth);
void update_multi_timeout_values(multi_timeout_handler *mth);
void callback_multi_timeout(void *mth);
void remove_from_multi_timeout(timeout *t);
void stop_multi_timeout(timeout *t);

void default_timeout()
{
    timeout_list = NULL;
    multi_timeouts = NULL;
}

void cleanup_timeout()
{
    while (timeout_list) {
        timeout *t = timeout_list->data;
        if (t->multi_timeout)
            stop_multi_timeout(t);
        if (t->self)
            *t->self = NULL;
        free(t);
        timeout_list = g_slist_remove(timeout_list, t);
    }
    if (multi_timeouts) {
        g_hash_table_destroy(multi_timeouts);
        multi_timeouts = NULL;
    }
}

int gettime(struct timespec *tp)
{
    // CLOCK_BOOTTIME under Linux is the same as CLOCK_MONOTONIC under *BSD.
#ifdef CLOCK_BOOTTIME
    return clock_gettime(CLOCK_BOOTTIME, tp);
#else
    return clock_gettime(CLOCK_MONOTONIC, tp);
#endif
}

// Implementation notes for timeouts
//
// The timeouts are kept in a GSList sorted by their expiration time.
// That means that update_next_timeout() only have to consider the first timeout in the list,
// and callback_timeout_expired() only have to consider the timeouts as long as the expiration time
// is in the past to the current time.
// As time measurement we use clock_gettime(CLOCK_MONOTONIC) because this refers to a timer, which
// reference point lies somewhere in the past and cannot be changed, but just queried.
// If a single shot timer is installed it will be automatically deleted. I.e. the returned value
// of add_timeout will not be valid anymore. You do not need to call stop_timeout for these timeouts,
// however it's save to call it.

timeout *add_timeout(int value_msec, int interval_msec, void (*_callback)(void *), void *arg, timeout **self)
{
    if (self && *self && !(*self)->expired)
        return *self;
    timeout *t = calloc(1, sizeof(timeout));
    t->self = self;
    add_timeout_intern(value_msec, interval_msec, _callback, arg, t);
    return t;
}

void change_timeout(timeout **t, int value_msec, int interval_msec, void (*_callback)(), void *arg)
{
    if (!((timeout_list && g_slist_find(timeout_list, *t)) ||
          (multi_timeouts && g_hash_table_lookup(multi_timeouts, *t))))
        *t = add_timeout(value_msec, interval_msec, _callback, arg, t);
    else {
        if ((*t)->multi_timeout)
            remove_from_multi_timeout(*t);
        else
            timeout_list = g_slist_remove(timeout_list, *t);
        add_timeout_intern(value_msec, interval_msec, _callback, arg, *t);
    }
}

struct timeval *get_next_timeout()
{
    if (timeout_list) {
        timeout *t = timeout_list->data;
        struct timespec cur_time;
        struct timespec next_timeout2 = {.tv_sec = next_timeout.tv_sec, .tv_nsec = next_timeout.tv_usec * 1000};
        gettime(&cur_time);
        if (timespec_subtract(&next_timeout2, &t->timeout_expires, &cur_time)) {
            next_timeout.tv_sec = 0;
            next_timeout.tv_usec = 0;
        } else {
            next_timeout.tv_sec = next_timeout2.tv_sec;
            next_timeout.tv_usec = next_timeout2.tv_nsec / 1000;
        }
    } else
        next_timeout.tv_sec = -1;
    return (next_timeout.tv_sec >= 0 && next_timeout.tv_usec >= 0) ? &next_timeout : NULL;
}

void handle_expired_timers()
{
    struct timespec cur_time;
    timeout *t;
    while (timeout_list) {
        gettime(&cur_time);
        t = timeout_list->data;
        if (compare_timespecs(&t->timeout_expires, &cur_time) <= 0) {
            // it's time for the callback function
            t->expired = t->interval_msec == 0;
            t->_callback(t->arg);
            // If _callback() calls stop_timeout(t) the timer 't' was freed and is not in the timeout_list
            if (g_slist_find(timeout_list, t)) {
                // Timer still exists
                timeout_list = g_slist_remove(timeout_list, t);
                if (t->interval_msec > 0) {
                    add_timeout_intern(t->interval_msec, t->interval_msec, t->_callback, t->arg, t);
                } else {
                    // Destroy single-shot timer
                    if (t->self)
                        *t->self = NULL;
                    free(t);
                }
            }
        } else {
            return;
        }
    }
}

void stop_timeout(timeout *t)
{
    if (!t)
        return;
    // if not in the list, it was deleted in callback_timeout_expired
    if ((timeout_list && g_slist_find(timeout_list, t)) || (multi_timeouts && g_hash_table_lookup(multi_timeouts, t))) {
        if (multi_timeouts && t->multi_timeout)
            remove_from_multi_timeout(t);
        if (timeout_list)
            timeout_list = g_slist_remove(timeout_list, t);
        if (t->self)
            *t->self = NULL;
        free(t);
    }
}

void add_timeout_intern(int value_msec, int interval_msec, void (*_callback)(), void *arg, timeout *t)
{
    t->interval_msec = interval_msec;
    t->_callback = _callback;
    t->arg = arg;
    struct timespec cur_time;
    gettime(&cur_time);
    t->timeout_expires = add_msec_to_timespec(cur_time, value_msec);

    int can_align = 0;
    if (interval_msec > 0 && !t->multi_timeout)
        can_align = align_with_existing_timeouts(t);
    if (!can_align)
        timeout_list = g_slist_insert_sorted(timeout_list, t, compare_timeouts);
}

gint compare_timeouts(gconstpointer t1, gconstpointer t2)
{
    return compare_timespecs(&((const timeout *)t1)->timeout_expires, &((const timeout *)t2)->timeout_expires);
}

gint compare_timespecs(const struct timespec *t1, const struct timespec *t2)
{
    if (t1->tv_sec < t2->tv_sec)
        return -1;
    else if (t1->tv_sec == t2->tv_sec) {
        if (t1->tv_nsec < t2->tv_nsec)
            return -1;
        else if (t1->tv_nsec == t2->tv_nsec)
            return 0;
        else
            return 1;
    } else
        return 1;
}

int timespec_subtract(struct timespec *result, struct timespec *x, struct timespec *y)
{
    /* Perform the carry for the later subtraction by updating y. */
    if (x->tv_nsec < y->tv_nsec) {
        int nsec = (y->tv_nsec - x->tv_nsec) / 1000000000 + 1;
        y->tv_nsec -= 1000000000 * nsec;
        y->tv_sec += nsec;
    }
    if (x->tv_nsec - y->tv_nsec > 1000000000) {
        int nsec = (x->tv_nsec - y->tv_nsec) / 1000000000;
        y->tv_nsec += 1000000000 * nsec;
        y->tv_sec -= nsec;
    }

    /* Compute the time remaining to wait. tv_nsec is certainly positive. */
    result->tv_sec = x->tv_sec - y->tv_sec;
    result->tv_nsec = x->tv_nsec - y->tv_nsec;

    /* Return 1 if result is negative. */
    return x->tv_sec < y->tv_sec;
}

struct timespec add_msec_to_timespec(struct timespec ts, int msec)
{
    ts.tv_sec += msec / 1000;
    ts.tv_nsec += (msec % 1000) * 1000000;
    if (ts.tv_nsec >= 1000000000) { // 10^9
        ts.tv_sec++;
        ts.tv_nsec -= 1000000000;
    }
    return ts;
}

int align_with_existing_timeouts(timeout *t)
{
    GSList *it = timeout_list;
    while (it) {
        timeout *t2 = it->data;
        if (t2->interval_msec > 0) {
            if (t->interval_msec % t2->interval_msec == 0 || t2->interval_msec % t->interval_msec == 0) {
                if (!multi_timeouts)
                    multi_timeouts = g_hash_table_new(0, 0);
                if (!t->multi_timeout && !t2->multi_timeout) {
                    // both timeouts can be aligned, but there is no multi timeout for them
                    create_multi_timeout(t, t2);
                } else {
                    // there is already a multi timeout, so we append the new timeout to the multi timeout
                    append_multi_timeout(t, t2);
                }
                return 1;
            }
        }
        it = it->next;
    }
    return 0;
}

int calc_multi_timeout_interval(multi_timeout_handler *mth)
{
    GSList *it = mth->timeout_list;
    timeout *t = it->data;
    int min_interval = t->interval_msec;
    it = it->next;
    while (it) {
        t = it->data;
        if (t->interval_msec < min_interval)
            min_interval = t->interval_msec;
        it = it->next;
    }
    return min_interval;
}

void create_multi_timeout(timeout *t1, timeout *t2)
{
    multi_timeout *mt1 = calloc(1, sizeof(multi_timeout));
    multi_timeout *mt2 = calloc(1, sizeof(multi_timeout));
    multi_timeout_handler *mth = calloc(1, sizeof(multi_timeout_handler));
    timeout *real_timeout = calloc(1, sizeof(timeout));

    mth->timeout_list = 0;
    mth->timeout_list = g_slist_prepend(mth->timeout_list, t1);
    mth->timeout_list = g_slist_prepend(mth->timeout_list, t2);
    mth->parent_timeout = real_timeout;

    g_hash_table_insert(multi_timeouts, t1, mth);
    g_hash_table_insert(multi_timeouts, t2, mth);
    g_hash_table_insert(multi_timeouts, real_timeout, mth);

    t1->multi_timeout = mt1;
    t2->multi_timeout = mt2;
    // set real_timeout->multi_timeout to something, such that we see in add_timeout_intern that
    // it is already a multi_timeout (we never use it, except of checking for 0 ptr)
    real_timeout->multi_timeout = (void *)real_timeout;

    timeout_list = g_slist_remove(timeout_list, t1);
    timeout_list = g_slist_remove(timeout_list, t2);

    update_multi_timeout_values(mth);
}

void append_multi_timeout(timeout *t1, timeout *t2)
{
    if (t2->multi_timeout) {
        // swap t1 and t2 such that t1 is the multi timeout
        timeout *tmp = t2;
        t2 = t1;
        t1 = tmp;
    }

    multi_timeout *mt = calloc(1, sizeof(multi_timeout));
    multi_timeout_handler *mth = g_hash_table_lookup(multi_timeouts, t1);

    mth->timeout_list = g_slist_prepend(mth->timeout_list, t2);
    g_hash_table_insert(multi_timeouts, t2, mth);

    t2->multi_timeout = mt;

    update_multi_timeout_values(mth);
}

void update_multi_timeout_values(multi_timeout_handler *mth)
{
    int interval = calc_multi_timeout_interval(mth);
    int next_timeout_msec = interval;

    struct timespec cur_time;
    gettime(&cur_time);

    GSList *it = mth->timeout_list;
    struct timespec diff_time;
    while (it) {
        timeout *t = it->data;
        t->multi_timeout->count_to_expiration = t->interval_msec / interval;
        timespec_subtract(&diff_time, &t->timeout_expires, &cur_time);
        int msec_to_expiration = diff_time.tv_sec * 1000 + diff_time.tv_nsec / 1000000;
        int count_left = msec_to_expiration / interval + (msec_to_expiration % interval != 0);
        t->multi_timeout->current_count = t->multi_timeout->count_to_expiration - count_left;
        if (msec_to_expiration < next_timeout_msec)
            next_timeout_msec = msec_to_expiration;
        it = it->next;
    }

    mth->parent_timeout->interval_msec = interval;
    timeout_list = g_slist_remove(timeout_list, mth->parent_timeout);
    add_timeout_intern(next_timeout_msec, interval, callback_multi_timeout, mth, mth->parent_timeout);
}

void callback_multi_timeout(void *arg)
{
    multi_timeout_handler *mth = arg;
    struct timespec cur_time;
    gettime(&cur_time);
    GSList *it = mth->timeout_list;
    while (it) {
        GSList *next = it->next;
        timeout *t = it->data;
        if (++t->multi_timeout->current_count >= t->multi_timeout->count_to_expiration) {
            t->_callback(t->arg);
            if (multi_timeouts && g_hash_table_lookup(multi_timeouts, t)) {
                // Timer still exists
                t->multi_timeout->current_count = 0;
                t->timeout_expires = add_msec_to_timespec(cur_time, t->interval_msec);
            } else {
                return;
            }
        }
        it = next;
    }
}

void remove_from_multi_timeout(timeout *t)
{
    multi_timeout_handler *mth = g_hash_table_lookup(multi_timeouts, t);
    g_hash_table_remove(multi_timeouts, t);

    mth->timeout_list = g_slist_remove(mth->timeout_list, t);
    free(t->multi_timeout);
    t->multi_timeout = 0;

    if (g_slist_length(mth->timeout_list) == 1) {
        timeout *last_timeout = mth->timeout_list->data;
        mth->timeout_list = g_slist_remove(mth->timeout_list, last_timeout);
        free(last_timeout->multi_timeout);
        last_timeout->multi_timeout = 0;
        g_hash_table_remove(multi_timeouts, last_timeout);
        g_hash_table_remove(multi_timeouts, mth->parent_timeout);
        mth->parent_timeout->multi_timeout = 0;
        stop_timeout(mth->parent_timeout);
        free(mth);

        struct timespec cur_time, diff_time;
        gettime(&cur_time);
        timespec_subtract(&diff_time, &t->timeout_expires, &cur_time);
        int msec_to_expiration = diff_time.tv_sec * 1000 + diff_time.tv_nsec / 1000000;
        add_timeout_intern(msec_to_expiration,
                           last_timeout->interval_msec,
                           last_timeout->_callback,
                           last_timeout->arg,
                           last_timeout);
    } else
        update_multi_timeout_values(mth);
}

void stop_multi_timeout(timeout *t)
{
    multi_timeout_handler *mth = g_hash_table_lookup(multi_timeouts, t);
    g_hash_table_remove(multi_timeouts, mth->parent_timeout);
    while (mth->timeout_list) {
        timeout *t1 = mth->timeout_list->data;
        mth->timeout_list = g_slist_remove(mth->timeout_list, t1);
        g_hash_table_remove(multi_timeouts, t1);
        free(t1->multi_timeout);
        free(t1);
    }
    free(mth);
}

double profiling_get_time_old_time = 0;

double get_time()
{
    struct timespec cur_time;
    gettime(&cur_time);
    return cur_time.tv_sec + cur_time.tv_nsec * 1.0e-9;
}

double profiling_get_time()
{
    double t = get_time();
    if (profiling_get_time_old_time == 0)
        profiling_get_time_old_time = t;
    double delta = t - profiling_get_time_old_time;
    profiling_get_time_old_time = t;
    return delta;
}