4d32a7a42f092b8aff2fd1c1fc73e560a294dd1f
[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  * Ethereal - Network traffic analyzer
9  * By Gerald Combs <gerald@ethereal.com>
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 <epan/packet.h>
31
32 /*
33  * Print stream code; this provides a "print stream" class with subclasses
34  * of various sorts.  Additional subclasses might be implemented elsewhere.
35  */
36 struct print_stream;
37
38 typedef struct print_stream_ops {
39         gboolean (*print_preamble)(struct print_stream *self, gchar *filename);
40         gboolean (*print_line)(struct print_stream *self, int indent,
41             const char *line);
42         gboolean (*print_bookmark)(struct print_stream *self,
43             const gchar *name, const gchar *title);
44         gboolean (*new_page)(struct print_stream *self);
45         gboolean (*print_finale)(struct print_stream *self);
46         gboolean (*destroy)(struct print_stream *self);
47 } print_stream_ops_t;
48
49 typedef struct print_stream {
50         const print_stream_ops_t *ops;
51         void *data;
52 } print_stream_t;
53
54 extern print_stream_t *print_stream_text_new(int to_file, const char *dest);
55 extern print_stream_t *print_stream_text_stdio_new(FILE *fh);
56 extern print_stream_t *print_stream_ps_new(int to_file, const char *dest);
57 extern print_stream_t *print_stream_ps_stdio_new(FILE *fh);
58
59 extern gboolean print_preamble(print_stream_t *self, gchar *filename);
60 extern gboolean print_line(print_stream_t *self, int indent, const char *line);
61 extern gboolean print_bookmark(print_stream_t *self, const gchar *name,
62     const gchar *title);
63 extern gboolean new_page(print_stream_t *self);
64 extern gboolean print_finale(print_stream_t *self);
65 extern gboolean destroy_print_stream(print_stream_t *self);
66
67 /* print output format */
68 typedef enum {
69   PR_FMT_TEXT,    /* plain text */
70   PR_FMT_PS       /* postscript */
71 } print_format_e;
72
73 /* print_range, enum which frames should be printed */
74 typedef enum {
75   print_range_selected_only,    /* selected frame(s) only (currently only one) */
76   print_range_marked_only,      /* marked frames only */
77   print_range_all_displayed,    /* all frames currently displayed */
78   print_range_all_captured      /* all frames in capture */
79 } print_range_e;
80
81 /* print_dissections, enum how the dissections should be printed */
82 typedef enum {
83   print_dissections_none,         /* no dissections at all */
84   print_dissections_collapsed,    /* no dissection details */
85   print_dissections_as_displayed, /* details as displayed */
86   print_dissections_expanded      /* all dissection details */
87 } print_dissections_e;
88
89 typedef struct {
90   print_stream_t *stream;       /* the stream to which we're printing */
91   print_format_e format;        /* plain text or PostScript */
92   gboolean      to_file;        /* TRUE if we're printing to a file */
93   char          *file;          /* file output pathname */
94   char          *cmd;           /* print command string (not win32) */
95   packet_range_t range;
96
97   gboolean      print_summary;  /* TRUE if we should just print summary;
98                                    FALSE if we should print protocol tree. */
99   print_dissections_e   print_dissections;
100   gboolean      print_hex;      /* TRUE if we should also print hex data;
101                                    FALSE if we should print only if not dissected. */
102   gboolean      print_formfeed; /* TRUE if a formfeed should be printed 
103                    before each new packet */
104 } print_args_t;
105
106 /*
107  * Higher-level packet-printing code.
108  */
109
110 extern gboolean proto_tree_print(print_args_t *print_args, epan_dissect_t *edt,
111      print_stream_t *stream);
112 extern gboolean print_hex_data(print_stream_t *stream, epan_dissect_t *edt);
113
114 extern void write_pdml_preamble(FILE *fh);
115 extern void proto_tree_write_pdml(epan_dissect_t *edt, FILE *fh);
116 extern void write_pdml_finale(FILE *fh);
117
118 extern void write_psml_preamble(FILE *fh);
119 extern void proto_tree_write_psml(epan_dissect_t *edt, FILE *fh);
120 extern void write_psml_finale(FILE *fh);
121
122 #endif /* print.h */