widl: Replace erroneously removed current_func assignment.
[wine/winequartzdrv.git] / tools / widl / typelib.c
blob3bdbcf3b6008cac2b368e969a152025841f22e64
1 /*
2 * IDL Compiler
4 * Copyright 2004 Ove Kaaven
5 * Copyright 2006 Jacek Caban for CodeWeavers
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"
24 #include "wine/wpp.h"
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <stdarg.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <assert.h>
32 #include <ctype.h>
33 #include <signal.h>
35 #define NONAMELESSUNION
36 #define NONAMELESSSTRUCT
38 #include "windef.h"
39 #include "winbase.h"
41 #include "widl.h"
42 #include "utils.h"
43 #include "parser.h"
44 #include "header.h"
45 #include "typelib.h"
46 #include "widltypes.h"
47 #include "typelib_struct.h"
49 int in_typelib = 0;
51 static typelib_t *typelib;
53 type_t *duptype(type_t *t, int dupname)
55 type_t *d = xmalloc(sizeof *d);
57 *d = *t;
58 if (dupname && t->name)
59 d->name = xstrdup(t->name);
61 d->orig = t;
62 return d;
65 type_t *alias(type_t *t, const char *name)
67 type_t *a = duptype(t, 0);
69 a->name = xstrdup(name);
70 a->kind = TKIND_ALIAS;
71 a->attrs = NULL;
73 return a;
76 int is_ptr(const type_t *t)
78 unsigned char c = t->type;
79 return c == RPC_FC_RP
80 || c == RPC_FC_UP
81 || c == RPC_FC_FP
82 || c == RPC_FC_OP;
85 /* List of oleauto types that should be recognized by name.
86 * (most of) these seem to be intrinsic types in mktyplib. */
88 static struct oatype {
89 const char *kw;
90 unsigned short vt;
91 } oatypes[] = {
92 {"BSTR", VT_BSTR},
93 {"CURRENCY", VT_CY},
94 {"DATE", VT_DATE},
95 {"DECIMAL", VT_DECIMAL},
96 {"HRESULT", VT_HRESULT},
97 {"LPSTR", VT_LPSTR},
98 {"LPWSTR", VT_LPWSTR},
99 {"SCODE", VT_ERROR},
100 {"VARIANT", VT_VARIANT},
101 {"VARIANT_BOOL", VT_BOOL}
103 #define NTYPES (sizeof(oatypes)/sizeof(oatypes[0]))
104 #define KWP(p) ((const struct oatype *)(p))
106 static int kw_cmp_func(const void *s1, const void *s2)
108 return strcmp(KWP(s1)->kw, KWP(s2)->kw);
111 static unsigned short builtin_vt(const char *kw)
113 struct oatype key, *kwp;
114 key.kw = kw;
115 #ifdef KW_BSEARCH
116 kwp = bsearch(&key, oatypes, NTYPES, sizeof(oatypes[0]), kw_cmp_func);
117 #else
119 unsigned int i;
120 for (kwp=NULL, i=0; i < NTYPES; i++)
121 if (!kw_cmp_func(&key, &oatypes[i])) {
122 kwp = &oatypes[i];
123 break;
126 #endif
127 if (kwp) {
128 return kwp->vt;
130 return 0;
133 static int match(const char*n, const char*m)
135 if (!n) return 0;
136 return !strcmp(n, m);
139 unsigned short get_type_vt(type_t *t)
141 unsigned short vt;
143 chat("get_type_vt: %p type->name %s\n", t, t->name);
144 if (t->name) {
145 vt = builtin_vt(t->name);
146 if (vt) return vt;
149 if (t->kind == TKIND_ALIAS && t->attrs)
150 return VT_USERDEFINED;
152 switch (t->type) {
153 case RPC_FC_BYTE:
154 case RPC_FC_USMALL:
155 return VT_UI1;
156 case RPC_FC_CHAR:
157 case RPC_FC_SMALL:
158 return VT_I1;
159 case RPC_FC_WCHAR:
160 return VT_I2; /* mktyplib seems to parse wchar_t as short */
161 case RPC_FC_SHORT:
162 return VT_I2;
163 case RPC_FC_USHORT:
164 return VT_UI2;
165 case RPC_FC_LONG:
166 if (match(t->name, "int")) return VT_INT;
167 return VT_I4;
168 case RPC_FC_ULONG:
169 if (match(t->name, "int")) return VT_UINT;
170 return VT_UI4;
171 case RPC_FC_HYPER:
172 if (t->sign < 0) return VT_UI8;
173 if (match(t->name, "MIDL_uhyper")) return VT_UI8;
174 return VT_I8;
175 case RPC_FC_FLOAT:
176 return VT_R4;
177 case RPC_FC_DOUBLE:
178 return VT_R8;
179 case RPC_FC_RP:
180 case RPC_FC_UP:
181 case RPC_FC_OP:
182 case RPC_FC_FP:
183 if(t->ref)
185 if (match(t->ref->name, "SAFEARRAY"))
186 return VT_SAFEARRAY;
187 return VT_PTR;
190 error("get_type_vt: unknown-deref-type: %d\n", t->ref->type);
191 break;
192 case RPC_FC_IP:
193 if(match(t->name, "IUnknown"))
194 return VT_UNKNOWN;
195 if(match(t->name, "IDispatch"))
196 return VT_DISPATCH;
197 return VT_USERDEFINED;
199 case RPC_FC_ENUM16:
200 case RPC_FC_STRUCT:
201 case RPC_FC_PSTRUCT:
202 case RPC_FC_CSTRUCT:
203 case RPC_FC_CPSTRUCT:
204 case RPC_FC_CVSTRUCT:
205 case RPC_FC_BOGUS_STRUCT:
206 return VT_USERDEFINED;
207 case 0:
208 return t->kind == TKIND_PRIMITIVE ? VT_VOID : VT_USERDEFINED;
209 default:
210 error("get_type_vt: unknown type: 0x%02x\n", t->type);
212 return 0;
215 void start_typelib(char *name, attr_list_t *attrs)
217 in_typelib++;
218 if (!do_typelib) return;
220 typelib = xmalloc(sizeof(*typelib));
221 typelib->name = xstrdup(name);
222 typelib->filename = xstrdup(typelib_name);
223 typelib->attrs = attrs;
224 list_init( &typelib->entries );
225 list_init( &typelib->importlibs );
228 void end_typelib(void)
230 in_typelib--;
231 if (!typelib) return;
233 create_msft_typelib(typelib);
234 return;
237 void add_typelib_entry(type_t *t)
239 typelib_entry_t *entry;
240 if (!typelib) return;
242 chat("add kind %i: %s\n", t->kind, t->name);
243 entry = xmalloc(sizeof(*entry));
244 entry->type = t;
245 list_add_tail( &typelib->entries, &entry->entry );
248 static void tlb_read(int fd, void *buf, int count)
250 if(read(fd, buf, count) < count)
251 error("error while reading importlib.\n");
254 static void tlb_lseek(int fd, off_t offset)
256 if(lseek(fd, offset, SEEK_SET) == -1)
257 error("lseek failed\n");
260 static void msft_read_guid(int fd, MSFT_SegDir *segdir, int offset, GUID *guid)
262 tlb_lseek(fd, segdir->pGuidTab.offset+offset);
263 tlb_read(fd, guid, sizeof(GUID));
266 static void read_msft_importlib(importlib_t *importlib, int fd)
268 MSFT_Header header;
269 MSFT_SegDir segdir;
270 int *typeinfo_offs;
271 int i;
273 importlib->allocated = 0;
275 tlb_lseek(fd, 0);
276 tlb_read(fd, &header, sizeof(header));
278 importlib->version = header.version;
280 typeinfo_offs = xmalloc(header.nrtypeinfos*sizeof(INT));
281 tlb_read(fd, typeinfo_offs, header.nrtypeinfos*sizeof(INT));
282 tlb_read(fd, &segdir, sizeof(segdir));
284 msft_read_guid(fd, &segdir, header.posguid, &importlib->guid);
286 importlib->ntypeinfos = header.nrtypeinfos;
287 importlib->importinfos = xmalloc(importlib->ntypeinfos*sizeof(importinfo_t));
289 for(i=0; i < importlib->ntypeinfos; i++) {
290 MSFT_TypeInfoBase base;
291 MSFT_NameIntro nameintro;
292 int len;
294 tlb_lseek(fd, sizeof(MSFT_Header) + header.nrtypeinfos*sizeof(INT) + sizeof(MSFT_SegDir)
295 + typeinfo_offs[i]);
296 tlb_read(fd, &base, sizeof(base));
298 importlib->importinfos[i].importlib = importlib;
299 importlib->importinfos[i].flags = (base.typekind&0xf)<<24;
300 importlib->importinfos[i].offset = -1;
301 importlib->importinfos[i].id = i;
303 if(base.posguid != -1) {
304 importlib->importinfos[i].flags |= MSFT_IMPINFO_OFFSET_IS_GUID;
305 msft_read_guid(fd, &segdir, base.posguid, &importlib->importinfos[i].guid);
307 else memset( &importlib->importinfos[i].guid, 0, sizeof(importlib->importinfos[i].guid));
309 tlb_lseek(fd, segdir.pNametab.offset + base.NameOffset);
310 tlb_read(fd, &nameintro, sizeof(nameintro));
312 len = nameintro.namelen & 0xff;
314 importlib->importinfos[i].name = xmalloc(len+1);
315 tlb_read(fd, importlib->importinfos[i].name, len);
316 importlib->importinfos[i].name[len] = 0;
319 free(typeinfo_offs);
322 static void read_importlib(importlib_t *importlib)
324 int fd;
325 INT magic;
326 char *file_name;
328 file_name = wpp_find_include(importlib->name, NULL);
329 if(file_name) {
330 fd = open(file_name, O_RDONLY);
331 free(file_name);
332 }else {
333 fd = open(importlib->name, O_RDONLY);
336 if(fd < 0)
337 error("Could not open importlib %s.\n", importlib->name);
339 tlb_read(fd, &magic, sizeof(magic));
341 switch(magic) {
342 case MSFT_MAGIC:
343 read_msft_importlib(importlib, fd);
344 break;
345 default:
346 error("Wrong or unsupported typelib magic %x\n", magic);
349 close(fd);
352 void add_importlib(const char *name)
354 importlib_t *importlib;
356 if(!typelib) return;
358 LIST_FOR_EACH_ENTRY( importlib, &typelib->importlibs, importlib_t, entry )
359 if(!strcmp(name, importlib->name))
360 return;
362 chat("add_importlib: %s\n", name);
364 importlib = xmalloc(sizeof(*importlib));
365 memset( importlib, 0, sizeof(*importlib) );
366 importlib->name = xstrdup(name);
368 read_importlib(importlib);
369 list_add_head( &typelib->importlibs, &importlib->entry );