1 /* Default error handlers for CPP Library.
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1998, 1999, 2000
3 Free Software Foundation, Inc.
4 Written by Per Bothner, 1994.
5 Based on CCCP program by Paul Rubin, June 1986
6 Adapted to ANSI C, Richard Stallman, Jan 1987
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 In other words, you are welcome to use, share and improve this program.
23 You are forbidden to forbid anyone else to use, share and improve
24 what you give them. Help stamp out software-hoarding! */
32 static void print_containing_files
PARAMS ((cpp_reader
*, cpp_buffer
*));
33 static void print_file_and_line
PARAMS ((const char *, unsigned int,
35 static void v_message
PARAMS ((cpp_reader
*, int,
37 unsigned int, unsigned int,
38 const char *, va_list));
40 /* Print the file names and line numbers of the #include
41 commands which led to the current file. */
44 print_containing_files (pfile
, ip
)
50 /* If stack of files hasn't changed since we last printed
51 this info, don't repeat it. */
52 if (pfile
->input_stack_listing_current
)
55 /* Find the other, outer source files. */
56 for (ip
= CPP_PREV_BUFFER (ip
); ip
!= NULL
; ip
= CPP_PREV_BUFFER (ip
))
61 fprintf (stderr
, _("In file included from %s:%u"),
62 ip
->nominal_fname
, CPP_BUF_LINE (ip
));
65 /* Translators note: this message is used in conjunction
66 with "In file included from %s:%ld" and some other
67 tricks. We want something like this:
69 In file included from sys/select.h:123,
72 bits/select.h:45: <error message here>
74 The trailing comma is at the beginning of this message,
75 and the trailing colon is not translated. */
76 fprintf (stderr
, _(",\n from %s:%u"),
77 ip
->nominal_fname
, CPP_BUF_LINE (ip
));
80 fputs (":\n", stderr
);
82 /* Record we have printed the status as of this time. */
83 pfile
->input_stack_listing_current
= 1;
87 print_file_and_line (filename
, line
, column
)
89 unsigned int line
, column
;
91 if (filename
== 0 || *filename
== '\0')
94 fputs (_("<command line>: "), stderr
);
96 fprintf (stderr
, "%s:%u:%u: ", filename
, line
, column
);
98 fprintf (stderr
, "%s:%u: ", filename
, line
);
101 /* IS_ERROR is 3 for ICE, 2 for merely "fatal" error,
102 1 for error, 0 for warning. */
105 v_message (pfile
, is_error
, file
, line
, col
, msg
, ap
)
114 cpp_buffer
*ip
= cpp_file_buffer (pfile
);
119 file
= ip
->nominal_fname
;
122 line
= CPP_BUF_LINE (ip
);
123 col
= CPP_BUF_COL (ip
);
125 print_containing_files (pfile
, ip
);
126 print_file_and_line (file
, line
,
127 CPP_OPTION (pfile
, show_column
) ? col
: 0);
130 fprintf (stderr
, "%s: ", progname
);
135 fprintf (stderr
, _("warning: "));
138 if (pfile
->errors
< CPP_FATAL_LIMIT
)
142 pfile
->errors
= CPP_FATAL_LIMIT
;
145 fprintf (stderr
, _("internal error: "));
146 pfile
->errors
= CPP_FATAL_LIMIT
;
149 cpp_ice (pfile
, "bad is_error(%d) in v_message", is_error
);
152 vfprintf (stderr
, _(msg
), ap
);
156 /* Exported interface. */
158 /* For reporting internal errors. Prints "internal error: " for you,
159 otherwise identical to cpp_fatal. */
162 cpp_ice
VPARAMS ((cpp_reader
*pfile
, const char *msgid
, ...))
164 #ifndef ANSI_PROTOTYPES
170 VA_START (ap
, msgid
);
172 #ifndef ANSI_PROTOTYPES
173 pfile
= va_arg (ap
, cpp_reader
*);
174 msgid
= va_arg (ap
, const char *);
177 v_message (pfile
, 3, NULL
, 0, 0, msgid
, ap
);
181 /* Same as cpp_error, except we consider the error to be "fatal",
182 such as inconsistent options. I.e. there is little point in continuing.
183 (We do not exit, to support use of cpplib as a library.
184 Instead, it is the caller's responsibility to check
188 cpp_fatal
VPARAMS ((cpp_reader
*pfile
, const char *msgid
, ...))
190 #ifndef ANSI_PROTOTYPES
196 VA_START (ap
, msgid
);
198 #ifndef ANSI_PROTOTYPES
199 pfile
= va_arg (ap
, cpp_reader
*);
200 msgid
= va_arg (ap
, const char *);
203 v_message (pfile
, 2, NULL
, 0, 0, msgid
, ap
);
208 cpp_error
VPARAMS ((cpp_reader
* pfile
, const char *msgid
, ...))
210 #ifndef ANSI_PROTOTYPES
218 #ifndef ANSI_PROTOTYPES
219 pfile
= va_arg (ap
, cpp_reader
*);
220 msgid
= va_arg (ap
, const char *);
223 if (CPP_OPTION (pfile
, inhibit_errors
))
226 v_message (pfile
, 1, NULL
, 0, 0, msgid
, ap
);
231 cpp_error_with_line
VPARAMS ((cpp_reader
*pfile
, int line
, int column
,
232 const char *msgid
, ...))
234 #ifndef ANSI_PROTOTYPES
242 VA_START (ap
, msgid
);
244 #ifndef ANSI_PROTOTYPES
245 pfile
= va_arg (ap
, cpp_reader
*);
246 line
= va_arg (ap
, int);
247 column
= va_arg (ap
, int);
248 msgid
= va_arg (ap
, const char *);
251 if (CPP_OPTION (pfile
, inhibit_errors
))
254 v_message (pfile
, 1, NULL
, line
, column
, msgid
, ap
);
258 /* Error including a message from `errno'. */
260 cpp_error_from_errno (pfile
, name
)
264 cpp_error (pfile
, "%s: %s", name
, xstrerror (errno
));
268 cpp_warning
VPARAMS ((cpp_reader
* pfile
, const char *msgid
, ...))
270 #ifndef ANSI_PROTOTYPES
276 VA_START (ap
, msgid
);
278 #ifndef ANSI_PROTOTYPES
279 pfile
= va_arg (ap
, cpp_reader
*);
280 msgid
= va_arg (ap
, const char *);
283 if (CPP_OPTION (pfile
, inhibit_warnings
))
286 v_message (pfile
, 0, NULL
, 0, 0, msgid
, ap
);
291 cpp_warning_with_line
VPARAMS ((cpp_reader
* pfile
, int line
, int column
,
292 const char *msgid
, ...))
294 #ifndef ANSI_PROTOTYPES
302 VA_START (ap
, msgid
);
304 #ifndef ANSI_PROTOTYPES
305 pfile
= va_arg (ap
, cpp_reader
*);
306 line
= va_arg (ap
, int);
307 column
= va_arg (ap
, int);
308 msgid
= va_arg (ap
, const char *);
311 if (CPP_OPTION (pfile
, inhibit_warnings
))
314 v_message (pfile
, 0, NULL
, line
, column
, msgid
, ap
);
319 cpp_pedwarn
VPARAMS ((cpp_reader
* pfile
, const char *msgid
, ...))
321 #ifndef ANSI_PROTOTYPES
327 VA_START (ap
, msgid
);
329 #ifndef ANSI_PROTOTYPES
330 pfile
= va_arg (ap
, cpp_reader
*);
331 msgid
= va_arg (ap
, const char *);
334 if (CPP_OPTION (pfile
, pedantic_errors
)
335 ? CPP_OPTION (pfile
, inhibit_errors
)
336 : CPP_OPTION (pfile
, inhibit_warnings
))
339 v_message (pfile
, CPP_OPTION (pfile
, pedantic_errors
),
340 NULL
, 0, 0, msgid
, ap
);
345 cpp_pedwarn_with_line
VPARAMS ((cpp_reader
* pfile
, int line
, int column
,
346 const char *msgid
, ...))
348 #ifndef ANSI_PROTOTYPES
356 VA_START (ap
, msgid
);
358 #ifndef ANSI_PROTOTYPES
359 pfile
= va_arg (ap
, cpp_reader
*);
360 line
= va_arg (ap
, int);
361 column
= va_arg (ap
, int);
362 msgid
= va_arg (ap
, const char *);
365 if (CPP_OPTION (pfile
, pedantic_errors
)
366 ? CPP_OPTION (pfile
, inhibit_errors
)
367 : CPP_OPTION (pfile
, inhibit_warnings
))
370 v_message (pfile
, CPP_OPTION (pfile
, pedantic_errors
),
371 NULL
, line
, column
, msgid
, ap
);
375 /* Report a warning (or an error if pedantic_errors)
376 giving specified file name and line number, not current. */
379 cpp_pedwarn_with_file_and_line
VPARAMS ((cpp_reader
*pfile
,
380 const char *file
, int line
, int col
,
381 const char *msgid
, ...))
383 #ifndef ANSI_PROTOTYPES
392 VA_START (ap
, msgid
);
394 #ifndef ANSI_PROTOTYPES
395 pfile
= va_arg (ap
, cpp_reader
*);
396 file
= va_arg (ap
, const char *);
397 line
= va_arg (ap
, int);
398 col
= va_arg (ap
, int);
399 msgid
= va_arg (ap
, const char *);
402 if (CPP_OPTION (pfile
, pedantic_errors
)
403 ? CPP_OPTION (pfile
, inhibit_errors
)
404 : CPP_OPTION (pfile
, inhibit_warnings
))
407 v_message (pfile
, CPP_OPTION (pfile
, pedantic_errors
),
408 file
, line
, col
, msgid
, ap
);
412 /* Print an error message not associated with a file. */
414 cpp_notice
VPARAMS ((cpp_reader
*pfile
, const char *msgid
, ...))
416 #ifndef ANSI_PROTOTYPES
422 VA_START (ap
, msgid
);
424 #ifndef ANSI_PROTOTYPES
425 pfile
= va_arg (ap
, cpp_reader
*);
426 msgid
= va_arg (ap
, const char *);
429 if (pfile
->errors
< CPP_FATAL_LIMIT
)
432 vfprintf (stderr
, _(msgid
), ap
);
439 cpp_notice_from_errno (pfile
, name
)
445 cpp_notice (pfile
, "%s: %s", name
, xstrerror (errno
));