Make the "per_choice_t" and "per_sequence_t" pointer arguments pointers
[obnox/wireshark/wip.git] / packet-range.c
1 /* packet-range.c
2  * Packet range routines (save, print, ...)
3  *
4  * $Id$
5  *
6  * Dick Gooris <gooris@lucent.com>
7  * Ulf Lamping <ulf.lamping@web.de>
8  *
9  * Ethereal - Network traffic analyzer
10  * By Gerald Combs <gerald@ethereal.com>
11  * Copyright 1998 Gerald Combs
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31
32 #include <string.h>
33 #include <ctype.h>
34
35 #include <glib.h>
36
37 #include <epan/frame_data.h>
38
39 #include "globals.h"
40
41 #include "packet-range.h"
42
43 /* (re-)calculate the packet counts (except the user specified range) */
44 void packet_range_calc(packet_range_t *range) {
45   guint32       current_count;
46   guint32       mark_low;
47   guint32       mark_high;
48   guint32       displayed_mark_low;
49   guint32       displayed_mark_high;
50   frame_data    *packet;
51
52
53   range->selected_packet        = 0L;
54
55   mark_low                      = 0L;
56   mark_high                     = 0L;
57   range->mark_range_cnt         = 0L;
58
59   displayed_mark_low            = 0L;
60   displayed_mark_high           = 0L;
61   range->displayed_cnt          = 0L;
62   range->displayed_marked_cnt   = 0L;
63   range->displayed_mark_range_cnt=0L;
64
65   /* The next for-loop is used to obtain the amount of packets to be processed
66    * and is used to present the information in the Save/Print As widget.
67    * We have different types of ranges: All the packets, the number
68    * of packets of a marked range, a single packet, and a user specified 
69    * packet range. The last one is not calculated here since this
70    * data must be entered in the widget by the user.
71    */
72
73   current_count = 0;
74   for(packet = cfile.plist; packet != NULL; packet = packet->next) {
75       current_count++;
76       if (cfile.current_frame == packet) {
77           range->selected_packet = current_count;
78       }
79       if (packet->flags.passed_dfilter) {
80           range->displayed_cnt++;
81       }
82       if (packet->flags.marked) {
83             if (packet->flags.passed_dfilter) {
84                 range->displayed_marked_cnt++;
85                 if (displayed_mark_low == 0) {
86                    displayed_mark_low = current_count;
87                 }
88                 if (current_count > displayed_mark_high) {
89                    displayed_mark_high = current_count;
90                 }
91             }
92
93             if (mark_low == 0) {
94                mark_low = current_count;
95             }
96             if (current_count > mark_high) {
97                mark_high = current_count;
98             }
99       }
100   }
101         
102   current_count = 0;
103   for(packet = cfile.plist; packet != NULL; packet = packet->next) {
104       current_count++;
105
106       if (current_count >= mark_low && 
107           current_count <= mark_high)
108       {
109           range->mark_range_cnt++;
110       }
111
112       if (current_count >= displayed_mark_low && 
113           current_count <= displayed_mark_high)
114       {
115           if (packet->flags.passed_dfilter) {
116             range->displayed_mark_range_cnt++;
117           }
118       }
119   }
120
121   /* in case we marked just one packet, we add 1. */
122   /*if (cfile.marked_count != 0) {
123     range->mark_range = mark_high - mark_low + 1;
124   }*/
125         
126   /* in case we marked just one packet, we add 1. */
127   /*if (range->displayed_marked_cnt != 0) {
128     range->displayed_mark_range = displayed_mark_high - displayed_mark_low + 1;
129   }*/
130 }
131
132
133 /* (re-)calculate the user specified packet range counts */
134 void packet_range_calc_user(packet_range_t *range) {
135   guint32       current_count;
136   frame_data    *packet;
137
138   range->user_range_cnt             = 0L;
139   range->displayed_user_range_cnt   = 0L;
140
141   current_count = 0;
142   for(packet = cfile.plist; packet != NULL; packet = packet->next) {
143       current_count++;
144
145       if (value_is_in_range(&range->user_range, current_count)) {
146           range->user_range_cnt++;
147           if (packet->flags.passed_dfilter) {
148             range->displayed_user_range_cnt++;
149           }
150       }
151   }
152 }
153
154
155 /* init the range struct */
156 void packet_range_init(packet_range_t *range) {
157
158   range->process            = range_process_all;
159   range->process_filtered   = FALSE;
160   range_init(&range->user_range);
161
162   /* calculate all packet range counters */
163   packet_range_calc(range);
164   packet_range_calc_user(range);
165 }
166
167 /* init the processing run */
168 void packet_range_process_init(packet_range_t *range) {
169   /* "enumeration" values */
170   range->marked_range_active    = FALSE;
171   range->selected_done          = FALSE;
172
173   if (range->process_filtered == FALSE) {
174     range->marked_range_left = range->mark_range_cnt;
175   } else {
176     range->marked_range_left = range->displayed_mark_range_cnt;
177   }
178 }
179
180 /* do we have to process all packets? */
181 gboolean packet_range_process_all(packet_range_t *range) {
182     return range->process == range_process_all && !range->process_filtered;
183 }
184
185 /* do we have to process this packet? */
186 range_process_e packet_range_process_packet(packet_range_t *range, frame_data *fdata) {
187
188     switch(range->process) {
189     case(range_process_all):
190         break;
191     case(range_process_selected):
192         if (range->selected_done) {
193           return range_processing_finished;
194         }
195         if (fdata->num != cfile.current_frame->num) {
196           return range_process_next;
197         }
198         range->selected_done = TRUE;
199         break;
200     case(range_process_marked):
201         if (fdata->flags.marked == FALSE) {
202           return range_process_next;
203         }
204         break;
205     case(range_process_marked_range):
206         if (range->marked_range_left == 0) {
207           return range_processing_finished;
208         }
209         if (fdata->flags.marked == TRUE) {
210           range->marked_range_active = TRUE;
211         }
212         if (range->marked_range_active == FALSE ) {
213           return range_process_next;
214         }
215         if (!range->process_filtered ||
216           (range->process_filtered && fdata->flags.passed_dfilter == TRUE))
217         {
218           range->marked_range_left--;
219         }
220         break;
221     case(range_process_user_range):
222         if (value_is_in_range(&range->user_range, fdata->num) == FALSE) {
223           return range_process_next;
224         }
225         break;
226     default:
227         g_assert_not_reached();
228     }
229
230     /* this packet has to pass the display filter but didn't? -> try next */
231     if (range->process_filtered && fdata->flags.passed_dfilter == FALSE) {
232         return range_process_next;
233     }
234
235     /* We fell through the conditions above, so we accept this packet */
236     return range_process_this;
237 }
238
239
240 /******************** Range Entry Parser *********************************/
241
242 /* Converts a range string to a user range.
243  * The parameter 'es' points to the string to be converted, and is defined in
244  * the Save/Print-As widget.
245  */
246
247 void packet_range_convert_str(packet_range_t *range, const gchar *es)
248 {
249     range_convert_str(&range->user_range, es, cfile.count);
250
251     /* calculate new user specified packet range counts */
252     packet_range_calc_user(range);
253 } /* packet_range_convert_str */