From Lars Roland:
[obnox/wireshark/wip.git] / timestats.c
1 /* timestats.c
2  * routines for time statistics
3  * Copyrigth 2003 Lars Roland
4  *
5  * $Id: timestats.c,v 1.1 2003/04/16 07:24:04 guy Exp $
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, nstime_t *b, 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, 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(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, nstime_t *delta, packet_info *pinfo)
72 {
73         if((stats->max.secs==0)
74         && (stats->max.nsecs==0) ){
75                 stats->max.secs=delta->secs;
76                 stats->max.nsecs=delta->nsecs;
77                 stats->max_num=pinfo->fd->num;
78         }
79
80         if((stats->min.secs==0)
81         && (stats->min.nsecs==0) ){
82                 stats->min.secs=delta->secs;
83                 stats->min.nsecs=delta->nsecs;
84                 stats->min_num=pinfo->fd->num;
85         }
86
87         if( (delta->secs<stats->min.secs)
88         ||( (delta->secs==stats->min.secs)
89           &&(delta->nsecs<stats->min.nsecs) ) ){
90                 stats->min.secs=delta->secs;
91                 stats->min.nsecs=delta->nsecs;
92                 stats->min_num=pinfo->fd->num;
93         }
94
95         if( (delta->secs>stats->max.secs)
96         ||( (delta->secs==stats->max.secs)
97           &&(delta->nsecs>stats->max.nsecs) ) ){
98                 stats->max.secs=delta->secs;
99                 stats->max.nsecs=delta->nsecs;
100                 stats->max_num=pinfo->fd->num;
101         }
102
103         stats->tot.secs += delta->secs;
104         stats->tot.nsecs += delta->nsecs;
105         if(stats->tot.nsecs>1000000000){
106                 stats->tot.nsecs-=1000000000;
107                 stats->tot.secs++;
108         }
109
110         stats->num++;
111 }
112
113 /*
114  * get_average - function
115  *
116  * function to calculate the average
117  * returns the average as a gdouble , time base is milli seconds
118  */
119
120 gdouble get_average(nstime_t *sum, guint32 num)
121 {
122         gdouble average;
123
124         if(num > 0) {
125                 average = (double)sum->secs*1000 + (double)sum->nsecs/1000000;
126                 average /= num;
127         }
128         else {
129                 average = 0;
130         }
131         return average;
132 }