[go: up one dir, main page]

File: meter.c

package info (click to toggle)
cook 2.25-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,816 kB
  • ctags: 4,036
  • sloc: ansic: 50,692; sh: 13,734; makefile: 4,528; yacc: 3,168; perl: 224; awk: 219
file content (160 lines) | stat: -rw-r--r-- 3,201 bytes parent folder | download | duplicates (2)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
 *	cook - file construction tool
 *	Copyright (C) 2003 Peter Miller;
 *	All rights reserved.
 *
 *	This program is free software; you can redistribute it and/or modify
 *	it under the terms of the GNU General Public License as published by
 *	the Free Software Foundation; either version 2 of the License, or
 *	(at your option) any later version.
 *
 *	This program is distributed in the hope that it will be useful,
 *	but WITHOUT ANY WARRANTY; without even the implied warranty of
 *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *	GNU General Public License for more details.
 *
 *	You should have received a copy of the GNU General Public License
 *	along with this program; if not, write to the Free Software
 *	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
 *
 * MANIFEST: functions to manipulate meters
 */

#include <ac/stdio.h>
#include <ac/string.h>

#include <mem.h>
#include <meter.h>


meter_ty *
meter_alloc()
{
    meter_ty        *result;

    result = mem_alloc(sizeof(meter_ty));
    memset(result, 0, sizeof(*result));
    return result;
}


void
meter_free(mp)
    meter_ty        *mp;
{
    mem_free(mp);
}


/*
 * NAME
 *    meter_ptime - print timing info
 *
 * SYNOPSIS
 *    void meter_ptime(double t, char *s);
 *
 * DESCRIPTION
 *    The meter_ptime function is used to print e representation of the
 *    time, in seconds, given in the `t' argument.  The `s' argument is a
 *    title string.
 */

static void meter_ptime _((double, char *, double));

static void
meter_ptime(t, s, elapsed)
    double          t;
    char            *s;
    double          elapsed;
{
    long            hour;
    long            min;
    long            sec;
    long            frac;
    char            buffer[50];

    if (elapsed > 0)
	sprintf(buffer, " %5.1f%%", 100. * t / elapsed);
    else
	buffer[0] = 0;

    frac = t * 1000 + 0.5;
    sec = frac / 1000;
    frac %= 1000;
    min = sec / 60;
    sec %= 60;
    hour = min / 60;
    min %= 60;
    fprintf
    (
	stderr,
	"%2ld:%02ld:%02ld.%03ld %s%s\n",
	hour,
	min,
	sec,
	frac,
	s,
	buffer
    );
}


#define timeval2double(tv) ((tv).tv_sec + (tv).tv_usec * 1.0e-6)

/*
 * NAME
 *    meter_print - end a metering interval
 *
 * SYNOPSIS
 *    void meter_print(struct rusage *);
 *
 * DESCRIPTION
 *    The meter_end function is used to end a metering interval and print
 *    the metered information.
 */

void
meter_print(mp)
    meter_ty        *mp;
{
    double          elapsed;
#ifdef HAVE_WAIT3
    double          usr;
    double          sys;
#endif

#ifdef HAVE_GETTIMEOFDAY
    {
	struct timeval  tv;

	gettimeofday(&tv, 0);
	elapsed = timeval2double(tv) - timeval2double(mp->start);
    }
#else
    {
	time_t          now;

	time(&now);
	elapsed = now - mp->start;
    }
#endif
    meter_ptime(elapsed, "elapsed", 0);
#ifdef HAVE_WAIT3
    usr = timeval2double(mp->ru.ru_utime);
    meter_ptime(usr, "usr", elapsed);
    sys = timeval2double(mp->ru.ru_stime);
    meter_ptime(sys, "sys", elapsed);
#endif /* HAVE_WAIT3 */
}


void
meter_begin(mp)
    meter_ty        *mp;
{
#ifdef HAVE_GETTIMEOFDAY
    gettimeofday(&mp->start, 0);
#else
    time(&mp->start);
#endif
}