don't use LPADAPTER but simply void * as we don't need to look inside the members...
[obnox/wireshark/wip.git] / timestats.c
1 /* timestats.c
2  * routines for time statistics
3  * Copyrigth 2003 Lars Roland
4  *
5  * $Id$
6  *
7  * Ethereal - Network traffic analyzer
8  * By Gerald Combs <gerald@ethereal.com>
9  * Copyright 1998 Gerald Combs
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (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 Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
24  */
25
26 #include "timestats.h"
27
28 /*
29  * function: get_timedelta
30  * delta = b - a
31  */
32
33 void get_timedelta(nstime_t *delta, const nstime_t *b, const nstime_t *a )
34 {
35         delta->secs = b->secs - a->secs;
36         delta->nsecs= b->nsecs - a->nsecs;
37         if(delta->nsecs<0){
38                 delta->nsecs+=1000000000;
39                 delta->secs--;
40         }
41 }
42
43 /*
44  * function: addtime
45  * sum += a
46  */
47
48 void addtime(nstime_t *sum, const nstime_t *a)
49 {
50         sum->secs += a->secs;
51         sum->nsecs += a->nsecs;
52         if(sum->nsecs>1000000000){
53                 sum->nsecs-=1000000000;
54                 sum->secs++;
55         }
56 }
57
58 /*
59  * function: nstime_to_msec
60  * converts nstime to gdouble, time base is milli seconds
61  */
62
63 gdouble nstime_to_msec(const nstime_t *time)
64 {
65         return ((double)time->secs*1000 + (double)time->nsecs/1000000);
66 }
67
68 /* A Function to update a timestat_t struct with a new sample*/
69
70 void
71 time_stat_update(timestat_t *stats, const nstime_t *delta, packet_info *pinfo)
72 {
73         if(stats->num==0){
74                 stats->max.secs=delta->secs;
75                 stats->max.nsecs=delta->nsecs;
76                 stats->max_num=pinfo->fd->num;
77         }
78
79         if(stats->num==0){
80                 stats->min.secs=delta->secs;
81                 stats->min.nsecs=delta->nsecs;
82                 stats->min_num=pinfo->fd->num;
83         }
84
85         if( (delta->secs<stats->min.secs)
86         ||( (delta->secs==stats->min.secs)
87           &&(delta->nsecs<stats->min.nsecs) ) ){
88                 stats->min.secs=delta->secs;
89                 stats->min.nsecs=delta->nsecs;
90                 stats->min_num=pinfo->fd->num;
91         }
92
93         if( (delta->secs>stats->max.secs)
94         ||( (delta->secs==stats->max.secs)
95           &&(delta->nsecs>stats->max.nsecs) ) ){
96                 stats->max.secs=delta->secs;
97                 stats->max.nsecs=delta->nsecs;
98                 stats->max_num=pinfo->fd->num;
99         }
100
101         stats->tot.secs += delta->secs;
102         stats->tot.nsecs += delta->nsecs;
103         if(stats->tot.nsecs>1000000000){
104                 stats->tot.nsecs-=1000000000;
105                 stats->tot.secs++;
106         }
107
108         stats->num++;
109 }
110
111 /*
112  * get_average - function
113  *
114  * function to calculate the average
115  * returns the average as a gdouble , time base is milli seconds
116  */
117
118 gdouble get_average(const nstime_t *sum, guint32 num)
119 {
120         gdouble average;
121
122         if(num > 0) {
123                 average = (double)sum->secs*1000 + (double)sum->nsecs/1000000;
124                 average /= num;
125         }
126         else {
127                 average = 0;
128         }
129         return average;
130 }