1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2009, 2010,
3 2011, 2013 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "libpspp/message.h"
29 #include "libpspp/cast.h"
30 #include "libpspp/str.h"
31 #include "libpspp/version.h"
32 #include "data/settings.h"
34 #include "gl/minmax.h"
35 #include "gl/progname.h"
36 #include "gl/xalloc.h"
37 #include "gl/xvasprintf.h"
40 #define _(msgid) gettext (msgid)
42 /* Message handler as set by msg_set_handler(). */
43 static void (*msg_handler) (const struct msg *, void *aux);
46 /* Disables emitting messages if positive. */
47 static int messages_disabled;
49 /* Public functions. */
53 vmsg (enum msg_class class, const char *format, va_list args)
57 m.category = msg_class_to_category (class);
58 m.severity = msg_class_to_severity (class);
59 m.text = xvasprintf (format, args);
61 m.first_line = m.last_line = 0;
62 m.first_column = m.last_column = 0;
67 /* Writes error message in CLASS, with text FORMAT, formatted with
68 printf, to the standard places. */
70 msg (enum msg_class class, const char *format, ...)
73 va_start (args, format);
74 vmsg (class, format, args);
81 msg_error (int errnum, const char *format, ...)
87 m.category = MSG_C_GENERAL;
88 m.severity = MSG_S_ERROR;
90 va_start (args, format);
91 e = xvasprintf (format, args);
95 m.first_line = m.last_line = 0;
96 m.first_column = m.last_column = 0;
97 m.text = xasprintf (_("%s: %s"), e, strerror (errnum));
106 msg_set_handler (void (*handler) (const struct msg *, void *aux), void *aux)
108 msg_handler = handler;
112 /* Working with messages. */
115 msg_severity_to_string (enum msg_severity severity)
129 /* Duplicate a message */
131 msg_dup (const struct msg *m)
135 new_msg = xmemdup (m, sizeof *m);
136 if (m->file_name != NULL)
137 new_msg->file_name = xstrdup (m->file_name);
138 new_msg->text = xstrdup (m->text);
143 /* Frees a message created by msg_dup().
145 (Messages not created by msg_dup(), as well as their file_name
146 members, are typically not dynamically allocated, so this function should
147 not be used to destroy them.) */
149 msg_destroy (struct msg *m)
157 msg_to_string (const struct msg *m, const char *command_name)
163 if (m->category != MSG_C_GENERAL
164 && (m->file_name || m->first_line > 0 || m->first_column > 0))
166 int l1 = m->first_line;
167 int l2 = MAX (m->first_line, m->last_line - 1);
168 int c1 = m->first_column;
169 int c2 = MAX (m->first_column, m->last_column - 1);
172 ds_put_format (&s, "%s", m->file_name);
176 if (!ds_is_empty (&s))
177 ds_put_byte (&s, ':');
182 ds_put_format (&s, "%d.%d-%d.%d", l1, c1, l2, c2);
184 ds_put_format (&s, "%d-%d", l1, l2);
192 /* The GNU coding standards say to use
193 LINENO-1.COLUMN-1-COLUMN-2 for this case, but GNU
194 Emacs interprets COLUMN-2 as LINENO-2 if I do that.
195 I've submitted an Emacs bug report:
196 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=7725.
198 For now, let's be compatible. */
199 ds_put_format (&s, "%d.%d-%d.%d", l1, c1, l1, c2);
202 ds_put_format (&s, "%d.%d", l1, c1);
205 ds_put_format (&s, "%d", l1);
211 ds_put_format (&s, ".%d-%d", c1, c2);
213 ds_put_format (&s, ".%d", c1);
215 ds_put_cstr (&s, ": ");
218 ds_put_format (&s, "%s: ", msg_severity_to_string (m->severity));
220 if (m->category == MSG_C_SYNTAX && command_name != NULL)
221 ds_put_format (&s, "%s: ", command_name);
223 ds_put_cstr (&s, m->text);
229 /* Number of messages reported, by severity level. */
230 static int counts[MSG_N_SEVERITIES];
232 /* True after the maximum number of errors or warnings has been exceeded. */
233 static bool too_many_errors;
235 /* True after the maximum number of notes has been exceeded. */
236 static bool too_many_notes;
238 /* True iff warnings have been explicitly disabled (MXWARNS = 0) */
239 static bool warnings_off = false;
241 /* Checks whether we've had so many errors that it's time to quit
242 processing this syntax file. */
244 msg_ui_too_many_errors (void)
246 return too_many_errors;
250 msg_ui_disable_warnings (bool x)
257 msg_ui_reset_counts (void)
261 for (i = 0; i < MSG_N_SEVERITIES; i++)
263 too_many_errors = false;
264 too_many_notes = false;
268 msg_ui_any_errors (void)
270 return counts[MSG_S_ERROR] > 0;
274 static int entrances = 0;
277 ship_message (struct msg *m)
282 if (msg_handler && entrances <= 1)
283 msg_handler (m, msg_aux);
286 fwrite (m->text, 1, strlen (m->text), stderr);
287 fwrite ("\n", 1, 1, stderr);
295 submit_note (char *s)
299 m.category = MSG_C_GENERAL;
300 m.severity = MSG_S_NOTE;
317 process_msg (struct msg *m)
319 int n_msgs, max_msgs;
322 || (too_many_notes && m->severity == MSG_S_NOTE)
323 || (warnings_off && m->severity == MSG_S_WARNING) )
328 counts[m->severity]++;
329 max_msgs = settings_get_max_messages (m->severity);
330 n_msgs = counts[m->severity];
331 if (m->severity == MSG_S_WARNING)
332 n_msgs += counts[MSG_S_ERROR];
333 if (n_msgs > max_msgs)
335 if (m->severity == MSG_S_NOTE)
337 too_many_notes = true;
338 submit_note (xasprintf (_("Notes (%d) exceed limit (%d). "
339 "Suppressing further notes."),
344 too_many_errors = true;
345 if (m->severity == MSG_S_WARNING)
346 submit_note (xasprintf (_("Warnings (%d) exceed limit (%d). Syntax processing will be halted."),
349 submit_note (xasprintf (_("Errors (%d) exceed limit (%d). Syntax processing will be halted."),
356 /* Emits M as an error message.
357 Frees allocated data in M. */
359 msg_emit (struct msg *m)
362 if (!messages_disabled)
368 /* Disables message output until the next call to msg_enable. If
369 this function is called multiple times, msg_enable must be
370 called an equal number of times before messages are actually
378 /* Enables message output that was disabled by msg_disable. */
382 assert (messages_disabled > 0);
386 /* Private functions. */
389 request_bug_report (const char *msg)
391 fprintf (stderr, "******************************************************\n");
392 fprintf (stderr, "You have discovered a bug in PSPP. Please report this\n");
393 fprintf (stderr, "to " PACKAGE_BUGREPORT ". Please include this entire\n");
394 fprintf (stderr, "message, *plus* several lines of output just above it.\n");
395 fprintf (stderr, "For the best chance at having the bug fixed, also\n");
396 fprintf (stderr, "include the syntax file that triggered it and a sample\n");
397 fprintf (stderr, "of any data file used for input.\n");
398 fprintf (stderr, "proximate cause: %s\n", msg);
399 fprintf (stderr, "version: %s\n", stat_version);
400 fprintf (stderr, "host_system: %s\n", host_system);
401 fprintf (stderr, "build_system: %s\n", build_system);
402 fprintf (stderr, "locale_dir: %s\n", locale_dir);
403 fprintf (stderr, "compiler version: %s\n",
410 fprintf (stderr, "******************************************************\n");