#include <config.h>
#include <stdio.h>
#include "suck_config.h"
#include "timer.h"
#include "phrases.h"
#include "both.h"
#ifdef TIMEOUT
# if TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
# else
# if HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>
# endif
# endif
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef DMALLOC
#include <dmalloc.h>
#endif
/*internal functions */
#ifdef HAVE_GETTIMEOFDAY
double get_elapsed(struct timeval *);
#endif
/*-----------------------------------------------------------*/
#ifdef HAVE_GETTIMEOFDAY
double TimerFunc(int which_function, long nradd, FILE *fpi) {
#else
void TimerFunc(int which_function, long nradd, FILE *fpi) {
#endif
#ifdef HAVE_GETTIMEOFDAY
static struct timeval start;
char strmins[32], strsecs[32], strbps[32];
#endif
static long nrbytes = 0L; /* just in case */
char strbytes[32];
#ifdef HAVE_GETTIMEOFDAY
double elapsed, bps, retval = 0.0;
long mins; /* long so can get mins to exact decimal */
#endif
switch(which_function) {
case TIMER_START:
nrbytes = 0L;
#ifdef HAVE_GETTIMEOFDAY
gettimeofday(&start, NULL);
#endif
break;
case TIMER_ADDBYTES:
nrbytes += nradd;
break;
case TIMER_GET_BPS:
elapsed = get_elapsed(&start);
retval = (elapsed > 0.0) ? nrbytes / elapsed : 0.0;
break;
case TIMER_DISPLAY:
#ifdef HAVE_GETTIMEOFDAY
if(nrbytes > 0) {
elapsed = get_elapsed(&start);
bps = (elapsed > 0.0) ? nrbytes / elapsed : 0.0;
sprintf(strbps,"%.1f", bps);
print_phrases(fpi, timer_phrases[2], strbps, NULL);
}
#endif
break;
case TIMER_TIMEONLY:
#ifdef HAVE_GETTIMEOFDAY
elapsed = get_elapsed(&start);
mins = ((long) elapsed) / 60 ; /* get minutes */
elapsed -= (mins * 60); /* subtract to get remainder */
sprintf(strmins, "%ld", mins);
sprintf(strsecs, "%.2f", elapsed);
print_phrases(fpi, timer_phrases[0], strmins, strsecs, NULL);
#endif
break;
case TIMER_TOTALS:
sprintf(strbytes, "%ld", nrbytes);
#ifdef HAVE_GETTIMEOFDAY
elapsed = get_elapsed(&start);
bps = (elapsed > 0.0 && nrbytes > 0) ? nrbytes / elapsed : 0.0;
mins = ((long) elapsed) / 60 ; /* get minutes */
elapsed -= (mins * 60); /* subtract to get remainder */
sprintf(strmins, "%ld", mins);
sprintf(strsecs, "%.2f", elapsed);
sprintf(strbps, "%.1f", bps);
print_phrases(fpi, timer_phrases[1], strbytes, strmins, strsecs, strbps, NULL);
#else
print_phrases(fpi, timer_phrases[3], strbytes, NULL);
#endif
break;
default:
/* ignore invalid commands */
break;
}
#ifdef HAVE_GETTIMEOFDAY
return retval;
#else
return;
#endif
}
/*-----------------------------------------------------------------------------------*/
#ifdef HAVE_GETTIMEOFDAY
double get_elapsed(struct timeval *start) {
struct timeval curr;
double elapsed;
/* compute elapsed time, in seconds */
gettimeofday(&curr, NULL);
elapsed = curr.tv_sec - start->tv_sec;
elapsed += (((double) (curr.tv_usec - start->tv_usec)) / 1000000.0);
return elapsed;
}
#endif
syntax highlighted by Code2HTML, v. 0.9.1