Put "WTP" into the Info column for segmented invoke/result PDUs on which
[obnox/wireshark/wip.git] / dftest.c
1 /* dftest.c.c
2  *
3  * $Id: dftest.c,v 1.5 2002/08/28 21:00:06 jmayer Exp $
4  *
5  * Ethereal - Network traffic analyzer
6  * By Gerald Combs <gerald@ethereal.com>
7  * Copyright 1998 Gerald Combs
8  *
9  * Shows display filter byte-code, for debugging dfilter routines.
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 <stdlib.h>
32 #include <stdio.h>
33 #include <locale.h>
34 #include <string.h>
35 #include <errno.h>
36
37 #ifdef NEED_STRERROR_H
38 #include "strerror.h"
39 #endif
40
41 #include <glib.h>
42 #include <epan/epan.h>
43
44 #if 0
45 #include "globals.h"
46 #include <epan/packet.h>
47 #include "file.h"
48 #include "column.h"
49 #include "print.h"
50 #include <epan/resolv.h>
51 #include <epan/conversation.h>
52 #endif
53 #include <epan/timestamp.h>
54 #include <epan/plugins.h>
55 #include "prefs.h"
56 #include "util.h"
57 #include "epan/dfilter/dfilter.h"
58 #include "register.h"
59
60 packet_info     pi;
61 ts_type         timestamp_type = RELATIVE;
62
63 int
64 main(int argc, char **argv)
65 {
66         char            *text;
67         char            *gpf_path, *pf_path;
68         int             gpf_open_errno, pf_open_errno;
69         e_prefs         *prefs;
70         dfilter_t       *df;
71
72         /* register all dissectors; we must do this before checking for the
73         "-g" flag, as the "-g" flag dumps a list of fields registered
74         by the dissectors, and we must do it before we read the preferences,
75         in case any dissectors register preferences. */
76         epan_init(PLUGIN_DIR,register_all_protocols,
77                   register_all_protocol_handoffs);
78
79         /* now register the preferences for any non-dissector modules.
80         we must do that before we read the preferences as well. */
81         prefs_register_modules();
82
83         /* set the c-language locale to the native environment. */
84         setlocale(LC_ALL, "");
85
86         prefs = read_prefs(&gpf_open_errno, &gpf_path, &pf_open_errno, &pf_path);
87         if (gpf_path != NULL) {
88                 fprintf(stderr, "can't open global preferences file \"%s\": %s.\n",
89                                 pf_path, strerror(gpf_open_errno));
90         }
91         if (pf_path != NULL) {
92                 fprintf(stderr, "can't open your preferences file \"%s\": %s.\n",
93                                 pf_path, strerror(pf_open_errno));
94         }
95
96         /* notify all registered modules that have had any of their preferences
97         changed either from one of the preferences file or from the command
98         line that its preferences have changed. */
99         prefs_apply_all();
100
101         /* Check for filter on command line */
102         if (argc <= 1) {
103                 fprintf(stderr, "Usage: dftest filter\n");
104                 exit(1);
105         }
106
107         /* Get filter text */
108         text = get_args_as_string(argc, argv, 1);
109
110         printf("Filter: \"%s\"\n", text);
111
112         /* Compile it */
113         if (!dfilter_compile(text, &df)) {
114                 fprintf(stderr, "dftest: %s\n", dfilter_error_msg);
115                 epan_cleanup();
116                 exit(2);
117         }
118         printf("dfilter ptr = 0x%08x\n", (unsigned int) df);
119
120         printf("\n\n");
121
122         dfilter_dump(df);
123
124         epan_cleanup();
125         exit(0);
126 }