]>
Commit | Line | Data |
---|---|---|
c906108c SS |
1 | /* Support for complaint handling during symbol reading in GDB. |
2 | Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc. | |
3 | ||
c5aa993b | 4 | This file is part of GDB. |
c906108c | 5 | |
c5aa993b JM |
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 2 of the License, or | |
9 | (at your option) any later version. | |
c906108c | 10 | |
c5aa993b JM |
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. | |
c906108c | 15 | |
c5aa993b JM |
16 | You should have received a copy of the GNU General Public License |
17 | along with this program; if not, write to the Free Software | |
18 | Foundation, Inc., 59 Temple Place - Suite 330, | |
19 | Boston, MA 02111-1307, USA. */ | |
c906108c SS |
20 | |
21 | #include "defs.h" | |
22 | #include "complaints.h" | |
23 | #include "gdbcmd.h" | |
24 | ||
392a587b JM |
25 | extern void _initialize_complaints PARAMS ((void)); |
26 | ||
c906108c SS |
27 | /* Structure to manage complaints about symbol file contents. */ |
28 | ||
c5aa993b JM |
29 | struct complaint complaint_root[1] = |
30 | { | |
c906108c | 31 | { |
c5aa993b JM |
32 | (char *) NULL, /* Complaint message */ |
33 | 0, /* Complaint counter */ | |
34 | complaint_root /* Next complaint. */ | |
c906108c SS |
35 | } |
36 | }; | |
37 | ||
38 | /* How many complaints about a particular thing should be printed before | |
39 | we stop whining about it? Default is no whining at all, since so many | |
40 | systems have ill-constructed symbol files. */ | |
41 | ||
42 | static unsigned int stop_whining = 0; | |
43 | ||
44 | /* Should each complaint be self explanatory, or should we assume that | |
45 | a series of complaints is being produced? | |
46 | case 0: self explanatory message. | |
47 | case 1: First message of a series that must start off with explanation. | |
48 | case 2: Subsequent message, when user already knows we are reading | |
c5aa993b | 49 | symbols and we can just state our piece. */ |
c906108c SS |
50 | |
51 | static int complaint_series = 0; | |
52 | ||
53 | /* External variables and functions referenced. */ | |
54 | ||
55 | extern int info_verbose; | |
c906108c | 56 | \f |
c5aa993b | 57 | |
c906108c SS |
58 | /* Functions to handle complaints during symbol reading. */ |
59 | ||
60 | /* Print a complaint about the input symbols, and link the complaint block | |
61 | into a chain for later handling. */ | |
62 | ||
c906108c | 63 | void |
c5aa993b | 64 | complain (struct complaint *complaint,...) |
c906108c SS |
65 | { |
66 | va_list args; | |
c906108c | 67 | va_start (args, complaint); |
c906108c | 68 | |
c5aa993b JM |
69 | complaint->counter++; |
70 | if (complaint->next == NULL) | |
c906108c | 71 | { |
c5aa993b JM |
72 | complaint->next = complaint_root->next; |
73 | complaint_root->next = complaint; | |
c906108c | 74 | } |
c5aa993b | 75 | if (complaint->counter > stop_whining) |
c906108c SS |
76 | { |
77 | return; | |
78 | } | |
79 | wrap_here (""); | |
80 | ||
81 | switch (complaint_series + (info_verbose << 1)) | |
82 | { | |
83 | ||
84 | /* Isolated messages, must be self-explanatory. */ | |
c5aa993b JM |
85 | case 0: |
86 | begin_line (); | |
6426a772 | 87 | fputs_filtered ("During symbol reading, ", gdb_stderr); |
c5aa993b | 88 | wrap_here (""); |
6426a772 JM |
89 | vfprintf_filtered (gdb_stderr, complaint->message, args); |
90 | fputs_filtered (".\n", gdb_stderr); | |
c5aa993b | 91 | break; |
c906108c SS |
92 | |
93 | /* First of a series, without `set verbose'. */ | |
c5aa993b JM |
94 | case 1: |
95 | begin_line (); | |
6426a772 JM |
96 | fputs_filtered ("During symbol reading...", gdb_stderr); |
97 | vfprintf_filtered (gdb_stderr, complaint->message, args); | |
98 | fputs_filtered ("...", gdb_stderr); | |
c5aa993b JM |
99 | wrap_here (""); |
100 | complaint_series++; | |
101 | break; | |
c906108c SS |
102 | |
103 | /* Subsequent messages of a series, or messages under `set verbose'. | |
c5aa993b JM |
104 | (We'll already have produced a "Reading in symbols for XXX..." |
105 | message and will clean up at the end with a newline.) */ | |
106 | default: | |
6426a772 JM |
107 | vfprintf_filtered (gdb_stderr, complaint->message, args); |
108 | fputs_filtered ("...", gdb_stderr); | |
c5aa993b | 109 | wrap_here (""); |
c906108c SS |
110 | } |
111 | /* If GDB dumps core, we'd like to see the complaints first. Presumably | |
112 | GDB will not be sending so many complaints that this becomes a | |
113 | performance hog. */ | |
6426a772 | 114 | gdb_flush (gdb_stderr); |
c906108c SS |
115 | va_end (args); |
116 | } | |
117 | ||
118 | /* Clear out all complaint counters that have ever been incremented. | |
119 | If sym_reading is 1, be less verbose about successive complaints, | |
120 | since the messages are appearing all together during a command that | |
121 | reads symbols (rather than scattered around as psymtabs get fleshed | |
122 | out into symtabs at random times). If noisy is 1, we are in a | |
123 | noisy symbol reading command, and our caller will print enough | |
124 | context for the user to figure it out. */ | |
125 | ||
126 | void | |
127 | clear_complaints (sym_reading, noisy) | |
128 | int sym_reading; | |
129 | int noisy; | |
130 | { | |
131 | struct complaint *p; | |
132 | ||
c5aa993b | 133 | for (p = complaint_root->next; p != complaint_root; p = p->next) |
c906108c | 134 | { |
c5aa993b | 135 | p->counter = 0; |
c906108c SS |
136 | } |
137 | ||
138 | if (!sym_reading && !noisy && complaint_series > 1) | |
139 | { | |
140 | /* Terminate previous series, since caller won't. */ | |
141 | puts_filtered ("\n"); | |
142 | } | |
143 | ||
144 | complaint_series = sym_reading ? 1 + noisy : 0; | |
145 | } | |
146 | ||
147 | void | |
148 | _initialize_complaints () | |
149 | { | |
150 | add_show_from_set | |
151 | (add_set_cmd ("complaints", class_support, var_zinteger, | |
152 | (char *) &stop_whining, | |
153 | "Set max number of complaints about incorrect symbols.", | |
154 | &setlist), | |
155 | &showlist); | |
156 | ||
157 | } |