Witness: enum witness_interface_state
[metze/wireshark/wip.git] / epan / print.h
1 /* print.h
2  * Definitions for printing packet analysis trees.
3  *
4  * $Id$
5  *
6  * Gilbert Ramirez <gram@alumni.rice.edu>
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License
14  * as published by the Free Software Foundation; either version 2
15  * of the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25  */
26
27 #ifndef __PRINT_H__
28 #define __PRINT_H__
29
30 #include <stdio.h>
31
32 #include <epan/epan.h>
33 #include <epan/packet.h>
34
35 #include <epan/packet-range.h>
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif /* __cplusplus */
40
41 /*
42  * Print stream code; this provides a "print stream" class with subclasses
43  * of various sorts.  Additional subclasses might be implemented elsewhere.
44  */
45 struct print_stream;
46
47 typedef struct print_stream_ops {
48         gboolean (*print_preamble)(struct print_stream *self, gchar *filename, const char *version_string);
49         gboolean (*print_line)(struct print_stream *self, int indent,
50             const char *line);
51         gboolean (*print_bookmark)(struct print_stream *self,
52             const gchar *name, const gchar *title);
53         gboolean (*new_page)(struct print_stream *self);
54         gboolean (*print_finale)(struct print_stream *self);
55         gboolean (*destroy)(struct print_stream *self);
56 } print_stream_ops_t;
57
58 typedef struct print_stream {
59         const print_stream_ops_t *ops;
60         void *data;
61 } print_stream_t;
62
63 WS_DLL_PUBLIC print_stream_t *print_stream_text_new(gboolean to_file, const char *dest);
64 WS_DLL_PUBLIC print_stream_t *print_stream_text_stdio_new(FILE *fh);
65 WS_DLL_PUBLIC print_stream_t *print_stream_ps_new(gboolean to_file, const char *dest);
66 WS_DLL_PUBLIC print_stream_t *print_stream_ps_stdio_new(FILE *fh);
67
68 WS_DLL_PUBLIC gboolean print_preamble(print_stream_t *self, gchar *filename, const char *version_string);
69 WS_DLL_PUBLIC gboolean print_line(print_stream_t *self, int indent, const char *line);
70 WS_DLL_PUBLIC gboolean print_bookmark(print_stream_t *self, const gchar *name,
71     const gchar *title);
72 WS_DLL_PUBLIC gboolean new_page(print_stream_t *self);
73 WS_DLL_PUBLIC gboolean print_finale(print_stream_t *self);
74 WS_DLL_PUBLIC gboolean destroy_print_stream(print_stream_t *self);
75
76 /* print output format */
77 typedef enum {
78   PR_FMT_TEXT,    /* plain text */
79   PR_FMT_PS       /* postscript */
80 } print_format_e;
81
82 /* print_range, enum which frames should be printed */
83 typedef enum {
84   print_range_selected_only,    /* selected frame(s) only (currently only one) */
85   print_range_marked_only,      /* marked frames only */
86   print_range_all_displayed,    /* all frames currently displayed */
87   print_range_all_captured      /* all frames in capture */
88 } print_range_e;
89
90 /* print_dissections, enum how the dissections should be printed */
91 typedef enum {
92   print_dissections_none,         /* no dissections at all */
93   print_dissections_collapsed,    /* no dissection details */
94   print_dissections_as_displayed, /* details as displayed */
95   print_dissections_expanded      /* all dissection details */
96 } print_dissections_e;
97
98 typedef struct {
99   print_stream_t *stream;       /* the stream to which we're printing */
100   print_format_e format;        /* plain text or PostScript */
101   gboolean to_file;             /* TRUE if we're printing to a file */
102   char *file;                   /* file output pathname */
103   char *cmd;                    /* print command string (not win32) */
104   packet_range_t range;
105
106   gboolean print_summary;       /* TRUE if we should print summary line. */
107   gboolean print_col_headings;  /* TRUE if we should print column headings */
108   print_dissections_e print_dissections;
109   gboolean print_hex;           /* TRUE if we should print hex data;
110                                  * FALSE if we should print only if not dissected. */
111   gboolean print_formfeed;      /* TRUE if a formfeed should be printed before
112                                  * each new packet */
113 } print_args_t;
114
115 /*
116  * Print user selected list of fields
117  */
118 struct _output_fields;
119 typedef struct _output_fields output_fields_t;
120
121 WS_DLL_PUBLIC output_fields_t* output_fields_new(void);
122 WS_DLL_PUBLIC void output_fields_free(output_fields_t* info);
123 WS_DLL_PUBLIC void output_fields_add(output_fields_t* info, const gchar* field);
124 WS_DLL_PUBLIC gsize output_fields_num_fields(output_fields_t* info);
125 WS_DLL_PUBLIC gboolean output_fields_set_option(output_fields_t* info, gchar* option);
126 WS_DLL_PUBLIC void output_fields_list_options(FILE *fh);
127 WS_DLL_PUBLIC gboolean output_fields_has_cols(output_fields_t* info);
128
129 /*
130  * Output only these protocols
131  */
132 WS_DLL_PUBLIC GHashTable *output_only_tables;
133
134 /*
135  * Higher-level packet-printing code.
136  */
137
138 WS_DLL_PUBLIC gboolean proto_tree_print(print_args_t *print_args, epan_dissect_t *edt,
139      print_stream_t *stream);
140 WS_DLL_PUBLIC gboolean print_hex_data(print_stream_t *stream, epan_dissect_t *edt);
141
142 WS_DLL_PUBLIC void write_pdml_preamble(FILE *fh, const gchar* filename);
143 WS_DLL_PUBLIC void proto_tree_write_pdml(epan_dissect_t *edt, FILE *fh);
144 WS_DLL_PUBLIC void write_pdml_finale(FILE *fh);
145
146 WS_DLL_PUBLIC void write_psml_preamble(FILE *fh);
147 WS_DLL_PUBLIC void proto_tree_write_psml(epan_dissect_t *edt, FILE *fh);
148 WS_DLL_PUBLIC void write_psml_finale(FILE *fh);
149
150 WS_DLL_PUBLIC void write_csv_preamble(FILE *fh);
151 WS_DLL_PUBLIC void proto_tree_write_csv(epan_dissect_t *edt, FILE *fh);
152 WS_DLL_PUBLIC void write_csv_finale(FILE *fh);
153
154 WS_DLL_PUBLIC void write_carrays_preamble(FILE *fh);
155 WS_DLL_PUBLIC void proto_tree_write_carrays(guint32 num, FILE *fh, epan_dissect_t *edt);
156 WS_DLL_PUBLIC void write_carrays_finale(FILE *fh);
157
158 WS_DLL_PUBLIC void write_fields_preamble(output_fields_t* fields, FILE *fh);
159 WS_DLL_PUBLIC void proto_tree_write_fields(output_fields_t* fields, epan_dissect_t *edt, column_info *cinfo, FILE *fh);
160 WS_DLL_PUBLIC void write_fields_finale(output_fields_t* fields, FILE *fh);
161
162 WS_DLL_PUBLIC const gchar* get_node_field_value(field_info* fi, epan_dissect_t* edt);
163
164 #ifdef __cplusplus
165 }
166 #endif /* __cplusplus */
167
168 #endif /* print.h */