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
|
# Introduction
This library provides functions for working with timespec structures.
It aims to provide a comprehensive set of functions with well-defined behaviour
that handle all edge cases (e.g. negative values) in a sensible manner.
Negative values are allowed in the tv_sec and/or tv_usec field of timespec
structures, tv_usec is always relative to tv_sec, so mixing positive and
negative values will produce consistent results:
{ tv_sec = 1, tv_nsec = 500000000 } == 1.5 seconds
{ tv_sec = 1, tv_nsec = 0 } == 1.0 seconds
{ tv_sec = 1, tv_nsec = -500000000 } == 0.5 seconds
{ tv_sec = 0, tv_nsec = 500000000 } == 0.5 seconds
{ tv_sec = 0, tv_nsec = 0 } == 0.0 seconds
{ tv_sec = 0, tv_nsec = -500000000 } == -0.5 seconds
{ tv_sec = -1, tv_nsec = 500000000 } == -0.5 seconds
{ tv_sec = -1, tv_nsec = 0 } == -1.0 seconds
{ tv_sec = -1, tv_nsec = -500000000 } == -1.5 seconds
Furthermore, any timespec structures processed or returned by library functions
are normalised according to the rules defined by `timespec_normalise()`.
A test program for your platform can be produced by compiling with `-DTEST`.
This is public domain. Feel free to embed it in your software if it meets your
needs.
# Functions
## Maths functions
`struct timespec timespec_add(struct timespec ts1, struct timespec ts2)`
Returns the result of adding two timespec structures.
`struct timespec timespec_sub(struct timespec ts1, struct timespec ts2)`
Returns the result of subtracting ts2 from ts1.
`struct timespec timespec_mod(struct timespec ts1, struct timespec ts2)`
Returns the remainder left over after dividing ts1 by ts2.
## Clamping
`struct timespec timespec_min(struct timespec ts1, struct timespec ts2);`
Return the lesser one of the two given timespec values.
`struct timespec timespec_max(struct timespec ts1, struct timespec ts2);`
Return the greater one of the two given timespec values.
`struct timespec timespec_clamp(struct timespec ts1, struct timespec min, struct timespec max);`
Clamp the value of TS between MIN and MAX.
## Comparison functions
`int timespec_cmp(struct timespec ts1, struct timespec ts2)`
Returns (1, 0, -1) if ts1 is (greater than, equal to, less than) ts2.
`bool timespec_eq(struct timespec ts1, struct timespec ts2)`
Returns true if the two timespec structures are equal.
`bool timespec_gt(struct timespec ts1, struct timespec ts2)`
Returns true if ts1 is greater than ts2.
`bool timespec_ge(struct timespec ts1, struct timespec ts2)`
Returns true if ts1 is greater than or equal to ts2.
`bool timespec_lt(struct timespec ts1, struct timespec ts2)`
Returns true if ts1 is less than ts2.
`bool timespec_le(struct timespec ts1, struct timespec ts2)`
Returns true if ts1 is less than or equal to ts2.
## Conversion funtions
`struct timespec timespec_from_double(double s)`
Converts a fractional number of seconds to a timespec.
`double timespec_to_double(struct timespec ts)`
Converts a timespec to a fractional number of seconds.
`struct timespec timespec_from_timeval(struct timeval tv)`
Converts a timeval to a timespec.
`struct timeval timespec_to_timeval(struct timespec ts)`
Converts a timespec to a timeval.
`struct timespec timespec_from_ms(long milliseconds)`
Converts an integer number of milliseconds to a timespec.
`long timespec_to_ms(struct timespec ts)`
Converts a timespec to an integer number of milliseconds.
## Normalisation
`struct timespec timespec_normalise(struct timespec ts)`
Returns a normalised version of a timespec structure, according to the following
rules:
1. If tv_nsec is >=1,000,000,00 or <=-1,000,000,000, flatten the surplus
nanoseconds into the tv_sec field.
2. If tv_nsec is negative, decrement tv_sec and roll tv_nsec up to represent
the same value attainable by ADDING nanoseconds to tv_sec.
|