Replace void *row by struct osl_row *row.
[paraslash.git] / time.c
1 /*
2  * Copyright (C) 2005-2007 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 #include "para.h"
8 /** \file time.c Helper functions for dealing with time values. */
9
10 /**
11  * Convert struct timeval to milliseconds.
12  *
13  * \param tv The time value value to convert.
14  *
15  * \return The number off milliseconds in \a tv.
16  */
17 long unsigned tv2ms(const struct timeval *tv)
18 {
19         return tv->tv_sec * 1000 + (tv->tv_usec + 500)/ 1000;
20 }
21
22 /**
23  * Convert milliseconds to a struct timeval.
24  *
25  * \param n The number of milliseconds.
26  * \param tv Result pointer.
27  */
28 void ms2tv(long unsigned n, struct timeval *tv)
29 {
30         tv->tv_sec = n / 1000;
31         tv->tv_usec = (n % 1000) * 1000;
32 }
33
34 /**
35  * Convert a double to a struct timeval.
36  *
37  * \param x The value to convert.
38  * \param tv Result pointer.
39  */
40 void d2tv(double x, struct timeval *tv)
41 {
42         tv->tv_sec = x;
43         tv->tv_usec = (x - (double)tv->tv_sec) * 1000.0 * 1000.0 + 0.5;
44 }
45
46 /**
47  * Compute the difference of two time values.
48  *
49  * \param b Minuend.
50  * \param a Subtrahend.
51  * \param diff Result pointer.
52  *
53  * If \a diff is not \p NULL, it contains the absolute value |\a b - \a a| on
54  * return.
55  *
56  * \return If \a b < \a, this function returns -1, otherwise it returns 1.
57  */
58 int tv_diff(const struct timeval *b, const struct timeval *a, struct timeval *diff)
59 {
60         int ret = 1;
61
62         if ((b->tv_sec < a->tv_sec) ||
63                 ((b->tv_sec == a->tv_sec) && (b->tv_usec < a->tv_usec))) {
64                 const struct timeval *tmp = a;
65                 a = b;
66                 b = tmp;
67                 ret = -1;
68         }
69         if (!diff)
70                 return ret;
71         diff->tv_sec = b->tv_sec - a->tv_sec;
72         if (b->tv_usec < a->tv_usec) {
73                 diff->tv_sec--;
74                 diff->tv_usec = 1000 * 1000 - a->tv_usec + b->tv_usec;
75         } else
76                 diff->tv_usec = b->tv_usec - a->tv_usec;
77         return ret;
78 }
79
80 /**
81  * Add two time values.
82  *
83  * \param a First addend.
84  * \param b Second addend.
85  *
86  * \param \a Sum contains the sum \a + \a b on return.
87  */
88 void tv_add(const struct timeval *a, const struct timeval *b,
89         struct timeval *sum)
90 {
91         sum->tv_sec = a->tv_sec + b->tv_sec;
92         if (a->tv_usec + b->tv_usec >= 1000 * 1000) {
93                 sum->tv_sec++;
94                 sum->tv_usec = a->tv_usec + b->tv_usec - 1000 * 1000;
95         } else
96                 sum->tv_usec = a->tv_usec + b->tv_usec;
97 }
98
99 /**
100  * Compute integer multiple of given struct timeval.
101  *
102  * \param mult The integer value to multiply with.
103  * \param tv The timevalue to multiply.
104  *
105  * \param result Contains \a mult * \a tv on return.
106  */
107 void tv_scale(const unsigned long mult, const struct timeval *tv,
108         struct timeval *result)
109 {
110         result->tv_sec = mult * tv->tv_sec;
111         result->tv_sec += tv->tv_usec * mult / 1000 / 1000;
112         result->tv_usec = tv->tv_usec * mult % (1000 * 1000);
113 }
114
115 /**
116  * Compute a fraction of given struct timeval.
117  *
118  * \param divisor The integer value to divide by.
119  * \param tv The timevalue to divide.
120  * \param result Contains (1 / mult) * tv on return.
121  */
122 void tv_divide(const unsigned long divisor, const struct timeval *tv,
123         struct timeval *result)
124 {
125         long unsigned q;
126
127         q = tv->tv_usec / divisor;
128         result->tv_sec = tv->tv_sec / divisor;
129         result->tv_usec = (tv->tv_sec - result->tv_sec * divisor)
130                 * 1000 * 1000 / divisor;
131         if (result->tv_usec + q >= 1000 * 1000) {
132                 result->tv_sec++;
133                 result->tv_usec = 1000 * 1000 - result->tv_usec - q;
134         } else
135                 result->tv_usec += q;
136 }
137
138 /**
139  * Compute a convex combination of two time values.
140  *
141  * \param a The first coefiicent.
142  * \param tv1 The first time value.
143  * \param b The second coefiicent.
144  * \param tv2 The second time value.
145  * \param result Contains the convex combination upon return.
146  *
147  * compute x := (a * tv1 + b * tv2) / (|a| + |b|) and store |x| in \a result.
148  * Both \a a and \a b may be negative.
149  *
150  * \return One if \a x is positive, -1 otherwise.
151  */
152 int tv_convex_combination(const long a, const struct timeval *tv1,
153                 const long b, const struct timeval *tv2,
154                 struct timeval *result)
155 {
156         struct timeval tmp1, tmp2, tmp3;
157         int ret = 1, subtract = ((a > 0 && b < 0) || (a < 0 && b > 0));
158         unsigned long a1 = PARA_ABS(a), b1 = PARA_ABS(b);
159
160         tv_scale(a1, tv1, &tmp1);
161         tv_scale(b1, tv2, &tmp2);
162         if (subtract)
163                 ret = tv_diff(&tmp1, &tmp2, &tmp3);
164         else
165                 tv_add(&tmp1, &tmp2, &tmp3);
166         if (a1 + b1)
167                 tv_divide(a1 + b1, &tmp3, result);
168         else {
169                 result->tv_sec = 0;
170                 result->tv_usec = 0;
171         }
172         if (!a || !b) {
173                 if (a + b < 0)
174                         ret = -1;
175         } else
176                 if (a < 0)
177                         ret = -ret;
178         return ret;
179 }