tvb_free() can (now) be called from plugins on Windows
[obnox/wireshark/wip.git] / 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifndef __PRINT_H__
28 #define __PRINT_H__
29
30 #include <stdio.h>
31
32 #include <epan/packet.h>
33
34 #include "packet-range.h"
35
36 /*
37  * Print stream code; this provides a "print stream" class with subclasses
38  * of various sorts.  Additional subclasses might be implemented elsewhere.
39  */
40 struct print_stream;
41
42 typedef struct print_stream_ops {
43         gboolean (*print_preamble)(struct print_stream *self, gchar *filename);
44         gboolean (*print_line)(struct print_stream *self, int indent,
45             const char *line);
46         gboolean (*print_bookmark)(struct print_stream *self,
47             const gchar *name, const gchar *title);
48         gboolean (*new_page)(struct print_stream *self);
49         gboolean (*print_finale)(struct print_stream *self);
50         gboolean (*destroy)(struct print_stream *self);
51 } print_stream_ops_t;
52
53 typedef struct print_stream {
54         const print_stream_ops_t *ops;
55         void *data;
56 } print_stream_t;
57
58 extern print_stream_t *print_stream_text_new(int to_file, const char *dest);
59 extern print_stream_t *print_stream_text_stdio_new(FILE *fh);
60 extern print_stream_t *print_stream_ps_new(int to_file, const char *dest);
61 extern print_stream_t *print_stream_ps_stdio_new(FILE *fh);
62
63 extern gboolean print_preamble(print_stream_t *self, gchar *filename);
64 extern gboolean print_line(print_stream_t *self, int indent, const char *line);
65 extern gboolean print_bookmark(print_stream_t *self, const gchar *name,
66     const gchar *title);
67 extern gboolean new_page(print_stream_t *self);
68 extern gboolean print_finale(print_stream_t *self);
69 extern gboolean destroy_print_stream(print_stream_t *self);
70
71 /* print output format */
72 typedef enum {
73   PR_FMT_TEXT,    /* plain text */
74   PR_FMT_PS       /* postscript */
75 } print_format_e;
76
77 /* print_range, enum which frames should be printed */
78 typedef enum {
79   print_range_selected_only,    /* selected frame(s) only (currently only one) */
80   print_range_marked_only,      /* marked frames only */
81   print_range_all_displayed,    /* all frames currently displayed */
82   print_range_all_captured      /* all frames in capture */
83 } print_range_e;
84
85 /* print_dissections, enum how the dissections should be printed */
86 typedef enum {
87   print_dissections_none,         /* no dissections at all */
88   print_dissections_collapsed,    /* no dissection details */
89   print_dissections_as_displayed, /* details as displayed */
90   print_dissections_expanded      /* all dissection details */
91 } print_dissections_e;
92
93 typedef struct {
94   print_stream_t *stream;       /* the stream to which we're printing */
95   print_format_e format;        /* plain text or PostScript */
96   gboolean      to_file;        /* TRUE if we're printing to a file */
97   char          *file;          /* file output pathname */
98   char          *cmd;           /* print command string (not win32) */
99   packet_range_t range;
100
101   gboolean      print_summary;  /* TRUE if we should just print summary;
102                                    FALSE if we should print protocol tree. */
103   print_dissections_e   print_dissections;
104   gboolean      print_hex;      /* TRUE if we should also print hex data;
105                                    FALSE if we should print only if not dissected. */
106   gboolean      print_formfeed; /* TRUE if a formfeed should be printed
107                    before each new packet */
108 } print_args_t;
109
110 /*
111  * Print user selected list of fields
112  */
113 struct _output_fields;
114 typedef struct _output_fields output_fields_t;
115
116 extern output_fields_t* output_fields_new(void);
117 extern void output_fields_free(output_fields_t* info);
118 extern void output_fields_add(output_fields_t* info, const gchar* field);
119 extern gsize output_fields_num_fields(output_fields_t* info);
120 extern gboolean output_fields_set_option(output_fields_t* info, gchar* option);
121 extern void output_fields_list_options(FILE *fh);
122
123 /*
124  * Output only these protocols
125  */
126 extern GHashTable *output_only_tables;
127
128 /*
129  * Higher-level packet-printing code.
130  */
131
132 extern gboolean proto_tree_print(print_args_t *print_args, epan_dissect_t *edt,
133      print_stream_t *stream);
134 extern gboolean print_hex_data(print_stream_t *stream, epan_dissect_t *edt);
135
136 extern void write_pdml_preamble(FILE *fh, const gchar* filename);
137 extern void proto_tree_write_pdml(epan_dissect_t *edt, FILE *fh);
138 extern void write_pdml_finale(FILE *fh);
139
140 extern void write_psml_preamble(FILE *fh);
141 extern void proto_tree_write_psml(epan_dissect_t *edt, FILE *fh);
142 extern void write_psml_finale(FILE *fh);
143
144 extern void write_csv_preamble(FILE *fh);
145 extern void proto_tree_write_csv(epan_dissect_t *edt, FILE *fh);
146 extern void write_csv_finale(FILE *fh);
147
148 extern void write_carrays_preamble(FILE *fh);
149 extern void proto_tree_write_carrays(guint32 num, FILE *fh, epan_dissect_t *edt);
150 extern void write_carrays_finale(FILE *fh);
151
152 extern void write_fields_preamble(output_fields_t* fields, FILE *fh);
153 extern void proto_tree_write_fields(output_fields_t* fields, epan_dissect_t *edt, FILE *fh);
154 extern void write_fields_finale(output_fields_t* fields, FILE *fh);
155
156 extern const gchar* get_node_field_value(field_info* fi, epan_dissect_t* edt);
157
158 #endif /* print.h */