Beginnings of README.macos
[obnox/wireshark/wip.git] / dftest.c
1 /* dftest.c.c
2  *
3  * $Id: dftest.c,v 1.8 2004/02/21 22:00:46 guy 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 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <locale.h>
33 #include <string.h>
34 #include <errno.h>
35
36 #ifdef NEED_STRERROR_H
37 #include "strerror.h"
38 #endif
39
40 #include <glib.h>
41 #include <epan/epan.h>
42
43 #include <epan/timestamp.h>
44 #include <epan/plugins.h>
45 #include <epan/filesystem.h>
46 #include "prefs.h"
47 #include "util.h"
48 #include "epan/dfilter/dfilter.h"
49 #include "register.h"
50
51 packet_info     pi;
52 ts_type         timestamp_type = TS_RELATIVE;
53
54 int
55 main(int argc, char **argv)
56 {
57         char            *text;
58         char            *gpf_path, *pf_path;
59         int             gpf_open_errno, gpf_read_errno;
60         int             pf_open_errno, pf_read_errno;
61         e_prefs         *prefs;
62         dfilter_t       *df;
63
64         /* register all dissectors; we must do this before checking for the
65         "-g" flag, as the "-g" flag dumps a list of fields registered
66         by the dissectors, and we must do it before we read the preferences,
67         in case any dissectors register preferences. */
68         epan_init(PLUGIN_DIR,register_all_protocols,
69                   register_all_protocol_handoffs);
70
71         /* now register the preferences for any non-dissector modules.
72         we must do that before we read the preferences as well. */
73         prefs_register_modules();
74
75         /* set the c-language locale to the native environment. */
76         setlocale(LC_ALL, "");
77
78         prefs = read_prefs(&gpf_open_errno, &gpf_read_errno, &gpf_path,
79             &pf_open_errno, &pf_read_errno, &pf_path);
80         if (gpf_path != NULL) {
81                 if (gpf_open_errno != 0) {
82                         fprintf(stderr,
83                             "can't open global preferences file \"%s\": %s.\n",
84                             pf_path, strerror(gpf_open_errno));
85                 }
86                 if (gpf_read_errno != 0) {
87                         fprintf(stderr,
88                             "I/O error reading global preferences file \"%s\": %s.\n",
89                             pf_path, strerror(gpf_read_errno));
90                 }
91         }
92         if (pf_path != NULL) {
93                 if (pf_open_errno != 0) {
94                         fprintf(stderr,
95                             "can't open your preferences file \"%s\": %s.\n",
96                             pf_path, strerror(pf_open_errno));
97                 }
98                 if (pf_read_errno != 0) {
99                         fprintf(stderr,
100                             "I/O error reading your preferences file \"%s\": %s.\n",
101                             pf_path, strerror(pf_read_errno));
102                 }
103         }
104
105         /* notify all registered modules that have had any of their preferences
106         changed either from one of the preferences file or from the command
107         line that its preferences have changed. */
108         prefs_apply_all();
109
110         /* Check for filter on command line */
111         if (argc <= 1) {
112                 fprintf(stderr, "Usage: dftest filter\n");
113                 exit(1);
114         }
115
116         /* Get filter text */
117         text = get_args_as_string(argc, argv, 1);
118
119         printf("Filter: \"%s\"\n", text);
120
121         /* Compile it */
122         if (!dfilter_compile(text, &df)) {
123                 fprintf(stderr, "dftest: %s\n", dfilter_error_msg);
124                 epan_cleanup();
125                 exit(2);
126         }
127         printf("dfilter ptr = 0x%08x\n", (unsigned int) df);
128
129         printf("\n\n");
130
131         dfilter_dump(df);
132
133         epan_cleanup();
134         exit(0);
135 }
136
137 /*
138  * Open/create errors are reported with an console message in "dftest".
139  */
140 void
141 report_open_failure(const char *filename, int err, gboolean for_writing)
142 {
143   char *errmsg;
144
145   errmsg = g_strdup_printf(file_open_error_message(err, for_writing), filename);
146   fprintf(stderr, "dftest: %s\n", errmsg);
147   g_free(errmsg);
148 }
149
150 /*
151  * Read errors are reported with an console message in "dftest".
152  */
153 void
154 report_read_failure(const char *filename, int err)
155 {
156   fprintf(stderr, "dftest: An error occurred while reading from the file \"%s\": %s.",
157           filename, strerror(err));
158 }