switch 'rm' command away from using Jim
[fw/openocd] / src / helper / time_support.c
1 /***************************************************************************
2  *   Copyright (C) 2006 by Dominic Rath                                    *
3  *   Dominic.Rath@gmx.de                                                   *
4  *                                                                         *
5  *   Copyright (C) 2007,2008 Ã˜yvind Harboe                                 *
6  *   oyvind.harboe@zylin.com                                               *
7  *                                                                         *
8  *   Copyright (C) 2008 by Spencer Oliver                                  *
9  *   spen@spen-soft.co.uk                                                  *
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  *   This program is distributed in the hope that it will be useful,       *
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
19  *   GNU General Public License for more details.                          *
20  *                                                                         *
21  *   You should have received a copy of the GNU General Public License     *
22  *   along with this program; if not, write to the                         *
23  *   Free Software Foundation, Inc.,                                       *
24  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
25  ***************************************************************************/
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include "time_support.h"
31
32
33 /* calculate difference between two struct timeval values */
34 int timeval_subtract(struct timeval *result, struct timeval *x, struct timeval *y)
35 {
36         if (x->tv_usec < y->tv_usec)
37         {
38                 int nsec = (y->tv_usec - x->tv_usec) / 1000000 + 1;
39                 y->tv_usec -= 1000000 * nsec;
40                 y->tv_sec += nsec;
41         }
42         if (x->tv_usec - y->tv_usec > 1000000) {
43                 int nsec = (x->tv_usec - y->tv_usec) / 1000000;
44                 y->tv_usec += 1000000 * nsec;
45                 y->tv_sec -= nsec;
46         }
47
48         result->tv_sec = x->tv_sec - y->tv_sec;
49         result->tv_usec = x->tv_usec - y->tv_usec;
50
51         /* Return 1 if result is negative. */
52         return x->tv_sec < y->tv_sec;
53 }
54
55 /* add two struct timeval values */
56 int timeval_add(struct timeval *result, struct timeval *x, struct timeval *y)
57 {
58         memcpy(result, x, sizeof(struct timeval));
59         return timeval_add_time(result, y->tv_sec, y->tv_usec);
60 }
61
62 int timeval_add_time(struct timeval *result, long sec, long usec)
63 {
64         result->tv_sec += sec;
65         result->tv_usec += usec;
66
67         while (result->tv_usec > 1000000)
68         {
69                 result->tv_usec -= 1000000;
70                 result->tv_sec++;
71         }
72
73         return 0;
74 }
75
76 int64_t timeval_ms()
77 {
78         struct timeval now;
79         int retval = gettimeofday(&now, NULL);
80         if (retval < 0)
81                 return retval;
82         return (int64_t)now.tv_sec * 1000 + now.tv_usec / 1000;
83 }
84
85
86 int duration_start(struct duration *duration)
87 {
88         return gettimeofday(&duration->start, NULL);
89 }
90
91 int duration_measure(struct duration *duration)
92 {
93         struct timeval end;
94         int retval = gettimeofday(&end, NULL);
95         if (0 == retval)
96                 timeval_subtract(&duration->elapsed, &end, &duration->start);
97         return retval;
98 }
99
100 float duration_elapsed(struct duration *duration)
101 {
102         float t = duration->elapsed.tv_sec;
103         t += (float)duration->elapsed.tv_usec / 1000000.0;
104         return t;
105 }
106
107 float duration_kbps(struct duration *duration, size_t count)
108 {
109         return count / (1024.0 * duration_elapsed(duration));
110 }