from chris eagle
[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 #include "packet-range.h"
33
34 /*
35  * Print stream code; this provides a "print stream" class with subclasses
36  * of various sorts.  Additional subclasses might be implemented elsewhere.
37  */
38 struct print_stream;
39
40 typedef struct print_stream_ops {
41         gboolean (*print_preamble)(struct print_stream *self, gchar *filename);
42         gboolean (*print_line)(struct print_stream *self, int indent,
43             const char *line);
44         gboolean (*print_raw)(struct print_stream *self, 
45             const unsigned char *buf, int len);
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_raw(print_stream_t *self, const unsigned char *buf, int len);
66 extern gboolean print_bookmark(print_stream_t *self, const gchar *name,
67     const gchar *title);
68 extern gboolean new_page(print_stream_t *self);
69 extern gboolean print_finale(print_stream_t *self);
70 extern gboolean destroy_print_stream(print_stream_t *self);
71
72 /* print output format */
73 typedef enum {
74   PR_FMT_TEXT,    /* plain text */
75   PR_FMT_PS       /* postscript */
76 } print_format_e;
77
78 /* print_range, enum which frames should be printed */
79 typedef enum {
80   print_range_selected_only,    /* selected frame(s) only (currently only one) */
81   print_range_marked_only,      /* marked frames only */
82   print_range_all_displayed,    /* all frames currently displayed */
83   print_range_all_captured      /* all frames in capture */
84 } print_range_e;
85
86 /* print_dissections, enum how the dissections should be printed */
87 typedef enum {
88   print_dissections_none,         /* no dissections at all */
89   print_dissections_collapsed,    /* no dissection details */
90   print_dissections_as_displayed, /* details as displayed */
91   print_dissections_expanded      /* all dissection details */
92 } print_dissections_e;
93
94 typedef struct {
95   print_stream_t *stream;       /* the stream to which we're printing */
96   print_format_e format;        /* plain text or PostScript */
97   gboolean      to_file;        /* TRUE if we're printing to a file */
98   char          *file;          /* file output pathname */
99   char          *cmd;           /* print command string (not win32) */
100   packet_range_t range;
101
102   gboolean      print_summary;  /* TRUE if we should just print summary;
103                                    FALSE if we should print protocol tree. */
104   print_dissections_e   print_dissections;
105   gboolean      print_hex;      /* TRUE if we should also print hex data;
106                                    FALSE if we should print only if not dissected. */
107   gboolean      print_formfeed; /* TRUE if a formfeed should be printed 
108                    before each new packet */
109 } print_args_t;
110
111 /*
112  * Higher-level packet-printing code.
113  */
114
115 extern gboolean proto_tree_print(print_args_t *print_args, epan_dissect_t *edt,
116      print_stream_t *stream);
117 extern gboolean print_hex_data(print_stream_t *stream, epan_dissect_t *edt);
118
119 extern void write_pdml_preamble(FILE *fh);
120 extern void proto_tree_write_pdml(epan_dissect_t *edt, FILE *fh);
121 extern void write_pdml_finale(FILE *fh);
122
123 extern void write_psml_preamble(FILE *fh);
124 extern void proto_tree_write_psml(epan_dissect_t *edt, FILE *fh);
125 extern void write_psml_finale(FILE *fh);
126
127 #endif /* print.h */