Newer
Older
/* timers.c
Copyright (C) 1999-2003 Tom Gilbert.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies of the Software and its documentation and acknowledgment shall be
given in the documentation and software packages that this Software was
used.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "feh.h"
#include "options.h"
#include "timers.h"
fehtimer first_timer = NULL;
void feh_handle_timer(void)
fehtimer ft;
if (!first_timer) {
Birte Kristina Friesel
committed
return;
}
ft = first_timer;
first_timer = first_timer->next;
(*(ft->func)) (ft->data);
if (ft && ft->name)
free(ft->name);
if (ft)
free(ft);
Birte Kristina Friesel
committed
return;
double feh_get_time(void)
struct timeval timev;
gettimeofday(&timev, NULL);
Birte Kristina Friesel
committed
return((double) timev.tv_sec + (((double) timev.tv_usec) / 1000000));
void feh_remove_timer_by_data(void *data)
{
fehtimer ft, ptr, pptr;
D(("removing timer for %p\n", data));
pptr = NULL;
ptr = first_timer;
while (ptr) {
D(("Stepping through event list\n"));
ft = ptr;
if (ft->data == data) {
D(("Found it. Removing\n"));
if (pptr)
pptr->next = ft->next;
else
first_timer = ft->next;
if (ft->next)
ft->next->in += ft->in;
if (ft->name)
free(ft->name);
if (ft)
free(ft);
return;
}
pptr = ptr;
ptr = ptr->next;
}
return;
}
static void feh_remove_timer(char *name)
fehtimer ft, ptr, pptr;
pptr = NULL;
ptr = first_timer;
while (ptr) {
ft = ptr;
if (!strcmp(ft->name, name)) {
if (pptr)
pptr->next = ft->next;
else
first_timer = ft->next;
if (ft->next)
ft->next->in += ft->in;
if (ft->name)
free(ft->name);
if (ft)
free(ft);
Birte Kristina Friesel
committed
return;
}
pptr = ptr;
ptr = ptr->next;
}
Birte Kristina Friesel
committed
return;
void feh_add_timer(void (*func) (void *data), void *data, double in, char *name)
fehtimer ft, ptr, pptr;
double tally;
D(("adding timer %s for %f seconds time\n", name, in));
feh_remove_timer(name);
ft = emalloc(sizeof(_fehtimer));
ft->next = NULL;
ft->func = func;
ft->data = data;
ft->name = estrdup(name);
ft->just_added = 1;
ft->in = in;
if (!first_timer) {
first_timer = ft;
} else {
pptr = NULL;
ptr = first_timer;
tally = 0.0;
while (ptr) {
tally += ptr->in;
if (tally > in) {
tally -= ptr->in;
ft->next = ptr;
if (pptr)
pptr->next = ft;
else
first_timer = ft;
ft->in -= tally;
if (ft->next)
ft->next->in -= ft->in;
Birte Kristina Friesel
committed
return;
}
pptr = ptr;
ptr = ptr->next;
}
if (pptr)
pptr->next = ft;
else
first_timer = ft;
ft->in -= tally;
}
Birte Kristina Friesel
committed
return;
void feh_add_unique_timer(void (*func) (void *data), void *data, double in)
static long i = 0;
char evname[20];
snprintf(evname, sizeof(evname), "T_%ld", i);
D(("adding timer with unique name %s\n", evname));
feh_add_timer(func, data, in, evname);
i++;
/* Mega paranoia ;) */
if (i > 1000000)
i = 0;
Birte Kristina Friesel
committed
return;