]> git.tuebingen.mpg.de Git - dss.git/blob - tv.c
b0acc79c30a58ca0843bbe5c8956dd038d8bcdc5
[dss.git] / tv.c
1 /*
2  * Copyright (C) 2005-2010 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 #include <sys/time.h>
8 #include <time.h>
9 #include <inttypes.h>
10 #include <assert.h>
11 #include <string.h>
12
13 #include "gcc-compat.h"
14 #include "err.h"
15 #include "str.h"
16 #include "log.h"
17
18 /**
19  * Convert struct timeval to milliseconds.
20  *
21  * \param tv The time value value to convert.
22  *
23  * \return The number off milliseconds in \a tv.
24  */
25 long unsigned tv2ms(const struct timeval *tv)
26 {
27         return tv->tv_sec * 1000 + (tv->tv_usec + 500)/ 1000;
28 }
29
30 /**
31  * Convert milliseconds to a struct timeval.
32  *
33  * \param n The number of milliseconds.
34  * \param tv Result pointer.
35  */
36 void ms2tv(long unsigned n, struct timeval *tv)
37 {
38         tv->tv_sec = n / 1000;
39         tv->tv_usec = (n % 1000) * 1000;
40 }
41
42 /**
43  * Convert a double to a struct timeval.
44  *
45  * \param x The value to convert.
46  * \param tv Result pointer.
47  */
48 void d2tv(double x, struct timeval *tv)
49 {
50         tv->tv_sec = x;
51         tv->tv_usec = (x - (double)tv->tv_sec) * 1000.0 * 1000.0 + 0.5;
52 }
53
54 /**
55  * Compute the difference of two time values.
56  *
57  * \param b Minuend.
58  * \param a Subtrahend.
59  * \param diff Result pointer.
60  *
61  * If \a diff is not \p NULL, it contains the absolute value |\a b - \a a| on
62  * return.
63  *
64  * \return If \a b < \a a, this function returns -1, otherwise it returns 1.
65  */
66 int tv_diff(const struct timeval *b, const struct timeval *a, struct timeval *diff)
67 {
68         int ret = 1;
69
70         if ((b->tv_sec < a->tv_sec) ||
71                 ((b->tv_sec == a->tv_sec) && (b->tv_usec < a->tv_usec))) {
72                 const struct timeval *tmp = a;
73                 a = b;
74                 b = tmp;
75                 ret = -1;
76         }
77         if (!diff)
78                 return ret;
79         diff->tv_sec = b->tv_sec - a->tv_sec;
80         if (b->tv_usec < a->tv_usec) {
81                 diff->tv_sec--;
82                 diff->tv_usec = 1000 * 1000 - a->tv_usec + b->tv_usec;
83         } else
84                 diff->tv_usec = b->tv_usec - a->tv_usec;
85         return ret;
86 }
87
88 /**
89  * Add two time values.
90  *
91  * \param a First addend.
92  * \param b Second addend.
93  * \param sum Contains the sum \a + \a b on return.
94  */
95 void tv_add(const struct timeval *a, const struct timeval *b,
96         struct timeval *sum)
97 {
98         sum->tv_sec = a->tv_sec + b->tv_sec;
99         if (a->tv_usec + b->tv_usec >= 1000 * 1000) {
100                 sum->tv_sec++;
101                 sum->tv_usec = a->tv_usec + b->tv_usec - 1000 * 1000;
102         } else
103                 sum->tv_usec = a->tv_usec + b->tv_usec;
104 }
105
106 /**
107  * Compute integer multiple of given struct timeval.
108  *
109  * \param mult The integer value to multiply with.
110  * \param tv The timevalue to multiply.
111  *
112  * \param result Contains \a mult * \a tv on return.
113  */
114 void tv_scale(const unsigned long mult, const struct timeval *tv,
115         struct timeval *result)
116 {
117         result->tv_sec = mult * tv->tv_sec;
118         result->tv_sec += tv->tv_usec * mult / 1000 / 1000;
119         result->tv_usec = tv->tv_usec * mult % (1000 * 1000);
120 }
121
122 /**
123  * Compute a fraction of given struct timeval.
124  *
125  * \param divisor The integer value to divide by.
126  * \param tv The timevalue to divide.
127  * \param result Contains (1 / mult) * tv on return.
128  */
129 void tv_divide(const unsigned long divisor, const struct timeval *tv,
130         struct timeval *result)
131 {
132         uint64_t x = ((uint64_t)tv->tv_sec * 1000 * 1000 + tv->tv_usec) / divisor;
133
134         result->tv_sec = x / 1000 / 1000;
135         result->tv_usec = x % (1000 * 1000);
136 }
137
138 int64_t get_current_time(void)
139 {
140         time_t now;
141         time(&now);
142         DSS_DEBUG_LOG("now: %jd\n", (intmax_t)now);
143         return (int64_t)now;
144 }