MSWSP: parse_CColumnGroupArray() etc.
[wireshark-wip.git] / wsutil / nstime.c
blob4c93bc16e74092fcf4b8442635666e79a8ace399
1 /* nstime.c
2 * Routines for manipulating nstime_t structures
4 * Copyright (c) 2005 MX Telecom Ltd. <richardv@mxtelecom.com>
6 * $Id$
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 1998 Gerald Combs
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 #include <glib.h>
29 #include "nstime.h"
31 /* this is #defined so that we can clearly see that we have the right number of
32 zeros, rather than as a guard against the number of nanoseconds in a second
33 changing ;) */
34 #define NS_PER_S 1000000000
36 /* set the given nstime_t to zero */
37 void nstime_set_zero(nstime_t *nstime)
39 nstime->secs = 0;
40 nstime->nsecs = 0;
43 /* is the given nstime_t currently zero? */
44 gboolean nstime_is_zero(nstime_t *nstime)
46 if(nstime->secs == 0 && nstime->nsecs == 0) {
47 return TRUE;
48 } else {
49 return FALSE;
53 /* set the given nstime_t to (0,maxint) to mark it as "unset"
54 * That way we can find the first frame even when a timestamp
55 * is zero (fix for bug 1056)
57 void nstime_set_unset(nstime_t *nstime)
59 nstime->secs = 0;
60 nstime->nsecs = G_MAXINT;
63 /* is the given nstime_t currently (0,maxint)? */
64 gboolean nstime_is_unset(nstime_t *nstime)
66 if(nstime->secs == 0 && nstime->nsecs == G_MAXINT) {
67 return TRUE;
68 } else {
69 return FALSE;
74 /** funcion: nstime_copy
76 * a = b
78 void nstime_copy(nstime_t *a, const nstime_t *b)
80 a->secs = b->secs;
81 a->nsecs = b->nsecs;
85 * function: nstime_delta
86 * delta = b - a
89 void nstime_delta(nstime_t *delta, const nstime_t *b, const nstime_t *a )
91 if (b->secs == a->secs) {
92 /* The seconds part of b is the same as the seconds part of a, so if
93 the nanoseconds part of the first time is less than the nanoseconds
94 part of a, b is before a. The nanoseconds part of the delta should
95 just be the difference between the nanoseconds part of b and the
96 nanoseconds part of a; don't adjust the seconds part of the delta,
97 as it's OK if the nanoseconds part is negative, and an overflow
98 can never result. */
99 delta->secs = 0;
100 delta->nsecs = b->nsecs - a->nsecs;
101 } else if (b->secs <= a->secs) {
102 /* The seconds part of b is less than the seconds part of a, so b is
103 before a.
105 Both the "seconds" and "nanoseconds" value of the delta
106 should have the same sign, so if the difference between the
107 nanoseconds values would be *positive*, subtract 1,000,000,000
108 from it, and add one to the seconds value. */
109 delta->secs = b->secs - a->secs;
110 delta->nsecs = b->nsecs - a->nsecs;
111 if(delta->nsecs > 0) {
112 delta->nsecs -= NS_PER_S;
113 delta->secs ++;
115 } else {
116 delta->secs = b->secs - a->secs;
117 delta->nsecs = b->nsecs - a->nsecs;
118 if(delta->nsecs < 0) {
119 delta->nsecs += NS_PER_S;
120 delta->secs --;
126 * function: nstime_sum
127 * sum = a + b
130 void nstime_sum(nstime_t *sum, const nstime_t *a, const nstime_t *b)
132 sum->secs = a->secs + b->secs;
133 sum->nsecs = a->nsecs + b->nsecs;
134 if(sum->nsecs>=NS_PER_S || (sum->nsecs>0 && sum->secs<0)){
135 sum->nsecs-=NS_PER_S;
136 sum->secs++;
137 } else if(sum->nsecs<=-NS_PER_S || (sum->nsecs<0 && sum->secs>0)) {
138 sum->nsecs+=NS_PER_S;
139 sum->secs--;
144 * function: nstime_cmp
146 * a > b : > 0
147 * a = b : 0
148 * a < b : < 0
151 int nstime_cmp (const nstime_t *a, const nstime_t *b )
153 if (a->secs == b->secs) {
154 return a->nsecs - b->nsecs;
155 } else {
156 return (int) (a->secs - b->secs);
161 * function: nstime_to_msec
162 * converts nstime to double, time base is milli seconds
165 double nstime_to_msec(const nstime_t *nstime)
167 return ((double)nstime->secs*1000 + (double)nstime->nsecs/1000000);
171 * function: nstime_to_sec
172 * converts nstime to double, time base is seconds
175 double nstime_to_sec(const nstime_t *nstime)
177 return ((double)nstime->secs + (double)nstime->nsecs/1000000000);
181 * Editor modelines
183 * Local Variables:
184 * c-basic-offset: 4
185 * tab-width: 8
186 * indent-tabs-mode: nil
187 * End:
189 * ex: set shiftwidth=4 tabstop=8 expandtab:
190 * :indentSize=4:tabSize=8:noTabs=true: