1 /* GNU m4 -- A simple macro processor
3 Copyright (C) 1991, 1992, 1993, 1994, 2004, 2006 Free Software
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
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 Street, Fifth Floor, Boston, MA
27 /* File for debugging output. */
30 /* Obstack for trace messages. */
31 static struct obstack trace
;
33 extern int expansion_level
;
35 static void debug_set_file (FILE *);
37 /*----------------------------------.
38 | Initialise the debugging module. |
39 `----------------------------------*/
44 debug_set_file (stderr
);
45 obstack_init (&trace
);
48 /*-----------------------------------------------------------------.
49 | Function to decode the debugging flags OPTS. Used by main while |
50 | processing option -d, and by the builtin debugmode (). |
51 `-----------------------------------------------------------------*/
54 debug_decode (const char *opts
)
58 if (opts
== NULL
|| *opts
== '\0')
59 level
= DEBUG_TRACE_DEFAULT
;
62 for (level
= 0; *opts
; opts
++)
67 level
|= DEBUG_TRACE_ARGS
;
71 level
|= DEBUG_TRACE_EXPANSION
;
75 level
|= DEBUG_TRACE_QUOTE
;
79 level
|= DEBUG_TRACE_ALL
;
83 level
|= DEBUG_TRACE_LINE
;
87 level
|= DEBUG_TRACE_FILE
;
91 level
|= DEBUG_TRACE_PATH
;
95 level
|= DEBUG_TRACE_CALL
;
99 level
|= DEBUG_TRACE_INPUT
;
103 level
|= DEBUG_TRACE_CALLID
;
107 level
|= DEBUG_TRACE_VERBOSE
;
116 /* This is to avoid screwing up the trace output due to changes in the
119 obstack_free (&trace
, obstack_finish (&trace
));
124 /*------------------------------------------------------------------------.
125 | Change the debug output stream to FP. If the underlying file is the |
126 | same as stdout, use stdout instead so that debug messages appear in the |
127 | correct relative position. |
128 `------------------------------------------------------------------------*/
131 debug_set_file (FILE *fp
)
133 struct stat stdout_stat
, debug_stat
;
135 if (debug
!= NULL
&& debug
!= stderr
&& debug
!= stdout
136 && close_stream (debug
) != 0)
138 M4ERROR ((warning_status
, errno
, "error writing to debug stream"));
139 retcode
= EXIT_FAILURE
;
143 if (debug
!= NULL
&& debug
!= stdout
)
145 if (fstat (STDOUT_FILENO
, &stdout_stat
) < 0)
147 if (fstat (fileno (debug
), &debug_stat
) < 0)
150 /* mingw has a bug where fstat on a regular file reports st_ino
151 of 0. On normal system, st_ino should never be 0. */
152 if (stdout_stat
.st_ino
== debug_stat
.st_ino
153 && stdout_stat
.st_dev
== debug_stat
.st_dev
154 && stdout_stat
.st_ino
!= 0)
156 if (debug
!= stderr
&& close_stream (debug
) != 0)
158 M4ERROR ((warning_status
, errno
,
159 "error writing to debug stream"));
160 retcode
= EXIT_FAILURE
;
167 /*-----------------------------------------------------------.
168 | Serialize files. Used before executing a system command. |
169 `-----------------------------------------------------------*/
172 debug_flush_files (void)
176 if (debug
!= NULL
&& debug
!= stdout
&& debug
!= stderr
)
178 /* POSIX requires that if m4 doesn't consume all input, but stdin is
179 opened on a seekable file, that the file pointer be left at the
180 next character on exit (but places no restrictions on the file
181 pointer location on a non-seekable file). It also requires that
182 fflush() followed by fseek() on an input file set the underlying
183 file pointer. However, fflush() on a non-seekable file can lose
184 buffered data, which we might otherwise want to process after
185 syscmd. Hence, we must check whether stdin is seekable. We must
186 also be tolerant of operating with stdin closed, so we don't
187 report any failures in this attempt. The stdio-safer module and
188 friends are essential, so that if stdin was closed, this lseek is
189 not on some other file that we have since opened. Mingw has bugs
190 when using fseek on text files, so we only strive for POSIX
191 behavior when we detect a UNIX environment. */
193 if (lseek (STDIN_FILENO
, 0, SEEK_CUR
) >= 0
194 && fflush (stdin
) == 0)
196 fseek (stdin
, 0, SEEK_CUR
);
201 /*-------------------------------------------------------------------------.
202 | Change the debug output to file NAME. If NAME is NULL, debug output is |
203 | reverted to stderr, and if empty debug output is discarded. Return true |
204 | iff the output stream was changed. |
205 `-------------------------------------------------------------------------*/
208 debug_set_output (const char *name
)
213 debug_set_file (stderr
);
214 else if (*name
== '\0')
215 debug_set_file (NULL
);
218 fp
= fopen (name
, "a");
222 if (set_cloexec_flag (fileno (fp
), true) != 0)
223 M4ERROR ((warning_status
, errno
,
224 "Warning: cannot protect debug file across forks"));
230 /*-----------------------------------------------------------------------.
231 | Print the header of a one-line debug message, starting by "m4 debug". |
232 `-----------------------------------------------------------------------*/
235 debug_message_prefix (void)
237 fprintf (debug
, "m4debug:");
240 if (debug_level
& DEBUG_TRACE_FILE
)
241 fprintf (debug
, "%s:", current_file
);
242 if (debug_level
& DEBUG_TRACE_LINE
)
243 fprintf (debug
, "%d:", current_line
);
248 /* The rest of this file contains the functions for macro tracing output.
249 All tracing output for a macro call is collected on an obstack TRACE,
250 and printed whenever the line is complete. This prevents tracing
251 output from interfering with other debug messages generated by the
254 /*---------------------------------------------------------------------.
255 | Tracing output is formatted here, by a simplified printf-to-obstack |
256 | function trace_format (). Understands only %S, %s, %d, %l (optional |
257 | left quote) and %r (optional right quote). |
258 `---------------------------------------------------------------------*/
261 trace_format (const char *fmt
, ...)
272 va_start (args
, fmt
);
276 while ((ch
= *fmt
++) != '\0' && ch
!= '%')
277 obstack_1grow (&trace
, ch
);
286 maxlen
= max_debug_argument_length
;
290 s
= va_arg (args
, const char *);
294 s
= (debug_level
& DEBUG_TRACE_QUOTE
) ? lquote
.string
: "";
298 s
= (debug_level
& DEBUG_TRACE_QUOTE
) ? rquote
.string
: "";
302 d
= va_arg (args
, int);
303 sprintf (nbuf
, "%d", d
);
313 if (maxlen
== 0 || maxlen
> slen
)
314 obstack_grow (&trace
, s
, slen
);
317 obstack_grow (&trace
, s
, maxlen
);
318 obstack_grow (&trace
, "...", 3);
325 /*------------------------------------------------------------------.
326 | Format the standard header attached to all tracing output lines. |
327 `------------------------------------------------------------------*/
330 trace_header (int id
)
332 trace_format ("m4trace:");
335 if (debug_level
& DEBUG_TRACE_FILE
)
336 trace_format ("%s:", current_file
);
337 if (debug_level
& DEBUG_TRACE_LINE
)
338 trace_format ("%d:", current_line
);
340 trace_format (" -%d- ", expansion_level
);
341 if (debug_level
& DEBUG_TRACE_CALLID
)
342 trace_format ("id %d: ", id
);
345 /*----------------------------------------------------.
346 | Print current tracing line, and clear the obstack. |
347 `----------------------------------------------------*/
354 obstack_1grow (&trace
, '\0');
355 line
= (char *) obstack_finish (&trace
);
356 DEBUG_PRINT1 ("%s\n", line
);
357 obstack_free (&trace
, line
);
360 /*-------------------------------------------------------------.
361 | Do pre-argument-collction tracing for macro NAME. Used from |
363 `-------------------------------------------------------------*/
366 trace_prepre (const char *name
, int id
)
369 trace_format ("%s ...", name
);
373 /*-----------------------------------------------------------------------.
374 | Format the parts of a trace line, that can be made before the macro is |
375 | actually expanded. Used from expand_macro (). |
376 `-----------------------------------------------------------------------*/
379 trace_pre (const char *name
, int id
, int argc
, token_data
**argv
)
385 trace_format ("%s", name
);
387 if (argc
> 1 && (debug_level
& DEBUG_TRACE_ARGS
))
391 for (i
= 1; i
< argc
; i
++)
396 switch (TOKEN_DATA_TYPE (argv
[i
]))
399 trace_format ("%l%S%r", TOKEN_DATA_TEXT (argv
[i
]));
403 bp
= find_builtin_by_addr (TOKEN_DATA_FUNC (argv
[i
]));
406 M4ERROR ((warning_status
, 0, "\
407 INTERNAL ERROR: builtin not found in builtin table! (trace_pre ())"));
410 trace_format ("<%s>", bp
->name
);
414 M4ERROR ((warning_status
, 0,
415 "INTERNAL ERROR: bad token data type (trace_pre ())"));
423 if (debug_level
& DEBUG_TRACE_CALL
)
425 trace_format (" -> ???");
430 /*-------------------------------------------------------------------.
431 | Format the final part of a trace line and print it all. Used from |
433 `-------------------------------------------------------------------*/
436 trace_post (const char *name
, int id
, int argc
, token_data
**argv
,
437 const char *expanded
)
439 if (debug_level
& DEBUG_TRACE_CALL
)
442 trace_format ("%s%s", name
, (argc
> 1) ? "(...)" : "");
445 if (expanded
&& (debug_level
& DEBUG_TRACE_EXPANSION
))
446 trace_format (" -> %l%S%r", expanded
);