iperf3-tls/src/timer.c

120 lines
2.0 KiB
C
Raw Normal View History

2009-02-24 06:22:58 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <sys/errno.h>
#include <sys/types.h>
#include <stdint.h>
#include <time.h>
#include "timer.h"
int
timer_expired(struct timer *tp)
{
struct timeval now;
if(gettimeofday(&now, NULL) < 0) {
perror("gettimeofday");
return -1;
}
return tp->end.tv_sec <= now.tv_sec;
}
int
timer_expired_micro(struct timer *tp)
{
struct timeval now;
int64_t diff= 0, current= 0;
if(gettimeofday(&now, NULL) < 0) {
perror("gettimeofday");
return -1;
}
diff+= tp->end.tv_sec * 1000000 ;
diff+= tp->end.tv_usec;
current+= now.tv_sec * 1000000 ;
current+= now.tv_usec;
return diff <= current;
// currently using microsecond limit. Else we need to introduce timespec instread of timeval
}
2009-02-24 06:22:58 +00:00
struct timer *
new_timer(time_t sec, suseconds_t usec)
{
struct timer *tp;
tp = (struct timer *) malloc(sizeof(struct timer));
if(gettimeofday(&tp->begin, NULL) < 0) {
perror("gettimeofday");
return NULL;
}
memcpy(&tp->end, &tp->begin, sizeof(struct timer));
tp->end.tv_sec = tp->begin.tv_sec + (time_t) sec;
tp->end.tv_usec = tp->begin.tv_usec + (time_t) usec;
if( sec != 0)
tp->expired = timer_expired;
else
tp->expired = timer_expired_micro;
2009-02-24 06:22:58 +00:00
return tp;
}
void
free_timer(struct timer *tp)
{
free(tp);
}
int
delay(int64_t ns)
{
struct timespec req, rem;
req.tv_sec = 0;
while(ns >= 1000000000L)
{
ns -= 1000000000L;
req.tv_sec += 1;
}
req.tv_nsec = ns;
while(nanosleep(&req, &rem) == -1 )
if (EINTR == errno)
memcpy(&req, &rem, sizeof rem);
else
return -1;
return 0;
}
double timeval_to_double(struct timeval *tv)
{
double d;
d = tv->tv_sec + tv->tv_usec /1000000;
return d;
}
double timeval_diff(struct timeval *tv0, struct timeval *tv1)
{
return timeval_to_double(tv1) - timeval_to_double(tv0);
}