]>
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 warnings warnings_flag
=
33 Wconflicts_sr
| Wconflicts_rr
| Wdeprecated
| Wother
;
37 bool complaint_issued
;
38 static unsigned *indent_ptr
= 0;
41 warnings_print_categories (warnings warn_flags
)
43 if (! (warn_flags
& silent
))
45 char const *warn_names
[] =
57 for (i
= 0; i
< ARRAY_CARDINALITY (warn_names
); ++i
)
58 if (warn_flags
& 1 << i
)
60 bool err
= warn_flags
& errors_flag
;
61 fprintf (stderr
, "%s-W", any
? ", " : " [");
62 fprintf (stderr
, "%s%s", err
? "error=" : "" , warn_names
[i
]);
66 fprintf (stderr
, "]");
70 /** Report an error message.
72 * \param loc the location, defaulting to the current file,
73 * or the program name.
74 * \param flags the category for this message.
75 * \param prefix put before the message (e.g., "warning").
76 * \param message the error message, a printf format string. Iff it
77 * ends with ": ", then no trailing newline is printed,
78 * and the caller should print the remaining
79 * newline-terminated message to stderr.
80 * \param args the arguments of the format string.
84 error_message (const location
*loc
, warnings flags
, const char *prefix
,
85 const char *message
, va_list args
)
91 pos
+= location_print (stderr
, *loc
);
93 pos
+= fprintf(stderr
, "%s", current_file
? current_file
: program_name
);
94 pos
+= fprintf(stderr
, ": ");
100 else if (*indent_ptr
> pos
)
101 fprintf (stderr
, "%*s", *indent_ptr
- pos
, "");
106 fprintf (stderr
, "%s: ", prefix
);
108 vfprintf (stderr
, message
, args
);
109 warnings_print_categories (flags
);
111 size_t l
= strlen (message
);
112 if (l
< 2 || message
[l
-2] != ':' || message
[l
-1] != ' ')
120 /** Raise a complaint. That can be a fatal error, a complaint or just a
124 complains (const location
*loc
, warnings flags
, const char *message
,
130 error_message (loc
, fatal
, _("fatal error"), message
, args
);
133 else if (flags
& (complaint
| warnings_flag
))
136 flags
& (errors_flag
| complaint
) ? _("error") : _("warning");
137 if (flags
& (complaint
| errors_flag
))
138 complaint_issued
= true;
139 error_message (loc
, flags
,
140 indent_ptr
&& *indent_ptr
? NULL
: prefix
,
146 complain (warnings flags
, const char *message
, ...)
149 va_start (args
, message
);
150 complains (NULL
, flags
, message
, args
);
155 complain_at (location loc
, warnings flags
, const char *message
, ...)
158 va_start (args
, message
);
159 complains (&loc
, flags
, message
, args
);
163 void complain_at_indent (location loc
, warnings flags
, unsigned *indent
,
164 const char *message
, ...)
169 va_start (args
, message
);
170 complains (&loc
, flags
, message
, args
);