Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
[obnox/wireshark/wip.git] / summary.c
1 /* summary.c
2  * Routines for capture file summary info
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #ifdef HAVE_SYS_TYPES_H
30 #include <sys/types.h>
31 #endif
32
33 #include <epan/packet.h>
34 #include "cfile.h"
35 #include "summary.h"
36 #ifdef HAVE_LIBPCAP
37 #include "capture_ui_utils.h"
38 #endif
39
40
41 static void
42 tally_frame_data(frame_data *cur_frame, summary_tally *sum_tally)
43 {
44   double cur_time;
45
46   cur_time = nstime_to_sec(&cur_frame->abs_ts);
47
48   if (cur_time < sum_tally->start_time) {
49     sum_tally->start_time = cur_time;
50   }
51   if (cur_time > sum_tally->stop_time){
52     sum_tally->stop_time = cur_time;
53   }
54   sum_tally->bytes += cur_frame->pkt_len;
55   if (cur_frame->flags.passed_dfilter){
56     if (sum_tally->filtered_count==0){
57             sum_tally->filtered_start= cur_time;
58             sum_tally->filtered_stop = cur_time;
59     } else {
60             if (cur_time < sum_tally->filtered_start) {
61                     sum_tally->filtered_start = cur_time;
62             }
63             if (cur_time > sum_tally->filtered_stop) {
64                     sum_tally->filtered_stop = cur_time;
65             }
66     }
67     sum_tally->filtered_count++;
68     sum_tally->filtered_bytes += cur_frame->pkt_len ;
69   }
70   if (cur_frame->flags.marked){
71     if (sum_tally->marked_count==0){
72             sum_tally->marked_start= cur_time;
73             sum_tally->marked_stop = cur_time;
74     } else {
75             if (cur_time < sum_tally->marked_start) {
76                     sum_tally->marked_start = cur_time;
77             }
78             if (cur_time > sum_tally->marked_stop) {
79                     sum_tally->marked_stop = cur_time;
80             }
81     }
82     sum_tally->marked_count++;
83     sum_tally->marked_bytes += cur_frame->pkt_len ;
84   }
85   if (cur_frame->flags.ignored){
86     sum_tally->ignored_count++;
87   }
88 }
89
90 void
91 summary_fill_in(capture_file *cf, summary_tally *st)
92 {
93
94   frame_data    *first_frame, *cur_frame;
95   guint32        framenum;
96
97   st->start_time = 0;
98   st->stop_time = 0;
99   st->bytes = 0;
100   st->filtered_count = 0;
101   st->filtered_start = 0;
102   st->filtered_stop = 0;
103   st->filtered_bytes = 0;
104   st->marked_count = 0;
105   st->marked_start = 0;
106   st->marked_stop = 0;
107   st->marked_bytes = 0;
108   st->ignored_count = 0;
109
110   /* initialize the tally */
111   if (cf->count != 0) {
112     first_frame = frame_data_sequence_find(cf->frames, 1);
113     st->start_time = nstime_to_sec(&first_frame->abs_ts);
114     st->stop_time = nstime_to_sec(&first_frame->abs_ts);
115
116     for (framenum = 1; framenum <= cf->count; framenum++) {
117       cur_frame = frame_data_sequence_find(cf->frames, framenum);
118       tally_frame_data(cur_frame, st);
119     }
120   }
121
122   st->filename = cf->filename;
123   st->file_length = cf->f_datalen;
124   st->file_type = cf->cd_t;
125   st->is_tempfile = cf->is_tempfile;
126   st->encap_type = cf->lnk_t;
127   st->has_snap = cf->has_snap;
128   st->snap = cf->snap;
129   st->elapsed_time = nstime_to_sec(&cf->elapsed_time);
130   st->packet_count = cf->count;
131   st->drops_known = cf->drops_known;
132   st->drops = cf->drops;
133   st->dfilter = cf->dfilter;
134
135   st->ifaces  = g_array_new(FALSE, FALSE, sizeof(iface_options));
136 }
137
138
139 #ifdef HAVE_LIBPCAP
140 void
141 summary_fill_in_capture(capture_options *capture_opts, summary_tally *st)
142 {
143   iface_options iface;
144   interface_options interface_opts;
145   guint i;
146
147   while (st->ifaces->len > 0) {
148     iface = g_array_index(st->ifaces, iface_options, 0);
149     st->ifaces = g_array_remove_index(st->ifaces, 0);
150     g_free(iface.name);
151     g_free(iface.descr);
152     g_free(iface.cfilter);
153   }
154   if (st->is_tempfile) {
155     for (i = 0; i < capture_opts->ifaces->len; i++) {
156       interface_opts = g_array_index(capture_opts->ifaces, interface_options, i);
157       iface.cfilter = g_strdup(interface_opts.cfilter);
158       iface.name = g_strdup(interface_opts.name);
159       iface.descr = g_strdup(interface_opts.descr);
160       iface.drops_known = FALSE;
161       iface.drops = 0;
162       iface.has_snap = interface_opts.has_snaplen;
163       iface.snap = interface_opts.snaplen;
164       iface.linktype = interface_opts.linktype;
165       g_array_append_val(st->ifaces, iface);
166     }
167   }
168 }
169 #endif