push 97f44e0adb27fff75ba63d8fb97c65db9edfbe82
[wine/hacks.git] / tools / widl / utils.c
blobe77361ce339eeba2aed59d676a71136c69255e5e
1 /*
2 * Utility routines
4 * Copyright 1998 Bertho A. Stultiens
5 * Copyright 2002 Ove Kaaven
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.
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.
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
22 #include "config.h"
23 #include "wine/port.h"
25 #include <assert.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <string.h>
30 #include <ctype.h>
32 #include "widl.h"
33 #include "utils.h"
34 #include "parser.h"
36 static const int want_near_indication = 0;
38 static void make_print(char *str)
40 while(*str)
42 if(!isprint(*str))
43 *str = ' ';
44 str++;
48 static void generic_msg(const char *s, const char *t, const char *n, va_list ap)
50 fprintf(stderr, "%s:%d: %s: ", input_name ? input_name : "stdin", line_number, t);
51 vfprintf(stderr, s, ap);
53 if (want_near_indication)
55 char *cpy;
56 if(n)
58 cpy = xstrdup(n);
59 make_print(cpy);
60 fprintf(stderr, " near '%s'", cpy);
61 free(cpy);
67 /* yyerror: yacc assumes this is not newline terminated. */
68 int parser_error(const char *s, ...)
70 va_list ap;
71 va_start(ap, s);
72 generic_msg(s, "Error", parser_text, ap);
73 fprintf(stderr, "\n");
74 va_end(ap);
75 exit(1);
76 return 1;
79 void error_loc(const char *s, ...)
81 va_list ap;
82 va_start(ap, s);
83 generic_msg(s, "Error", parser_text, ap);
84 va_end(ap);
85 exit(1);
88 int parser_warning(const char *s, ...)
90 va_list ap;
91 va_start(ap, s);
92 generic_msg(s, "Warning", parser_text, ap);
93 va_end(ap);
94 return 0;
97 void error(const char *s, ...)
99 va_list ap;
100 va_start(ap, s);
101 fprintf(stderr, "error: ");
102 vfprintf(stderr, s, ap);
103 va_end(ap);
104 exit(2);
107 void warning(const char *s, ...)
109 va_list ap;
110 va_start(ap, s);
111 fprintf(stderr, "warning: ");
112 vfprintf(stderr, s, ap);
113 va_end(ap);
116 void chat(const char *s, ...)
118 if(debuglevel & DEBUGLEVEL_CHAT)
120 va_list ap;
121 va_start(ap, s);
122 fprintf(stderr, "chat: ");
123 vfprintf(stderr, s, ap);
124 va_end(ap);
128 char *dup_basename(const char *name, const char *ext)
130 int namelen;
131 int extlen = strlen(ext);
132 char *base;
133 char *slash;
135 if(!name)
136 name = "widl.tab";
138 slash = strrchr(name, '/');
139 if (slash)
140 name = slash + 1;
142 namelen = strlen(name);
144 /* +4 for later extension and +1 for '\0' */
145 base = xmalloc(namelen +4 +1);
146 strcpy(base, name);
147 if(!strcasecmp(name + namelen-extlen, ext))
149 base[namelen - extlen] = '\0';
151 return base;
154 size_t widl_getline(char **linep, size_t *lenp, FILE *fp)
156 char *line = *linep;
157 size_t len = *lenp;
158 size_t n = 0;
160 if (!line)
162 len = 64;
163 line = xmalloc(len);
166 while (fgets(&line[n], len - n, fp))
168 n += strlen(&line[n]);
169 if (line[n - 1] == '\n')
170 break;
171 else if (n == len - 1)
173 len *= 2;
174 line = xrealloc(line, len);
178 *linep = line;
179 *lenp = len;
180 return n;
183 void *xmalloc(size_t size)
185 void *res;
187 assert(size > 0);
188 res = malloc(size);
189 if(res == NULL)
191 error("Virtual memory exhausted.\n");
193 memset(res, 0x55, size);
194 return res;
198 void *xrealloc(void *p, size_t size)
200 void *res;
202 assert(size > 0);
203 res = realloc(p, size);
204 if(res == NULL)
206 error("Virtual memory exhausted.\n");
208 return res;
211 char *xstrdup(const char *str)
213 char *s;
215 assert(str != NULL);
216 s = xmalloc(strlen(str)+1);
217 return strcpy(s, str);