1 /*
2 * Utility routines
3 *
4 * Copyright 1998 Bertho A. Stultiens
5 * Copyright 2002 Ove Kaaven
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <assert.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <string.h>
30 #include <ctype.h>
31
32 #include "widl.h"
33 #include "utils.h"
34 #include "parser.h"
35
36 #define CURRENT_LOCATION { input_name ? input_name : "stdin", line_number, parser_text }
37
38 static const int want_near_indication = 0;
39
40 static void make_print(char *str)
41 {
42 while(*str)
43 {
44 if(!isprint(*str))
45 *str = ' ';
46 str++;
47 }
48 }
49
50 static void generic_msg(const loc_info_t *loc_info, const char *s, const char *t, va_list ap)
51 {
52 fprintf(stderr, "%s:%d: %s: ", loc_info->input_name, loc_info->line_number, t);
53 vfprintf(stderr, s, ap);
54
55 if (want_near_indication)
56 {
57 char *cpy;
58 if(loc_info->near_text)
59 {
60 cpy = xstrdup(loc_info->near_text);
61 make_print(cpy);
62 fprintf(stderr, " near '%s'", cpy);
63 free(cpy);
64 }
65 }
66 }
67
68
69 void error_loc(const char *s, ...)
70 {
71 loc_info_t cur_loc = CURRENT_LOCATION;
72 va_list ap;
73 va_start(ap, s);
74 generic_msg(&cur_loc, s, "error", ap);
75 va_end(ap);
76 exit(1);
77 }
78
79 /* yyerror: yacc assumes this is not newline terminated. */
80 void parser_error(const char *s)
81 {
82 error_loc("%s\n", s);
83 }
84
85 void error_loc_info(const loc_info_t *loc_info, const char *s, ...)
86 {
87 va_list ap;
88 va_start(ap, s);
89 generic_msg(loc_info, s, "error", ap);
90 va_end(ap);
91 exit(1);
92 }
93
94 int parser_warning(const char *s, ...)
95 {
96 loc_info_t cur_loc = CURRENT_LOCATION;
97 va_list ap;
98 va_start(ap, s);
99 generic_msg(&cur_loc, s, "warning", ap);
100 va_end(ap);
101 return 0;
102 }
103
104 void error(const char *s, ...)
105 {
106 va_list ap;
107 va_start(ap, s);
108 fprintf(stderr, "error: ");
109 vfprintf(stderr, s, ap);
110 va_end(ap);
111 exit(2);
112 }
113
114 void warning(const char *s, ...)
115 {
116 va_list ap;
117 va_start(ap, s);
118 fprintf(stderr, "warning: ");
119 vfprintf(stderr, s, ap);
120 va_end(ap);
121 }
122
123 void warning_loc_info(const loc_info_t *loc_info, const char *s, ...)
124 {
125 va_list ap;
126 va_start(ap, s);
127 generic_msg(loc_info, s, "warning", ap);
128 va_end(ap);
129 }
130
131 void chat(const char *s, ...)
132 {
133 if(debuglevel & DEBUGLEVEL_CHAT)
134 {
135 va_list ap;
136 va_start(ap, s);
137 fprintf(stderr, "chat: ");
138 vfprintf(stderr, s, ap);
139 va_end(ap);
140 }
141 }
142
143 char *dup_basename(const char *name, const char *ext)
144 {
145 int namelen;
146 int extlen = strlen(ext);
147 char *base;
148 char *slash;
149
150 if(!name)
151 name = "widl.tab";
152
153 slash = strrchr(name, '/');
154 if (!slash)
155 slash = strrchr(name, '\\');
156
157 if (slash)
158 name = slash + 1;
159
160 namelen = strlen(name);
161
162 /* +4 for later extension and +1 for '\0' */
163 base = xmalloc(namelen +4 +1);
164 strcpy(base, name);
165 if(!strcasecmp(name + namelen-extlen, ext))
166 {
167 base[namelen - extlen] = '\0';
168 }
169 return base;
170 }
171
172 size_t widl_getline(char **linep, size_t *lenp, FILE *fp)
173 {
174 char *line = *linep;
175 size_t len = *lenp;
176 size_t n = 0;
177
178 if (!line)
179 {
180 len = 64;
181 line = xmalloc(len);
182 }
183
184 while (fgets(&line[n], len - n, fp))
185 {
186 n += strlen(&line[n]);
187 if (line[n - 1] == '\n')
188 break;
189 else if (n == len - 1)
190 {
191 len *= 2;
192 line = xrealloc(line, len);
193 }
194 }
195
196 *linep = line;
197 *lenp = len;
198 return n;
199 }
200
201 void *xmalloc(size_t size)
202 {
203 void *res;
204
205 assert(size > 0);
206 res = malloc(size);
207 if(res == NULL)
208 {
209 error("Virtual memory exhausted.\n");
210 }
211 memset(res, 0x55, size);
212 return res;
213 }
214
215
216 void *xrealloc(void *p, size_t size)
217 {
218 void *res;
219
220 assert(size > 0);
221 res = realloc(p, size);
222 if(res == NULL)
223 {
224 error("Virtual memory exhausted.\n");
225 }
226 return res;
227 }
228
229 char *xstrdup(const char *str)
230 {
231 char *s;
232
233 assert(str != NULL);
234 s = xmalloc(strlen(str)+1);
235 return strcpy(s, str);
236 }
237
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.