Move GCC attribute declarations from pref.h.orig to new file
[pspp-builds.git] / src / libpspp / message.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18    02110-1301, USA. */
19
20 #if !error_h
21 #define error_h 1
22
23 #include <stdarg.h>
24 #include <stdbool.h>
25 #include "compiler.h"
26
27 /* Message classes. */
28 enum
29   {
30     SE, SW, SM,                 /* Script error/warning/message. */
31     IE, IS,                     /* Installation error/script error. */
32     DE, DW,                     /* Data-file error/warning. */
33     ME, MW, MM,                 /* General error/warning/message. */
34     ERR_CLASS_COUNT,            /* Number of message classes. */
35     ERR_CLASS_MASK = 0xf,       /* Bitmask for class. */
36     ERR_VERBOSITY_SHIFT = 4,    /* Shift count for verbosity. */
37     ERR_VERBOSITY_MASK = 0xf    /* Bitmask for verbosity. */
38   };
39
40 /* If passed to msg() as CLASS, the return value will cause the message
41    to be displayed only if `verbosity' is at least LEVEL. */
42 #define VM(LEVEL) (MM | ((LEVEL) << ERR_VERBOSITY_SHIFT))
43
44 /* A file location.  */
45 struct file_locator
46   {
47     const char *filename;               /* Filename. */
48     int line_number;                    /* Line number. */
49   };
50
51 /* An error message. */
52 struct error
53   {
54     int class;                  /* One of the classes above. */
55     struct file_locator where;  /* File location, or (NULL, -1). */
56     const char *title;          /* Special text inserted if not null. */
57   };
58
59 /* Number of errors, warnings reported. */
60 extern int err_error_count;
61 extern int err_warning_count;
62
63 /* If number of allowable errors/warnings is exceeded, then a message
64    is displayed and this flag is set to suppress subsequent
65    messages. */
66 extern int err_already_flagged;
67
68 /* Nonnegative verbosity level.  Higher value == more verbose. */
69 extern int err_verbosity;
70
71 /* Functions. */
72 void msg (int class, const char *format, ...)
73      PRINTF_FORMAT (2, 3);
74 void tmsg (int class, const char *title, const char *format, ...)
75      PRINTF_FORMAT (3, 4);
76
77 /* File-locator stack. */
78 void err_push_file_locator (const struct file_locator *);
79 void err_pop_file_locator (const struct file_locator *);
80 void err_location (struct file_locator *);
81
82 /* Obscure functions. */
83 void err_set_command_name (const char *);
84 void err_done (void);
85 void err_check_count (void);
86 void err_vmsg (const struct error *, const char *, va_list);
87
88 /* Used in panic situations only */
89 void request_bug_report_and_abort(const char *msg );
90
91 void err_assert_fail(const char *expr, const char *file, int line);
92
93 #undef __STRING
94 #define __STRING(x) #x
95 #undef assert
96
97                                
98 #define assert(expr) ( (void) ( expr ? (void) 0 : \
99                err_assert_fail(__STRING(expr), __FILE__, __LINE__)) )
100
101
102
103 #endif /* error.h */