From Mark C. Brown: fix a typo.
[obnox/wireshark/wip.git] / packet-range.h
1 /* packet-range.h
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 #ifndef __PACKET_RANGE_H__
29 #define __PACKET_RANGE_H__
30
31 #include <glib.h>
32
33 #include <epan/frame_data.h>
34
35 #include <epan/range.h>
36
37 extern guint32  curr_selected_frame;
38
39 typedef enum {
40     range_process_all,
41     range_process_selected,
42     range_process_marked,
43     range_process_marked_range,
44     range_process_user_range
45 } packet_range_e;
46
47 typedef struct packet_range_tag {
48     /* values coming from the UI */
49     packet_range_e  process;            /* which range to process */
50     gboolean        process_filtered;   /* captured or filtered packets */
51
52     /* user specified range(s) */
53     range_t         user_range;
54
55     /* calculated values */
56     guint32  selected_packet;       /* the currently selected packet */
57
58     /* current packet counts (captured) */
59     /* cfile.count */               /* packets in capture file */
60     /* cfile.marked_count */        /* packets marked */
61     guint32  mark_range_cnt;        /* packets in marked range */
62     guint32  user_range_cnt;        /* packets in user specified range */
63
64     /* current packet counts (displayed) */
65     guint32  displayed_cnt;
66     guint32  displayed_marked_cnt;
67     guint32  displayed_mark_range_cnt;
68     guint32  displayed_user_range_cnt;
69
70     /* "enumeration" values */
71     gboolean marked_range_active;   /* marked range is currently processed */
72     guint32  marked_range_left;     /* marked range packets left to do */
73     gboolean selected_done;         /* selected packet already processed */
74 } packet_range_t;
75
76 typedef enum {
77     range_process_this,             /* process this packet */
78     range_process_next,             /* skip this packet, process next */
79     range_processing_finished       /* stop processing, required packets done */
80 } range_process_e;
81
82 /* init the range structure */
83 extern void packet_range_init(packet_range_t *range);
84
85 /* init the processing run */
86 void packet_range_process_init(packet_range_t *range);
87
88 /* do we have to process all packets? */
89 extern gboolean packet_range_process_all(packet_range_t *range);
90
91 /* do we have to process this packet? */
92 extern range_process_e packet_range_process_packet(packet_range_t *range, frame_data *fdata);
93
94 /* convert user given string to the internal user specified range representation */
95 extern void packet_range_convert_str(packet_range_t *range, const gchar *es);
96
97 #endif /* __PACKET_RANGE_H__ */