]>
git.saurik.com Git - bison.git/blob - src/complain.c
1 /* Declaration for error-reporting function for Bison.
3 Copyright (C) 2000-2002, 2004-2006, 2009-2012 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 3 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, see <http://www.gnu.org/licenses/>. */
19 /* Based on error.c and error.h,
20 written by David MacKenzie <djm@gnu.ai.mit.edu>. */
32 bool complaint_issued
;
33 static unsigned *indent_ptr
= 0;
37 /** Report an error message.
39 * \param loc the location, defaulting to the current file,
40 * or the program name.
41 * \param prefix put before the message (e.g., "warning").
42 * \param message the error message, a printf format string. Iff it
43 * ends with ": ", then no trailing newline is printed,
44 * and the caller should print the remaining
45 * newline-terminated message to stderr.
46 * \param args the arguments of the format string.
50 error_message (location
*loc
,
52 const char *message
, va_list args
)
57 pos
+= location_print (stderr
, *loc
);
59 pos
+= fprintf(stderr
, "%s", current_file
? current_file
: program_name
);
60 pos
+= fprintf(stderr
, ": ");
66 else if (*indent_ptr
> pos
)
67 fprintf (stderr
, "%*s", *indent_ptr
- pos
, "");
72 fprintf (stderr
, "%s: ", prefix
);
74 vfprintf (stderr
, message
, args
);
76 size_t l
= strlen (message
);
77 if (l
< 2 || message
[l
-2] != ':' || message
[l
-1] != ' ')
85 /** Wrap error_message() with varargs handling. */
86 #define ERROR_MESSAGE(Loc, Prefix, Message) \
89 va_start (args, Message); \
90 error_message (Loc, Prefix, Message, args); \
95 /*--------------------------------.
96 | Report a warning, and proceed. |
97 `--------------------------------*/
100 set_warning_issued (void)
102 static bool warning_issued
= false;
103 if (!warning_issued
&& (warnings_flag
& warnings_error
))
105 fprintf (stderr
, "%s: warnings being treated as errors\n", program_name
);
106 complaint_issued
= true;
108 warning_issued
= true;
112 warn_at (location loc
, const char *message
, ...)
114 if (!(warnings_flag
& warnings_other
))
116 set_warning_issued ();
117 ERROR_MESSAGE (&loc
, _("warning"), message
);
121 warn_at_indent (location loc
, unsigned *indent
,
122 const char *message
, ...)
124 if (!(warnings_flag
& warnings_other
))
126 set_warning_issued ();
128 ERROR_MESSAGE (&loc
, _("warning"), message
);
132 warn (const char *message
, ...)
134 if (!(warnings_flag
& warnings_other
))
136 set_warning_issued ();
137 ERROR_MESSAGE (NULL
, _("warning"), message
);
141 /*-----------------------------------------------------------.
142 | An error has occurred, but we can proceed, and die later. |
143 `-----------------------------------------------------------*/
146 complain_at (location loc
, const char *message
, ...)
148 ERROR_MESSAGE (&loc
, NULL
, message
);
149 complaint_issued
= true;
153 complain_at_indent (location loc
, unsigned *indent
,
154 const char *message
, ...)
157 ERROR_MESSAGE (&loc
, NULL
, message
);
158 complaint_issued
= true;
162 complain (const char *message
, ...)
164 ERROR_MESSAGE (NULL
, NULL
, message
);
165 complaint_issued
= true;
169 /*--------------------------------------------------------------.
170 | An incompatibility with POSIX Yacc: mapped either to warn* or |
171 | complain* depending on yacc_flag. |
172 `--------------------------------------------------------------*/
175 yacc_at (location loc
, const char *message
, ...)
179 ERROR_MESSAGE (&loc
, NULL
, message
);
180 complaint_issued
= true;
182 else if (warnings_flag
& warnings_yacc
)
184 set_warning_issued ();
185 ERROR_MESSAGE (&loc
, _("warning"), message
);
190 midrule_value_at (location loc
, const char *message
, ...)
192 if (!(warnings_flag
& warnings_midrule_values
))
194 set_warning_issued ();
195 ERROR_MESSAGE (&loc
, _("warning"), message
);
198 /*-------------------------------------------------.
199 | A severe error has occurred, we cannot proceed. |
200 `-------------------------------------------------*/
203 fatal_at (location loc
, const char *message
, ...)
205 ERROR_MESSAGE (&loc
, _("fatal error"), message
);
210 fatal (const char *message
, ...)
212 ERROR_MESSAGE (NULL
, _("fatal error"), message
);