Move GTK code out of summary.c and into gtk/summary_dlg.c
[obnox/wireshark/wip.git] / summary.c
1 /* summary.c
2  * Routines for capture file summary info
3  *
4  * $Id: summary.c,v 1.15 1999/12/10 04:20:53 gram Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@zing.org>
8  * Copyright 1998 Gerald Combs
9  *
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
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include "packet.h"
32 #include "globals.h"
33 #include "summary.h"
34
35
36 static double
37 secs_usecs( guint32 s, guint32 us)
38 {
39   return (us / 1000000.0) + (double)s;
40 }
41
42 static void
43 tally_frame_data(frame_data *cur_frame, summary_tally *sum_tally)
44 {
45   double cur_time;
46
47   cur_time = secs_usecs(cur_frame->abs_secs, cur_frame->abs_usecs);
48
49     if (cur_time < sum_tally->start_time) {
50       sum_tally->start_time = cur_time;
51     }
52     if (cur_time > sum_tally->stop_time){
53       sum_tally->stop_time = cur_time;
54     }
55     sum_tally->bytes += cur_frame->pkt_len;
56     if (cur_frame->passed_dfilter)
57           sum_tally->filtered_count++;
58 }
59
60 void
61 summary_fill_in(summary_tally *st)
62 {
63
64   frame_data    *first_frame, *cur_frame;
65   int           i;
66   frame_data    *cur_glist;
67
68  /* initialize the tally */
69   first_frame = cf.plist;
70   st->start_time = secs_usecs(first_frame->abs_secs,first_frame->abs_usecs) ;
71   st->stop_time = secs_usecs(first_frame->abs_secs,first_frame->abs_usecs) ;
72   st->bytes = 0;
73   st->filtered_count = 0;
74   cur_glist = cf.plist;
75
76   for (i = 0; i < cf.count; i++) {
77     cur_frame = cur_glist;
78     tally_frame_data(cur_frame, st);
79     cur_glist = cur_glist->next;
80   }
81
82   st->filename = cf.filename;
83   st->file_length = cf.f_len;
84   st->encap_type = cf.cd_t;
85   st->snap = cf.snap;
86   st->elapsed_time = secs_usecs(cf.esec, cf.eusec);
87   st->packet_count = cf.count;
88   st->drops = cf.drops;
89   st->iface = cf.iface;
90   st->dfilter = cf.dfilter;
91
92 #ifdef HAVE_LIBPCAP
93   st->cfilter = cf.cfilter;
94 #else
95   st->cfilter = NULL;
96 #endif
97
98
99 }
100