blob: 2e74d6145719df3ef1d028d49a7e5a33e444402b [file] [log] [blame]
Petr Machatad71cf2d2012-01-05 18:28:31 +01001/*
2 * This file is part of ltrace.
Petr Machata8a730f32013-11-21 20:43:51 +01003 * Copyright (C) 2011, 2012, 2013 Petr Machata, Red Hat Inc.
Petr Machatad71cf2d2012-01-05 18:28:31 +01004 * Copyright (C) 2009 Juan Cespedes
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
19 * 02110-1301 USA
20 */
Petr Machatae19b7812012-11-01 22:16:30 +010021#ifndef _OUTPUT_H_
22#define _OUTPUT_H_
Petr Machatad71cf2d2012-01-05 18:28:31 +010023
Petr Machatae19b7812012-11-01 22:16:30 +010024#include "fetch.h"
Petr Machatad71cf2d2012-01-05 18:28:31 +010025#include "forward.h"
26
Petr Machata929bd572012-12-17 03:20:34 +010027void output_line(struct process *proc, const char *fmt, ...);
28void output_left(enum tof type, struct process *proc,
Petr Machata29add4f2012-02-18 16:38:05 +010029 struct library_symbol *libsym);
Petr Machata929bd572012-12-17 03:20:34 +010030void output_right(enum tof type, struct process *proc,
Petr Machata8a730f32013-11-21 20:43:51 +010031 struct library_symbol *libsym,
32 struct timedelta *spent);
Petr Machatad71cf2d2012-01-05 18:28:31 +010033
Petr Machata9c400982012-11-01 22:15:01 +010034/* This function is for emitting lists of comma-separated strings.
35 *
36 * STREAM is where the output should be eventually sent.
37 *
38 * WRITER is the function to do the output. It returns number of
39 * characters written, or a negative value if there were errors (like
40 * what fprintf does). If WRITER returns 0, it means nothing was
Petr Machataf1608842012-11-03 15:18:46 +010041 * written, and separator shouldn't therefore be emitted either.
Petr Machata9c400982012-11-01 22:15:01 +010042 *
43 * NEED_DELIMP serves for keeping state between calls. It should
44 * point to a variable that is initialized to 0. DATA is passed
45 * verbatim to the WRITER.
46 *
47 * Returns number of characters written to STREAM (including any
48 * separators), or a negative value if there were errors. */
49int delim_output(FILE *stream, int *need_delimp,
50 int (*writer)(FILE *stream, void *data), void *data);
51
Petr Machataadec2012012-11-01 22:05:04 +010052/* If C is positive, add it to *COUNTP. Returns C. */
53int account_output(int *countp, int c);
54
Petr Machata89c5ca22012-10-27 00:49:38 +020055void report_error(char const *file, unsigned line_no, const char *fmt, ...);
56void report_warning(char const *file, unsigned line_no, const char *fmt, ...);
57void report_global_error(const char *fmt, ...);
Petr Machatae19b7812012-11-01 22:16:30 +010058
59#endif /* _OUTPUT_H_ */