File: timer.c

package info (click to toggle)
suck 3.10.1-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 728 kB
  • ctags: 727
  • sloc: ansic: 8,357; sh: 585; makefile: 212; java: 144; perl: 24
file content (122 lines) | stat: -rw-r--r-- 2,981 bytes parent folder | download | duplicates (3)
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
#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

/*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