Imported Upstream version 2.6.1
[debian/amanda] / common-src / clock.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1998 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Author: James da Silva, Systems Design and Analysis Group
24  *                         Computer Science Department
25  *                         University of Maryland at College Park
26  */
27 /*
28  * $Id: clock.c,v 1.7 2006/07/27 18:12:10 martinea Exp $
29  *
30  * timing functions
31  */
32 #include "amanda.h"
33
34 #include "clock.h"
35
36 /* local functions */
37 times_t start_time;
38 static int clock_running = 0;
39
40 int
41 clock_is_running(void)
42 {
43     return clock_running;
44 }
45
46 void
47 startclock(void)
48 {
49     clock_running = 1;
50     
51     g_get_current_time(&start_time);
52 }
53
54 times_t
55 stopclock(void)
56 {
57     GTimeVal diff;
58
59     diff = curclock();
60
61     clock_running = 0;
62     return diff;
63 }
64
65 times_t
66 curclock(void)
67 {
68     GTimeVal end_time;
69
70     if(!clock_running) {
71         g_fprintf(stderr,_("curclock botch\n"));
72         exit(1);
73     }
74
75     g_get_current_time(&end_time);
76     return timesub(end_time,start_time);
77 }
78
79 char *
80 walltime_str(
81     times_t     t)
82 {
83     static char str[10][NUM_STR_SIZE+10];
84     static size_t n = 0;
85     char *s;
86
87     /* tv_sec/tv_usec are longs on some systems */
88     g_snprintf(str[n], SIZEOF(str[n]), "%lu.%03lu",
89              (unsigned long)t.tv_sec,
90              (unsigned long)t.tv_usec/1000);
91     s = str[n++];
92     n %= am_countof(str);
93     return s;
94 }
95
96 GTimeVal timesub(GTimeVal end, GTimeVal start) {
97     GTimeVal diff;
98
99     if(end.tv_usec < start.tv_usec) { /* borrow 1 sec */
100         if (end.tv_sec > 0)
101             end.tv_sec -= 1;
102         end.tv_usec += 1000000;
103     }
104     diff.tv_usec = end.tv_usec - start.tv_usec;
105
106     if (end.tv_sec > start.tv_sec)
107         diff.tv_sec = end.tv_sec - start.tv_sec;
108     else
109         diff.tv_sec = 0;
110
111     return diff;
112 }
113
114 GTimeVal timeadd(GTimeVal a, GTimeVal b) {
115     GTimeVal sum;
116
117     sum.tv_sec = a.tv_sec + b.tv_sec;
118     sum.tv_usec = a.tv_usec + b.tv_usec;
119
120     if(sum.tv_usec >= 1000000) {
121         sum.tv_usec -= 1000000;
122         sum.tv_sec += 1;
123     }
124     return sum;
125 }
126
127 double g_timeval_to_double(GTimeVal v) {
128     return v.tv_sec + ((double)v.tv_usec) / G_USEC_PER_SEC;
129 }
130
131 void amanda_gettimeofday(struct timeval * timeval_time) {
132     GTimeVal gtimeval_time;
133
134     g_get_current_time(&gtimeval_time);
135     timeval_time->tv_sec = gtimeval_time.tv_sec;
136     timeval_time->tv_usec = gtimeval_time.tv_usec;
137 }