1998-04-22 12:58:34 +00:00
|
|
|
/*
|
1998-05-24 14:40:29 +00:00
|
|
|
* BIRD -- Unix Timers
|
1998-04-22 12:58:34 +00:00
|
|
|
*
|
|
|
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_TIMER_H_
|
|
|
|
#define _BIRD_TIMER_H_
|
|
|
|
|
2001-03-06 13:40:39 +00:00
|
|
|
#include <time.h>
|
1998-05-24 14:40:29 +00:00
|
|
|
|
1998-04-28 14:39:34 +00:00
|
|
|
#include "lib/resource.h"
|
1998-04-22 12:58:34 +00:00
|
|
|
|
2016-05-27 00:40:17 +00:00
|
|
|
/* Microsecond time */
|
|
|
|
|
|
|
|
typedef s64 btime;
|
|
|
|
|
|
|
|
#define S_ *1000000
|
|
|
|
#define MS_ *1000
|
|
|
|
#define US_ *1
|
|
|
|
#define NS_ /1000
|
|
|
|
|
|
|
|
#define TO_S /1000000
|
|
|
|
#define TO_MS /1000
|
|
|
|
#define TO_US /1
|
|
|
|
#define TO_NS *1000
|
|
|
|
|
|
|
|
#ifndef PARSER
|
|
|
|
#define S S_
|
|
|
|
#define MS MS_
|
|
|
|
#define US US_
|
|
|
|
#define NS NS_
|
|
|
|
#endif
|
|
|
|
|
1998-05-24 14:40:29 +00:00
|
|
|
typedef time_t bird_clock_t; /* Use instead of time_t */
|
|
|
|
|
1998-04-22 12:58:34 +00:00
|
|
|
typedef struct timer {
|
1998-05-24 14:40:29 +00:00
|
|
|
resource r;
|
|
|
|
void (*hook)(struct timer *);
|
|
|
|
void *data;
|
|
|
|
unsigned randomize; /* Amount of randomization */
|
1998-05-26 21:46:38 +00:00
|
|
|
unsigned recurrent; /* Timer recurrence */
|
1998-05-24 14:40:29 +00:00
|
|
|
node n; /* Internal link */
|
2016-05-27 00:40:17 +00:00
|
|
|
btime expires_btime; /* 0=inactive */
|
|
|
|
bird_clock_t expires; /* == expires_btime TO_S */
|
1998-04-22 12:58:34 +00:00
|
|
|
} timer;
|
|
|
|
|
1998-05-24 14:40:29 +00:00
|
|
|
timer *tm_new(pool *);
|
1998-04-22 12:58:34 +00:00
|
|
|
void tm_start(timer *, unsigned after);
|
2016-05-27 00:40:17 +00:00
|
|
|
void tm_start_btime(timer *, btime after);
|
1998-04-22 12:58:34 +00:00
|
|
|
void tm_stop(timer *);
|
1998-05-24 14:40:29 +00:00
|
|
|
void tm_dump_all(void);
|
|
|
|
|
2012-04-15 13:28:29 +00:00
|
|
|
extern bird_clock_t now; /* Relative, monotonic time in seconds */
|
2016-05-27 00:40:17 +00:00
|
|
|
extern btime now_btime; /* dtto in microseconds */
|
2012-04-15 13:28:29 +00:00
|
|
|
extern bird_clock_t now_real; /* Time in seconds since fixed known epoch */
|
2012-12-26 11:40:48 +00:00
|
|
|
extern bird_clock_t boot_time;
|
2012-04-15 13:28:29 +00:00
|
|
|
|
2016-05-27 00:40:17 +00:00
|
|
|
|
2014-11-03 09:42:55 +00:00
|
|
|
static inline int
|
|
|
|
tm_active(timer *t)
|
|
|
|
{
|
2016-05-27 00:40:17 +00:00
|
|
|
return t->expires_btime != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline btime
|
|
|
|
tm_remains_btime(timer *t)
|
|
|
|
{
|
|
|
|
return t->expires_btime ? t->expires_btime - now_btime : 0;
|
2014-11-03 09:42:55 +00:00
|
|
|
}
|
|
|
|
|
2012-04-15 13:28:29 +00:00
|
|
|
static inline bird_clock_t
|
|
|
|
tm_remains(timer *t)
|
|
|
|
{
|
2016-05-27 00:40:17 +00:00
|
|
|
return tm_remains_btime(t) TO_S;
|
2012-04-15 13:28:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2016-05-27 00:40:17 +00:00
|
|
|
tm_start_max_btime(timer *t, btime after)
|
2012-04-15 13:28:29 +00:00
|
|
|
{
|
2016-05-27 00:40:17 +00:00
|
|
|
btime rem = tm_remains_btime(t);
|
2012-04-15 13:28:29 +00:00
|
|
|
tm_start(t, (rem > after) ? rem : after);
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:40:17 +00:00
|
|
|
static inline void
|
|
|
|
tm_start_min_btime(timer *t, btime after)
|
|
|
|
{
|
|
|
|
btime rem = tm_remains_btime(t);
|
|
|
|
if (!rem || after < rem)
|
|
|
|
tm_start(t, after);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
tm_start_max(timer *t, unsigned after)
|
|
|
|
{
|
|
|
|
tm_start_max_btime(t, after S_);
|
|
|
|
}
|
|
|
|
|
2011-07-07 15:43:39 +00:00
|
|
|
static inline timer *
|
|
|
|
tm_new_set(pool *p, void (*hook)(struct timer *), void *data, unsigned rand, unsigned rec)
|
|
|
|
{
|
|
|
|
timer *t = tm_new(p);
|
|
|
|
t->hook = hook;
|
|
|
|
t->data = data;
|
|
|
|
t->randomize = rand;
|
|
|
|
t->recurrent = rec;
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
1998-04-22 12:58:34 +00:00
|
|
|
|
2010-02-02 23:19:24 +00:00
|
|
|
struct timeformat {
|
|
|
|
char *fmt1, *fmt2;
|
|
|
|
bird_clock_t limit;
|
|
|
|
};
|
|
|
|
|
1999-08-03 19:29:27 +00:00
|
|
|
bird_clock_t tm_parse_date(char *); /* Convert date to bird_clock_t */
|
2005-02-14 11:58:46 +00:00
|
|
|
bird_clock_t tm_parse_datetime(char *); /* Convert date to bird_clock_t */
|
2010-02-02 23:19:24 +00:00
|
|
|
|
|
|
|
#define TM_DATETIME_BUFFER_SIZE 32 /* Buffer size required by tm_format_datetime */
|
|
|
|
void
|
|
|
|
tm_format_datetime(char *x, struct timeformat *fmt_spec, bird_clock_t t);
|
1999-08-03 19:29:27 +00:00
|
|
|
|
1999-11-30 14:01:39 +00:00
|
|
|
#ifdef TIME_T_IS_64BIT
|
|
|
|
#define TIME_INFINITY 0x7fffffffffffffff
|
|
|
|
#else
|
|
|
|
#ifdef TIME_T_IS_SIGNED
|
|
|
|
#define TIME_INFINITY 0x7fffffff
|
|
|
|
#else
|
|
|
|
#define TIME_INFINITY 0xffffffff
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-05-27 00:40:17 +00:00
|
|
|
#define BTIME_INFINITY 0x7fffffffffffffff
|
|
|
|
|
1998-04-22 12:58:34 +00:00
|
|
|
#endif
|