chiark / gitweb /
Various bug fixes: understand requests for help properly, and fix the
[mLib] / trace.h
CommitLineData
0875b58f 1/* -*-c-*-
2 *
e4452aaa 3 * $Id: trace.h,v 1.6 2001/02/03 16:23:55 mdw Exp $
0875b58f 4 *
5 * Tracing functions for debugging
6 *
7 * (c) 1998 Straylight/Edgeware
8 */
9
c846879c 10/*----- Licensing notice --------------------------------------------------*
0875b58f 11 *
12 * This file is part of the mLib utilities library.
13 *
14 * mLib is free software; you can redistribute it and/or modify
c846879c 15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
0875b58f 19 * mLib is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c846879c 22 * GNU Library General Public License for more details.
23 *
24 * You should have received a copy of the GNU Library General Public
0bd98442 25 * License along with mLib; if not, write to the Free
26 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27 * MA 02111-1307, USA.
0875b58f 28 */
29
30/*----- Revision history --------------------------------------------------*
31 *
32 * $Log: trace.h,v $
e4452aaa 33 * Revision 1.6 2001/02/03 16:23:55 mdw
34 * New custom trace output interface.
35 *
c6e0eaf0 36 * Revision 1.5 1999/12/10 23:42:04 mdw
37 * Change header file guard names.
38 *
de3ceebe 39 * Revision 1.4 1999/10/22 22:39:52 mdw
40 * New documented interface for tracing.
41 *
0bd98442 42 * Revision 1.3 1999/05/06 19:51:35 mdw
43 * Reformatted the LGPL notice a little bit.
44 *
c846879c 45 * Revision 1.2 1999/05/05 18:50:31 mdw
46 * Change licensing conditions to LGPL.
47 *
48 * Revision 1.1.1.1 1998/06/17 23:44:42 mdw
49 * Initial version of mLib
0875b58f 50 *
51 */
52
c6e0eaf0 53#ifndef MLIB_TRACE_H
54#define MLIB_TRACE_H
0875b58f 55
56#ifdef __cplusplus
57 extern "C" {
58#endif
59
de3ceebe 60/*----- Header files ------------------------------------------------------*/
61
0875b58f 62#include <stdio.h>
63
de3ceebe 64/*----- Data structures ---------------------------------------------------*/
65
66typedef struct trace_opt {
67 char ch;
68 unsigned f;
69 const char *help;
70} trace_opt;
71
0875b58f 72/*----- Functions provided ------------------------------------------------*/
73
74/* --- @trace@ --- *
75 *
de3ceebe 76 * Arguments: @unsigned l@ = trace level for output
0875b58f 77 * @const char *f@ = a @printf@-style format string
78 * @...@ = other arguments
79 *
80 * Returns: ---
81 *
82 * Use: Reports a message to the trace output.
83 */
84
de3ceebe 85extern void trace(unsigned /*l*/, const char */*f*/, ...);
0875b58f 86
87/* --- @trace_block@ --- *
88 *
de3ceebe 89 * Arguments: @unsigned l@ = trace level for output
0875b58f 90 * @const char *s@ = some header string to write
91 * @const void *b@ = pointer to a block of memory to dump
92 * @size_t sz@ = size of the block of memory
93 *
94 * Returns: ---
95 *
96 * Use: Dumps the contents of a block to the trace output.
97 */
98
de3ceebe 99extern void trace_block(unsigned /*l*/, const char */*s*/,
0875b58f 100 const void */*b*/, size_t /*sz*/);
101
102/* --- @trace_on@ --- *
103 *
104 * Arguments: @FILE *fp@ = a file to trace on
de3ceebe 105 * @unsigned l@ = trace level to set
0875b58f 106 *
107 * Returns: ---
108 *
109 * Use: Enables tracing to a file.
110 */
111
de3ceebe 112extern void trace_on(FILE */*fp*/, unsigned /*l*/);
0875b58f 113
e4452aaa 114/* --- @trace_custom@ --- *
115 *
116 * Arguments: @void (*func)(const char *buf, size_t sz, void *v)@ =
117 * output function
118 * @void *v@ = magic handle to give to function
119 *
120 * Returns: ---
121 *
122 * Use: Sets up a custom trace handler.
123 */
124
125extern void trace_custom(void (*/*func*/)(const char */*buf*/,
126 size_t /*sz*/, void */*v*/),
127 void */*v*/);
128
de3ceebe 129/* --- @trace_level@ --- *
0875b58f 130 *
de3ceebe 131 * Arguments: @unsigned l@ = trace level to set
0875b58f 132 *
133 * Returns: ---
134 *
135 * Use: Sets the tracing level.
136 */
137
de3ceebe 138extern void trace_level(unsigned /*l*/);
0875b58f 139
140/* --- @tracing@ --- *
141 *
142 * Arguments: ---
143 *
144 * Returns: Zero if not tracing, tracing level if tracing.
145 *
146 * Use: Informs the caller whether tracing is enabled.
147 */
148
de3ceebe 149extern unsigned tracing(void);
150
151/* --- @traceopt@ --- *
152 *
e4452aaa 153 * Arguments: @const trace_opt *t@ = pointer to trace options table
de3ceebe 154 * @const char *p@ = option string supplied by user
155 * @unsigned f@ = initial tracing flags
156 * @unsigned bad@ = forbidden tracing flags
157 *
158 * Returns: Trace flags as set by user.
159 *
160 * Use: Parses an option string from the user and sets the
161 * appropriate trace flags. If the argument is null or a single
162 * `?' character, a help message is displayed.
163 */
164
e4452aaa 165extern unsigned traceopt(const trace_opt */*t*/, const char */*p*/,
de3ceebe 166 unsigned /*f*/, unsigned /*bad*/);
0875b58f 167
168/*----- Tracing macros ----------------------------------------------------*/
169
170#ifndef NTRACE
171# define T(x) x
172# define IF_TRACING(l, x) if ((l) & tracing()) x
173#else
174# define T(x)
175# define IF_TRACING(l, x)
176#endif
177
178/*----- That's all, folks -------------------------------------------------*/
179
180#ifdef __cplusplus
181 }
182#endif
183
184#endif