Make the "maintainer-clean" rules get rid of some additional generated
[obnox/wireshark/wip.git] / file.h
1 /* file.h
2  * Definitions for file structures and routines
3  *
4  * $Id$
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifndef __FILE_H__
26 #define __FILE_H__
27
28 #include "packet-range.h"
29 #include "wiretap/wtap.h"
30 #include <epan/dfilter/dfilter.h>
31 #include "print.h"
32 #include <errno.h>
33 #include <epan/epan.h>
34
35 #include "cfile.h"
36
37
38 /** Return values from functions that only can succeed or fail. */
39 typedef enum {
40         CF_OK,                      /**< operation succeeded */
41         CF_ERROR        /**< operation got an error (function may provide err with details) */
42 } cf_status_t;
43
44 /** Return values from functions that read capture files. */
45 typedef enum {
46         CF_READ_OK,             /**< operation succeeded */
47         CF_READ_ERROR,          /**< operation got an error (function may provide err with details) */
48         CF_READ_ABORTED         /**< operation aborted by user */
49 } cf_read_status_t;
50
51 /** Return values from functions that print sets of packets. */
52 typedef enum {
53         CF_PRINT_OK,                /**< print operation succeeded */
54         CF_PRINT_OPEN_ERROR,    /**< print operation failed while opening printer */
55         CF_PRINT_WRITE_ERROR    /**< print operation failed while writing to the printer */
56 } cf_print_status_t;
57
58 typedef enum {
59     cf_cb_file_closed,
60     cf_cb_file_read_start,
61     cf_cb_file_read_finished,
62 #ifdef HAVE_LIBPCAP
63     cf_cb_live_capture_prepare,
64     cf_cb_live_capture_started,
65     cf_cb_live_capture_finished,
66 #endif
67     cf_cb_packet_selected,
68     cf_cb_packet_unselected,
69     cf_cb_field_unselected,
70     cf_cb_file_safe_started,
71     cf_cb_file_safe_finished,
72     cf_cb_file_safe_reload_finished,
73     cf_cb_file_safe_failed
74 } cf_cbs;
75
76 typedef void (*cf_callback_t) (gint event, gpointer data, gpointer user_data);
77
78 extern void
79 cf_callback_invoke(int event, gpointer data);
80
81 extern void
82 cf_callback_add(cf_callback_t func, gpointer user_data);
83
84 extern void
85 cf_callback_remove(cf_callback_t func);
86
87 /**
88  * Open a capture file.
89  *
90  * @param cf the capture file to be opened
91  * @param fname the filename to be opened
92  * @param is_tempfile is this a temporary file?
93  * @return one of cf_status_t
94  */
95 cf_status_t cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err);
96
97 /**
98  * Close a capture file.
99  *
100  * @param cf the capture file to be closed
101  */
102 void cf_close(capture_file *cf);
103
104 /**
105  * Reload a capture file.
106  *
107  * @param cf the capture file to be reloaded
108  */
109 void cf_reload(capture_file *cf);
110
111 /**
112  * Read all packets of a capture file into the internal structures.
113  * 
114  * @param cf the capture file to be read
115  * @return one of cf_read_status_t
116  */
117 cf_read_status_t cf_read(capture_file *cf);
118
119 /**
120  * Start reading from the end of a capture file.
121  * This is used in "Update list of packets in Real-Time".
122  * 
123  * @param cf the capture file to be read from
124  * @param fname the filename to be read from
125  * @param is_tempfile is this a temporary file?
126  * @param err the error code, if an error had occured
127  * @return one of cf_status_t
128  */
129 cf_status_t cf_start_tail(capture_file *cf, const char *fname, gboolean is_tempfile, int *err);
130
131 /**
132  * Read packets from the "end" of a capture file.
133  * 
134  * @param cf the capture file to be read from
135  * @param to_read the number of packets to read
136  * @param err the error code, if an error had occured
137  * @return one of cf_read_status_t
138  */
139 cf_read_status_t cf_continue_tail(capture_file *cf, int to_read, int *err);
140
141 /**
142  * Finish reading from "end" of a capture file.
143  * 
144  * @param cf the capture file to be read from
145  * @param err the error code, if an error had occured
146  * @return one of cf_read_status_t
147  */
148 cf_read_status_t cf_finish_tail(capture_file *cf, int *err);
149
150 /**
151  * Save a capture file (or a range of it).
152  * 
153  * @param cf the capture file to save to
154  * @param fname the filename to save to
155  * @param range the range of packets to save
156  * @param save_format the format of the file to save (libpcap, ...)
157  * @return one of cf_status_t
158  */
159 cf_status_t cf_save(capture_file * cf, const char *fname, packet_range_t *range, guint save_format);
160
161 /**
162  * Get a displayable name of the capture file.
163  * 
164  * @param cf the capture file
165  * @return the displayable name (don't have to be g_free'd)
166  */
167 const gchar *cf_get_display_name(capture_file *cf);
168
169 /**
170  * Get the number of packets in the capture file.
171  * 
172  * @param cf the capture file
173  * @return the number of packets in the capture file
174  */
175 int cf_packet_count(capture_file *cf);
176
177 /**
178  * Is this capture file a temporary file?
179  * 
180  * @param cf the capture file
181  * @return TRUE if it's a temporary file, FALSE otherwise
182  */
183 gboolean cf_is_tempfile(capture_file *cf);
184
185 /**
186  * Set flag, if the number of packet drops while capturing are known or not.
187  * 
188  * @param cf the capture file
189  * @param drops_known TRUE if the number of packet drops are known, FALSE otherwise
190  */
191 void cf_set_drops_known(capture_file *cf, gboolean drops_known);
192
193 /**
194  * Set the number of packet drops while capturing.
195  * 
196  * @param cf the capture file
197  * @param drops the number of packet drops occured while capturing
198  */
199 void cf_set_drops(capture_file *cf, guint32 drops);
200
201 /**
202  * Set the read filter.
203  * @todo this shouldn't be required, remove it somehow
204  * 
205  * @param cf the capture file
206  * @param rfcode the readfilter
207  */
208 void cf_set_rfcode(capture_file *cf, dfilter_t *rfcode);
209
210 /**
211  * "Display Filter" packets in the capture file.
212  * 
213  * @param cf the capture file
214  * @param dfilter the display filter
215  * @param force TRUE if do in any case, FALSE only if dfilter changed
216  * @return one of cf_status_t
217  */
218 cf_status_t cf_filter_packets(capture_file *cf, gchar *dfilter, gboolean force);
219
220 /**
221  * At least one "Refence Time" flag has changed, rescan all packets.
222  * 
223  * @param cf the capture file
224  */
225 void cf_reftime_packets(capture_file *cf);
226
227 /**
228  * At least one "Refence Time" flag has changed, rescan all packets.
229  * 
230  * @param cf the capture file
231  */
232 void cf_colorize_packets(capture_file *cf);
233
234 /**
235  * "Something" has changed, rescan all packets.
236  * 
237  * @param cf the capture file
238  */
239 void cf_redissect_packets(capture_file *cf);
240
241 /**
242  * Rescan all packets and just run taps - don't reconstruct the display.
243  * 
244  * @param cf the capture file
245  * @return one of cf_read_status_t
246  */
247 cf_read_status_t cf_retap_packets(capture_file *cf);
248
249 /**
250  * The time format has changed, rescan all packets.
251  * 
252  * @param cf the capture file
253  */
254 void cf_change_time_formats(capture_file *cf);
255
256 /**
257  * Print the capture file.
258  * 
259  * @param cf the capture file
260  * @param print_args the arguments what and how to print
261  * @return one of cf_print_status_t
262  */
263 cf_print_status_t cf_print_packets(capture_file *cf, print_args_t *print_args);
264
265 /**
266  * Print (export) the capture file into PDML format.
267  * 
268  * @param cf the capture file
269  * @param print_args the arguments what and how to export
270  * @return one of cf_print_status_t
271  */
272 cf_print_status_t cf_write_pdml_packets(capture_file *cf, print_args_t *print_args);
273
274 /**
275  * Print (export) the capture file into PSML format.
276  * 
277  * @param cf the capture file
278  * @param print_args the arguments what and how to export
279  * @return one of cf_print_status_t
280  */
281 cf_print_status_t cf_write_psml_packets(capture_file *cf, print_args_t *print_args);
282
283 /**
284  * Find Packet in protocol tree.
285  * 
286  * @param cf the capture file
287  * @param string the string to find
288  * @return TRUE if a packet was found, FALSE otherwise
289  */
290 gboolean cf_find_packet_protocol_tree(capture_file *cf, const char *string);
291
292 /**
293  * Find Packet in summary line.
294  * 
295  * @param cf the capture file
296  * @param string the string to find
297  * @return TRUE if a packet was found, FALSE otherwise
298  */
299 gboolean cf_find_packet_summary_line(capture_file *cf, const char *string);
300
301 /**
302  * Find Packet in packet data.
303  * 
304  * @param cf the capture file
305  * @param string the string to find
306  * @param string_size the size of the string to find
307  * @return TRUE if a packet was found, FALSE otherwise
308  */
309 gboolean cf_find_packet_data(capture_file *cf, const guint8 *string,
310                           size_t string_size);
311
312 /**
313  * Find Packet by display filter.
314  * 
315  * @param cf the capture file
316  * @param sfcode the display filter to find a packet for
317  * @return TRUE if a packet was found, FALSE otherwise
318  */
319 gboolean cf_find_packet_dfilter(capture_file *cf, dfilter_t *sfcode);
320
321 /**
322  * GoTo Packet in first row.
323  * 
324  * @param cf the capture file
325  * @return TRUE if the first row exists, FALSE otherwise
326  */
327 gboolean cf_goto_top_frame(capture_file *cf);
328
329 /**
330  * GoTo Packet in last row.
331  * 
332  * @param cf the capture file
333  * @return TRUE if last row exists, FALSE otherwise
334  */
335 gboolean cf_goto_bottom_frame(capture_file *cf);
336
337 /**
338  * GoTo Packet with the given row.
339  * 
340  * @param cf the capture file
341  * @param row the row to go to
342  * @return TRUE if this row exists, FALSE otherwise
343  */
344 gboolean cf_goto_frame(capture_file *cf, guint row);
345
346 /**
347  * Go to frame specified by currently selected protocol tree field.
348  * (Go To Corresponding Packet)
349  * @todo this is ugly and should be improved!
350  *
351  * @param cf the capture file
352  * @return TRUE if this packet exists, FALSE otherwise
353  */
354 gboolean cf_goto_framenum(capture_file *cf);
355
356 /**
357  * Select the packet in the given row.
358  *
359  * @param cf the capture file
360  * @param row the row to select
361  */
362 void cf_select_packet(capture_file *cf, int row);
363
364 /**
365  * Unselect all packets, if any.
366  *
367  * @param cf the capture file
368  * @param row the row to select
369  */
370 void cf_unselect_packet(capture_file *cf);
371
372 /**
373  * Unselect all protocol tree fields, if any.
374  *
375  * @param cf the capture file
376  * @param row the row to select
377  */
378 void cf_unselect_field(capture_file *cf);
379
380 /**
381  * Mark a particular frame in a particular capture.
382  *
383  * @param cf the capture file
384  * @param frame the frame to be marked
385  */
386 void cf_mark_frame(capture_file *cf, frame_data *frame);
387
388 /**
389  * Unmark a particular frame in a particular capture.
390  *
391  * @param cf the capture file
392  * @param frame the frame to be unmarked
393  */
394 void cf_unmark_frame(capture_file *cf, frame_data *frame);
395
396 /**
397  * Convert error number and info to a complete message.
398  *
399  * @param err the error number
400  * @param err_info the additional info about this error (e.g. filename)
401  * @return statically allocated error message
402  */
403 char *cf_read_error_message(int err, const gchar *err_info);
404
405 /**
406  * Merge two (or more) capture files into one.
407  * @todo is this the right place for this function? It doesn't have to do a lot with capture_file.
408  *
409  * @param out_filename output filename
410  * @param out_fd output file descriptor
411  * @param in_file_count the number of input files to merge
412  * @param in_filnames array of input filenames
413  * @param file_type the output filetype
414  * @param do_append FALSE to merge chronologically, TRUE simply append
415  * @return one of cf_status_t
416  */
417 cf_status_t
418 cf_merge_files(const char *out_filename, int out_fd, int in_file_count,
419                char *const *in_filenames, int file_type, gboolean do_append);
420
421
422 #endif /* file.h */